该组件内部实现以uni-appbutton
组件为基础,进行二次封装,主要区别在于:
type
值有更多的主题颜色size
值有更多的尺寸可选注意
button
组件为基础,除了开头中所说的增加的功能,另外暴露出来的props属性和官方组件的属性完全一致, uni-appbutton
组件比较特殊,因为它有一些其他小程序平台的特定能力,请参考文档后面的参数列表,更详细说明请参uni-app方文档:form-type
的u-button
无法触发form
组件的submit
事件(H5和APP正常),详见微信小程序文档Bug & Tip部分(opens new window)App(vue) | App(nvue) | H5 | 小程序 |
---|---|---|---|
√ | √ | √ | √ |
文字内容通过text
传入
<u-button text="月落"></u-button>
copy
type
值可选的有default
(默认)、primary
、success
、info
、warning
、error
plain
值设置是否镂空hairline
值设置是否细边disabled
值设置是否禁用loading
值设置是否开启加载图标,loadingText
设置加载中文字icon
值设置是否显示图标shape
值设置按钮形状,circle为圆角color
值设置按钮渐变颜色size
值设置按钮的大小<template>
<view style="padding: 20px;">
<u-button type="primary" text="确定"></u-button>
<u-button type="primary" :plain="true" text="镂空"></u-button>
<u-button type="primary" :plain="true" :hairline="true" text="细边"></u-button>
<u-button type="primary" :disabled="disabled" text="禁用"></u-button>
<u-button type="primary" loading loadingText="加载中"></u-button>
<u-button type="primary" icon="map" text="图标按钮"></u-button>
<u-button type="primary" shape="circle" text="按钮形状"></u-button>
<u-button text="渐变色按钮" color="linear-gradient(to right, rgb(66, 83, 216), rgb(213, 51, 186))"></u-button>
<u-button type="primary" size="small" text="大小尺寸"></u-button>
</view>
</template>
<script>
export default {
data() {
return {
disabled: true
};
}
};
</script>
copy
button
组件,所以修改按钮的样式很容易,直接给组件定义类名
或者嵌入内联样式
即可。view
元素,控制这个view
与其他元素的距离或者宽度,即可达到同等效果。所以:我们提供了一个custom-style
参数,推荐用户可以用对象形式传递样式给组件内部,注意驼峰命名。
<template>
<view style="padding: 20px;">
<!-- 以下形式在微信小程序会无效,APP和H5有效 -->
<u-button class="custom-style" text="雪月夜"></u-button>
</view>
</template>
<script>
export default {
data() {
return {
disabled: true,
customStyle: {
marginTop: '20px', // 注意驼峰命名,并且值必须用引号包括,因为这是对象
color: 'red'
}
};
}
};
</script>
<style lang="scss" scoped>
.custom-style {
color: #ff0000;
width: 400rpx;
}
</style>