You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
103 lines
2.7 KiB
103 lines
2.7 KiB
4 years ago
|
<template>
|
||
|
<view class="u-demo">
|
||
|
<view class="u-demo-wrap">
|
||
|
<view class="u-demo-title">演示效果</view>
|
||
|
<view class="u-demo-area">
|
||
|
<u-line-progress v-if="mode == 'line'" :percent="percent" :active-color="activeColor"
|
||
|
:striped="striped" :stripedActive="stripedActive"></u-line-progress>
|
||
|
<u-circle-progress v-else :percent="percent" :active-color="activeColor"
|
||
|
bg-color="rgb(250, 250, 250)">
|
||
|
<view class="u-progress-content">
|
||
|
<view class="u-progress-dot"></view>
|
||
|
<text class='u-progress-info'>查找中</text>
|
||
|
</view>
|
||
|
</u-circle-progress>
|
||
|
</view>
|
||
|
</view>
|
||
|
<view class="u-config-wrap">
|
||
|
<view class="u-config-title u-border-bottom">
|
||
|
参数配置
|
||
|
</view>
|
||
|
<view class="u-config-item">
|
||
|
<view class="u-item-title">模式选择</view>
|
||
|
<u-subsection :current="current" :list="['线型', '圆型']" @change="modeChange"></u-subsection>
|
||
|
</view>
|
||
|
<view class="u-config-item">
|
||
|
<view class="u-item-title">增减</view>
|
||
|
<u-subsection :list="['减少30%', '增加30%']" @change="calcChange"></u-subsection>
|
||
|
</view>
|
||
|
<view class="u-config-item">
|
||
|
<view class="u-item-title">自定义样式(线型时有效)</view>
|
||
|
<u-subsection current="1" :list="['是', '否']" @change="styleChange"></u-subsection>
|
||
|
</view>
|
||
|
<view class="u-config-item">
|
||
|
<view class="u-item-title">动态条纹(线型时有效)</view>
|
||
|
<u-subsection current="1" :list="['是', '否']" @change="stripedChange"></u-subsection>
|
||
|
</view>
|
||
|
</view>
|
||
|
</view>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
data() {
|
||
|
return {
|
||
|
percent: 50,
|
||
|
mode: 'line',
|
||
|
activeColor: '#19be6b',
|
||
|
striped: false,
|
||
|
stripedActive: false,
|
||
|
current: 0,
|
||
|
}
|
||
|
},
|
||
|
methods: {
|
||
|
modeChange(index) {
|
||
|
this.current = index;
|
||
|
this.mode = index == 0 ? 'line' : 'circle';
|
||
|
},
|
||
|
calcChange(index) {
|
||
|
this.percent = index == 0 ? (this.percent - 30) : (this.percent + 30);
|
||
|
if(this.percent > 100) this.percent = 100;
|
||
|
if(this.percent < 0) this.percent = 0;
|
||
|
},
|
||
|
styleChange(index) {
|
||
|
this.activeColor = index == 0 ? this.$u.color['error'] : '#19be6b';
|
||
|
if(index == 0) {
|
||
|
this.mode = 'line';
|
||
|
this.current = 0;
|
||
|
}
|
||
|
},
|
||
|
stripedChange(index) {
|
||
|
this.striped = index == 0 ? true : false;
|
||
|
this.stripedActive = this.striped;
|
||
|
if(index == 0) {
|
||
|
this.mode = 'line';
|
||
|
this.current = 0;
|
||
|
}
|
||
|
},
|
||
|
|
||
|
}
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style lang="scss" scoped>
|
||
|
.u-progress-content {
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
justify-content: center;
|
||
|
}
|
||
|
|
||
|
.u-progress-dot {
|
||
|
width: 16rpx;
|
||
|
height: 16rpx;
|
||
|
border-radius: 50%;
|
||
|
background-color: #fb9126;
|
||
|
}
|
||
|
|
||
|
.u-progress-info {
|
||
|
font-size: 28rpx;
|
||
|
padding-left: 16rpx;
|
||
|
letter-spacing: 2rpx
|
||
|
}
|
||
|
</style>
|