如题,首先,正确为微信小程序标签添加行内样式,其做法是:(以view为例)
view style="width: 400rpx; height: 400rpx; background-color: green;">goods_listview>
也就是说,直接像写css一样直接写在双引号内就行了,无需考虑ba服务器托管网ckground-color要不要写成驼峰形式、400rpx要不要加上引号等等,因为vue里添加样式 是 :style=”{…}”绑定,以为小程序也是这样,摸索了好一会儿。
同理,对于uni-app的扩展组件uni-ui,传入的customStyle也是直接像微信小程序的style里一样,直接传入css写法的字符串即可,以 uni-tag组件的customStyle为例:
uni-t服务器托管网ag :customStyle="tagStyle">uni-tag>
script>
export default {
data () {
return {
tagStyle: "background-color: blue;"
}
}
}
script>
因为之前vue传入样式都是传入一个对象,这里摸索了好久,记录一下。
服务器托管,北京服务器托管,服务器租用 http://www.fwqtg.net
官方文档链接:uni.showToast(OBJECT) | uni-app官网 1.uni.showToast({}) 显示消息提示框。 常用属性: title:页面提示的内容 image:改变提示框默认的icon图标 duration:提示框在页面显示多少…