uniapp的progress加载进度条使用
程序开发
2023-09-03 22:26:21
percent:绑定百分比,从0%到100%
show-info:在进度条右侧显示百分比
stroke-width:进度条线的宽度,单位px
active:进度条从左往右的动画
active-mode:forwards:动画从上次结束点接着播(用于实时加载)
backgroundColor:未选择的进度条的颜色
data() {return {percent:0 //百分比0~100}},
onLoad() {this.change()},methods: {change(){// 开启定时器,定时器同样可以用在请求当中let clearInt = setInterval(()=>{this.percent ++;if(this.percent === 100){clearInterval(clearInt)uni.showToast({title: "加载成功",con: "success"});}},30)}}
标签:
上一篇:
antd_Tree_树的节点名称相同引发的未点击但被选中
下一篇:
相关文章
-
无相关信息