|
|
@ -1,6 +1,6 @@ |
|
|
|
<template> |
|
|
|
<view class="u-font-14"> |
|
|
|
<view class="flex items-center justify-center text-blue-400 rounded-full h-7 w-7" v-if="status === 0" @tap="changeStatus($event, 0)"> |
|
|
|
<view class="iconColumn flex items-center justify-center text-blue-400 rounded-full" v-if="status === 0" @tap="changeStatus($event, 0)"> |
|
|
|
<u-circle-progress :percent="100" active-color="#2979ff" bgColor="rgba(255,255,255,0)" borderWidth="4" width="66"> |
|
|
|
<view class="u-progress-content"> |
|
|
|
<view class="u-progress-dot"></view> |
|
|
@ -10,7 +10,7 @@ |
|
|
|
</view> |
|
|
|
</u-circle-progress> |
|
|
|
</view> |
|
|
|
<view class="flex items-center justify-center text-black rounded-full h-7 w-7" v-if="status === 1" @tap="changeStatus($event, 1)"> |
|
|
|
<view class="iconColumn flex items-center justify-center text-black rounded-full" v-if="status === 1" @tap="changeStatus($event, 1)"> |
|
|
|
<u-circle-progress :percent="80" active-color="#2979ff" bgColor="rgba(255,255,255,0)" borderWidth="6" width="66"> |
|
|
|
<view class="u-progress-content"> |
|
|
|
<view class="u-progress-dot"></view> |
|
|
@ -18,7 +18,7 @@ |
|
|
|
</view> |
|
|
|
</u-circle-progress> |
|
|
|
</view> |
|
|
|
<view class="flex items-center justify-center text-gray-400 rounded-full h-7 w-7" v-if="status === 2" @tap="changeStatus($event, 2)"> |
|
|
|
<view class="iconColumn flex items-center justify-center text-gray-400 rounded-full" v-if="status === 2" @tap="changeStatus($event, 2)"> |
|
|
|
<u-circle-progress :percent="40" active-color="#2979ff" bgColor="rgba(255,255,255,0)" borderWidth="6" width="66"> |
|
|
|
<view class="u-progress-content"> |
|
|
|
<view class="u-progress-dot"></view> |
|
|
@ -29,7 +29,7 @@ |
|
|
|
</u-circle-progress> |
|
|
|
</view> |
|
|
|
<view |
|
|
|
class="flex items-center justify-center font-black text-red-800 rounded-full h-7 w-7" |
|
|
|
class="iconColumn flex items-center justify-center font-black text-red-800 rounded-full" |
|
|
|
v-if="status === 3" |
|
|
|
@tap="changeStatus($event, 3)" |
|
|
|
> |
|
|
@ -96,3 +96,13 @@ export default { |
|
|
|
}, |
|
|
|
}; |
|
|
|
</script> |
|
|
|
<style scoped lang="scss"> |
|
|
|
.iconColumn { |
|
|
|
height: 33px; |
|
|
|
width: 33px; |
|
|
|
} |
|
|
|
.one { |
|
|
|
height: 33px; |
|
|
|
width: 33px; |
|
|
|
} |
|
|
|
</style> |
|
|
|