|
|
@ -3,12 +3,12 @@ |
|
|
|
* @email: binbin0314@126.com |
|
|
|
* @Date: 2021-07-19 15:47:38 |
|
|
|
* @LastEditors: aBin |
|
|
|
* @LastEditTime: 2021-07-19 17:24:21 |
|
|
|
* @LastEditTime: 2021-07-19 18:01:59 |
|
|
|
--> |
|
|
|
<template> |
|
|
|
<view> |
|
|
|
<view class="rounded-full h-7 w-7 flex items-center justify-center text-blue-400" v-if="status === 0"> |
|
|
|
<u-circle-progress :percent="100" active-color="#2979ff" borderWidth="4" width="66"> |
|
|
|
<u-circle-progress :percent="100" active-color="#2979ff" bgcolor="rgba(255,255,255,0)" borderWidth="4" width="66"> |
|
|
|
<view @tap="changeStatus(0)" class="u-progress-content"> |
|
|
|
<view class="u-progress-dot"></view> |
|
|
|
<text class="u-progress-info"> |
|
|
@ -18,7 +18,7 @@ |
|
|
|
</u-circle-progress> |
|
|
|
</view> |
|
|
|
<view class="rounded-full h-7 w-7 flex items-center justify-center text-black" v-if="status === 1"> |
|
|
|
<u-circle-progress :percent="80" active-color="#2979ff" borderWidth="6" width="66"> |
|
|
|
<u-circle-progress :percent="80" active-color="#2979ff" bgcolor="rgba(255,255,255,0)" borderWidth="6" width="66"> |
|
|
|
<view @tap="changeStatus(1)" class="u-progress-content"> |
|
|
|
<view class="u-progress-dot"></view> |
|
|
|
<view class="u-progress-info">{{ time }}</view> |
|
|
@ -26,7 +26,7 @@ |
|
|
|
</u-circle-progress> |
|
|
|
</view> |
|
|
|
<view class="rounded-full h-7 w-7 flex items-center justify-center text-gray-400" v-if="status === 2"> |
|
|
|
<u-circle-progress :percent="40" active-color="#2979ff" borderWidth="6" width="66"> |
|
|
|
<u-circle-progress :percent="40" active-color="#2979ff" bgcolor="rgba(255,255,255,0)" borderWidth="6" width="66"> |
|
|
|
<view @tap="changeStatus(2)" class="u-progress-content"> |
|
|
|
<view class="u-progress-dot"></view> |
|
|
|
<text class="u-progress-info"> |
|
|
@ -36,7 +36,7 @@ |
|
|
|
</u-circle-progress> |
|
|
|
</view> |
|
|
|
<view class="rounded-full h-7 w-7 flex items-center justify-center text-red-800 font-black" v-if="status === 3"> |
|
|
|
<u-circle-progress :percent="80" active-color="#2979ff" borderWidth="6" width="66"> |
|
|
|
<u-circle-progress :percent="80" active-color="#2979ff" bgcolor="rgba(255,255,255,0)" borderWidth="6" width="66"> |
|
|
|
<view @tap="changeStatus(3)" class="u-progress-content"> |
|
|
|
<view class="u-progress-dot"></view> |
|
|
|
<text class="u-progress-info"> |
|
|
|