Browse Source

工单完成添加问卷调查二维码

maotao 9 months ago
parent
commit
d9f784f5e3

+ 229 - 0
components/questionCode/questionCode.vue

@@ -0,0 +1,229 @@
1
+<template>
2
+  <view class="showModel" v-if="disjunctor">
3
+    <view class="showModel__wrap">
4
+      <view class="showModel__header">
5
+        <!-- 我的二维码 -->
6
+				<view>
7
+					{{qrCode.title}}
8
+				</view>
9
+      </view>
10
+      <view class="showModel__article">
11
+        <view class="showModel__content">
12
+          <image :src="qrCode.outQrcode" mode="widthFix" style="width: 100%;"></image>
13
+        </view>
14
+      </view>
15
+			<view class="df-fl">
16
+				有效期:
17
+				<view v-if="!timeState" class="df-fl">
18
+					<uni-countdown @timeup="timeupChange" :second="refreshQRCodeTime" :showDay="false" :showHour="false" :showMinute="false"/>
19
+					秒
20
+				</view>
21
+				<view v-else>已过期</view>
22
+			</view>
23
+      <view class="showModel__footer">
24
+        <view class="showModel__know" @click="know" hover-class="seimin-btn-hover">关闭</view>
25
+      </view>
26
+    </view>
27
+  </view>
28
+</template>
29
+
30
+<script>
31
+  import {
32
+    get,
33
+    post,
34
+    webHandle
35
+  } from "../../http/http.js";
36
+  export default {
37
+    data() {
38
+      return {
39
+        qrCode: '',
40
+				disjunctor:false,
41
+				refreshQRCodeTime:null,
42
+				timeState:false
43
+      };
44
+    },
45
+    props: {
46
+			orderId:null
47
+    },
48
+    methods: {
49
+      // 关闭
50
+      know() {
51
+				this.disjunctor = false
52
+        this.$emit("know");
53
+      },
54
+			// 倒计时结束
55
+			timeupChange(){
56
+				this.timeState = true
57
+			},
58
+      // 获取我的二维码
59
+      getQrCode(){
60
+        uni.showLoading({
61
+          title: "加载中",
62
+          mask: true,
63
+        });
64
+        post("/questionnaire/qrCode/0", {
65
+					gdId: this.orderId
66
+				}).then((result) => {
67
+            uni.hideLoading();
68
+            if (result.status == 200) {
69
+              this.qrCode = result.data;
70
+							this.refreshQRCodeTime = result.refreshQRCodeTime
71
+							this.disjunctor = true
72
+            } else {
73
+              uni.showToast({
74
+                icon: "none",
75
+                title: result.msg || "接口获取数据失败!",
76
+              });
77
+            }
78
+          })
79
+      }
80
+    },
81
+    mounted() {
82
+      this.getQrCode();
83
+    }
84
+  };
85
+</script>
86
+
87
+<style lang="less" scoped>
88
+  .showModel {
89
+    position: fixed;
90
+    left: 0;
91
+    right: 0;
92
+    top: 0;
93
+    bottom: 0;
94
+    background-color: rgba(0, 0, 0, 0.2);
95
+    z-index: 999999;
96
+
97
+    .showModel__wrap {
98
+      width: 560rpx;
99
+      position: absolute;
100
+      left: 50%;
101
+      top: 50%;
102
+      transform: translate(-50%, -50%);
103
+      background-color: #fff;
104
+      border-radius: 12rpx;
105
+
106
+      .showModel__header {
107
+        font-size: 36rpx;
108
+        color: #000;
109
+        height: 84rpx;
110
+        display: flex;
111
+        justify-content: center;
112
+        align-items: center;
113
+      }
114
+			.df-fl{
115
+				display: flex;
116
+				justify-content: center;
117
+				margin-bottom: 20rpx;
118
+			}
119
+      .showModel__article {
120
+        color: #000;
121
+        margin: 0 auto 25rpx;
122
+        width: 488rpx;
123
+        background-color: rgb(249, 250, 251);
124
+        border: 2rpx solid rgb(229, 233, 237);
125
+        border-radius: 12rpx;
126
+        box-sizing: border-box;
127
+        display: flex;
128
+        flex-direction: column;
129
+        justify-content: center;
130
+        align-items: center;
131
+
132
+        &.p0 {
133
+          padding: 0;
134
+        }
135
+
136
+        &.p1 {
137
+          text-align: left;
138
+        }
139
+
140
+        .showModel__icon {
141
+          font-size: 138rpx;
142
+          margin-bottom: 32rpx;
143
+
144
+          &.showModel__icon--success {
145
+            color: rgb(52, 179, 73);
146
+          }
147
+
148
+          &.showModel__icon--warn {
149
+            color: rgb(245, 165, 35);
150
+          }
151
+
152
+          &.showModel__icon--error {
153
+            color: rgb(255, 58, 82);
154
+          }
155
+        }
156
+
157
+        .showModel__content {
158
+          font-size: 36rpx;
159
+          word-break: break-all;
160
+          width: 100%;
161
+        }
162
+
163
+        .showModel__info {
164
+          font-size: 32rpx;
165
+          color: rgb(102, 102, 102);
166
+        }
167
+
168
+        .specialCloseFlag {
169
+          width: 90%;
170
+          height: 100%;
171
+          padding: 16rpx;
172
+        }
173
+
174
+        .radio-wrap {
175
+          .radio-item {
176
+            margin-top: 16rpx;
177
+
178
+            /deep/ .uni-radio-input-checked {
179
+              background-color: #49b856 !important;
180
+              border-color: #49b856 !important;
181
+            }
182
+          }
183
+        }
184
+      }
185
+
186
+      .showModel__footer {
187
+        box-sizing: border-box;
188
+        height: 100rpx;
189
+        border-top: 2rpx solid rgb(229, 233, 237);
190
+        display: flex;
191
+        align-items: center;
192
+
193
+        view {
194
+          height: 100%;
195
+          display: flex;
196
+          align-items: center;
197
+          justify-content: center;
198
+          font-size: 36rpx;
199
+          color: rgb(102, 102, 102);
200
+          position: relative;
201
+
202
+          &:nth-of-type(2)::before {
203
+            content: "";
204
+            position: absolute;
205
+            left: 0;
206
+            bottom: 0;
207
+            width: 2rpx;
208
+            height: 87rpx;
209
+            background-color: rgb(229, 233, 237);
210
+          }
211
+        }
212
+
213
+        .showModel__ok {
214
+          flex: 1;
215
+          color: rgb(73, 184, 86);
216
+        }
217
+
218
+        .showModel__cancel {
219
+          flex: 1;
220
+        }
221
+
222
+        .showModel__know {
223
+          flex: 1;
224
+          color: rgb(73, 184, 86);
225
+        }
226
+      }
227
+    }
228
+  }
229
+</style>

+ 1 - 0
manifest.json

@@ -83,6 +83,7 @@
83 83
             "proxy" : {
84 84
                 "/service" : {
85 85
                     "target" : "http://192.168.3.108", //请求的目标域名
86
+										// "target" : "http://192.168.4.163", //宋程玉本地
86 87
                     "changeOrigin" : true, //是否跨域
87 88
                     "secure" : false
88 89
                 }

+ 1 - 1
pages/receiptpage/receiptpage.vue

@@ -580,7 +580,7 @@
580 580
 		components: {
581 581
 		  uniDrawer,
582 582
 		  MxDatePicker,
583
-		  ldSelect,
583
+		  ldSelect
584 584
 		},
585 585
     filters: {
586 586
       // 自定义管道 yyTime

+ 45 - 0
pages/scanning_code/scanning_code.vue

@@ -363,10 +363,13 @@
363 363
     <changeSpeNum v-if="changeSpeModels.disjunctor" :operate="{ok:'确认数量',check:'详细核对',cancel:'取消'}" :title="changeSpeModels.title" :content="changeSpeModels.content"
364 364
       :disjunctor="changeSpeModels.disjunctor" @ok="changeSpeOk" @check="changeSpeCheck" @cancel="changeSpeCancel" :num="speNumChange" :modifyReason="modifyReason" :isFirstShowReason="false">
365 365
     </changeSpeNum>
366
+		<!-- 调查问卷二维码 -->
367
+		 <questionCode v-if="isQuestionModel" :orderId="infoDATA.id" @know="isQuestionModel = false"></questionCode>
366 368
   </view>
367 369
 </template>
368 370
 <script>
369 371
   import showModel from "../../components/showModel/showModel.vue";
372
+	import questionCode from "../../components/questionCode/questionCode.vue";
370 373
   import {
371 374
     get,
372 375
     post,
@@ -377,8 +380,13 @@
377 380
     photographTool
378 381
   } from "../../tools/photograph.js";
379 382
   export default {
383
+		components:{
384
+			questionCode
385
+		},
380 386
     data() {
381 387
       return {
388
+				// 调研二维码
389
+				isQuestionModel:false,
382 390
         speNumChange: 0,
383 391
         modifyReason:'',
384 392
         changeSpeObj: {},
@@ -1171,6 +1179,9 @@
1171 1179
           uni.hideLoading();
1172 1180
           if (res.status == 200) {
1173 1181
             this.infoDATA = res.data;
1182
+						if(this.infoDATA.gdState.value=='7'){//7已完成
1183
+							this.getQuestionnaireSet()
1184
+						}
1174 1185
             if(this.infoDATA.taskType.isDigitalHandover==1){
1175 1186
               this.checkNumber(this.infoDATA);//自动弹出数量核对
1176 1187
             }
@@ -1194,6 +1205,9 @@
1194 1205
           uni.hideLoading();
1195 1206
           if (res.state == 200) {
1196 1207
             this.infoDATA = res.data;
1208
+						if(this.infoDATA.gdState.value=='7'){//7已完成
1209
+							this.getQuestionnaireSet()
1210
+						}
1197 1211
             if(this.infoDATA.taskType.isDigitalHandover==1){
1198 1212
               this.checkNumber(this.infoDATA);//自动弹出数量核对
1199 1213
             }
@@ -1219,6 +1233,37 @@
1219 1233
           }
1220 1234
         });
1221 1235
       },
1236
+			// 获取问卷配置
1237
+			getQuestionnaireSet(){
1238
+				uni.showLoading({
1239
+				  title: "加载中",
1240
+				  mask: true,
1241
+				});
1242
+				const userData = uni.getStorageSync("userData");
1243
+				post("/simple/data/fetchDataList/questionnaireConfig",{
1244
+					questionnaireConfig:{
1245
+						hosId:userData.user.scope.hospitalId.id
1246
+					},
1247
+					idx:0,
1248
+					sum:10
1249
+				}).then((res) => {
1250
+				  uni.hideLoading();
1251
+				  if (res.status == 200) {
1252
+				    let data = res.list[0];
1253
+						if(data.taskTypeDTOS.length>0){
1254
+							let isQuestion = data.taskTypeDTOS.find(i=> i.id == this.infoDATA.taskType.id)
1255
+							if(isQuestion){
1256
+								this.isQuestionModel = true
1257
+							}
1258
+						}
1259
+				  } else {
1260
+				    uni.showToast({
1261
+				      icon: "none",
1262
+				      title: res.msg || "接口获取数据失败!",
1263
+				    });
1264
+				  }
1265
+				});
1266
+			}
1222 1267
     },
1223 1268
     onShow() {
1224 1269
       this.SMFlag = true;

+ 26 - 0
uni_modules/uni-countdown/changelog.md

@@ -0,0 +1,26 @@
1
+## 1.2.3(2024-02-20)
2
+- 新增 支持控制小时,分钟的显隐:showHour showMinute
3
+## 1.2.2(2022-01-19)
4
+- 修复 在微信小程序中样式不生效的bug
5
+## 1.2.1(2022-01-18)
6
+- 新增 update 方法 ,在动态更新时间后,刷新组件
7
+## 1.2.0(2021-11-19)
8
+- 优化 组件UI,并提供设计资源,详见:[https://uniapp.dcloud.io/component/uniui/resource](https://uniapp.dcloud.io/component/uniui/resource)
9
+- 文档迁移,详见:[https://uniapp.dcloud.io/component/uniui/uni-countdown](https://uniapp.dcloud.io/component/uniui/uni-countdown)
10
+## 1.1.3(2021-10-18)
11
+- 重构
12
+- 新增 font-size 支持自定义字体大小
13
+## 1.1.2(2021-08-24)
14
+- 新增 支持国际化
15
+## 1.1.1(2021-07-30)
16
+- 优化 vue3下小程序事件警告的问题
17
+## 1.1.0(2021-07-30)
18
+- 组件兼容 vue3,如何创建vue3项目,详见 [uni-app 项目支持 vue3 介绍](https://ask.dcloud.net.cn/article/37834)
19
+## 1.0.5(2021-06-18)
20
+- 修复 uni-countdown 重复赋值跳两秒的 bug
21
+## 1.0.4(2021-05-12)
22
+- 新增 组件示例地址
23
+## 1.0.3(2021-05-08)
24
+- 修复 uni-countdown 不能控制倒计时的 bug
25
+## 1.0.2(2021-02-04)
26
+- 调整为uni_modules目录规范

+ 6 - 0
uni_modules/uni-countdown/components/uni-countdown/i18n/en.json

@@ -0,0 +1,6 @@
1
+{
2
+	"uni-countdown.day": "day",
3
+	"uni-countdown.h": "h",
4
+	"uni-countdown.m": "m",
5
+	"uni-countdown.s": "s"
6
+}

+ 8 - 0
uni_modules/uni-countdown/components/uni-countdown/i18n/index.js

@@ -0,0 +1,8 @@
1
+import en from './en.json'
2
+import zhHans from './zh-Hans.json'
3
+import zhHant from './zh-Hant.json'
4
+export default {
5
+	en,
6
+	'zh-Hans': zhHans,
7
+	'zh-Hant': zhHant
8
+}

+ 6 - 0
uni_modules/uni-countdown/components/uni-countdown/i18n/zh-Hans.json

@@ -0,0 +1,6 @@
1
+{
2
+	"uni-countdown.day": "天",
3
+	"uni-countdown.h": "时",
4
+	"uni-countdown.m": "分",
5
+	"uni-countdown.s": "秒"
6
+}

+ 6 - 0
uni_modules/uni-countdown/components/uni-countdown/i18n/zh-Hant.json

@@ -0,0 +1,6 @@
1
+{
2
+	"uni-countdown.day": "天",
3
+	"uni-countdown.h": "時",
4
+	"uni-countdown.m": "分",
5
+	"uni-countdown.s": "秒"
6
+}

+ 281 - 0
uni_modules/uni-countdown/components/uni-countdown/uni-countdown.vue

@@ -0,0 +1,281 @@
1
+<template>
2
+	<view class="uni-countdown">
3
+		<text v-if="showDay" :style="[timeStyle]" class="uni-countdown__number">{{ d }}</text>
4
+		<text v-if="showDay" :style="[splitorStyle]" class="uni-countdown__splitor">{{dayText}}</text>
5
+		<text v-if="showHour" :style="[timeStyle]" class="uni-countdown__number">{{ h }}</text>
6
+		<text v-if="showHour" :style="[splitorStyle]" class="uni-countdown__splitor">{{ showColon ? ':' : hourText }}</text>
7
+		<text v-if="showMinute" :style="[timeStyle]" class="uni-countdown__number">{{ i }}</text>
8
+		<text v-if="showMinute" :style="[splitorStyle]" class="uni-countdown__splitor">{{ showColon ? ':' : minuteText }}</text>
9
+		<text :style="[timeStyle]" class="uni-countdown__number">{{ s }}</text>
10
+		<text v-if="!showColon" :style="[splitorStyle]" class="uni-countdown__splitor">{{secondText}}</text>
11
+	</view>
12
+</template>
13
+<script>
14
+	import {
15
+		initVueI18n
16
+	} from '@dcloudio/uni-i18n'
17
+	import messages from './i18n/index.js'
18
+	const {
19
+		t
20
+	} = initVueI18n(messages)
21
+	/**
22
+	 * Countdown 倒计时
23
+	 * @description 倒计时组件
24
+	 * @tutorial https://ext.dcloud.net.cn/plugin?id=25
25
+	 * @property {String} backgroundColor 背景色
26
+	 * @property {String} color 文字颜色
27
+	 * @property {Number} day 天数
28
+	 * @property {Number} hour 小时
29
+	 * @property {Number} minute 分钟
30
+	 * @property {Number} second 秒
31
+	 * @property {Number} timestamp 时间戳
32
+	 * @property {Boolean} showDay = [true|false] 是否显示天数
33
+	 * @property {Boolean} showHour = [true|false] 是否显示小时
34
+	 * @property {Boolean} showMinute = [true|false] 是否显示分钟
35
+	 * @property {Boolean} show-colon = [true|false] 是否以冒号为分隔符
36
+	 * @property {String} splitorColor 分割符号颜色
37
+	 * @event {Function} timeup 倒计时时间到触发事件
38
+	 * @example <uni-countdown :day="1" :hour="1" :minute="12" :second="40"></uni-countdown>
39
+	 */
40
+	export default {
41
+		name: 'UniCountdown',
42
+		emits: ['timeup'],
43
+		props: {
44
+			showDay: {
45
+				type: Boolean,
46
+				default: true
47
+			},
48
+			showHour: {
49
+				type: Boolean,
50
+				default: true
51
+			},
52
+			showMinute: {
53
+				type: Boolean,
54
+				default: true
55
+			},
56
+			showColon: {
57
+				type: Boolean,
58
+				default: true
59
+			},
60
+			start: {
61
+				type: Boolean,
62
+				default: true
63
+			},
64
+			backgroundColor: {
65
+				type: String,
66
+				default: ''
67
+			},
68
+			color: {
69
+				type: String,
70
+				default: '#333'
71
+			},
72
+			fontSize: {
73
+				type: Number,
74
+				default: 14
75
+			},
76
+			splitorColor: {
77
+				type: String,
78
+				default: '#333'
79
+			},
80
+			day: {
81
+				type: Number,
82
+				default: 0
83
+			},
84
+			hour: {
85
+				type: Number,
86
+				default: 0
87
+			},
88
+			minute: {
89
+				type: Number,
90
+				default: 0
91
+			},
92
+			second: {
93
+				type: Number,
94
+				default: 0
95
+			},
96
+			timestamp: {
97
+				type: Number,
98
+				default: 0
99
+			}
100
+		},
101
+		data() {
102
+			return {
103
+				timer: null,
104
+				syncFlag: false,
105
+				d: '00',
106
+				h: '00',
107
+				i: '00',
108
+				s: '00',
109
+				leftTime: 0,
110
+				seconds: 0
111
+			}
112
+		},
113
+		computed: {
114
+			dayText() {
115
+				return t("uni-countdown.day")
116
+			},
117
+			hourText(val) {
118
+				return t("uni-countdown.h")
119
+			},
120
+			minuteText(val) {
121
+				return t("uni-countdown.m")
122
+			},
123
+			secondText(val) {
124
+				return t("uni-countdown.s")
125
+			},
126
+			timeStyle() {
127
+				const {
128
+					color,
129
+					backgroundColor,
130
+					fontSize
131
+				} = this
132
+				return {
133
+					color,
134
+					backgroundColor,
135
+					fontSize: `${fontSize}px`,
136
+					width: `${fontSize * 22 / 14}px`, // 按字体大小为 14px 时的比例缩放
137
+ 					lineHeight: `${fontSize * 20 / 14}px`,
138
+					borderRadius: `${fontSize * 3 / 14}px`,
139
+				}
140
+			},
141
+			splitorStyle() {
142
+				const { splitorColor, fontSize, backgroundColor } = this
143
+				return {
144
+					color: splitorColor,
145
+					fontSize: `${fontSize * 12 / 14}px`,
146
+					margin: backgroundColor ? `${fontSize * 4 / 14}px` : ''
147
+				}
148
+			}
149
+		},
150
+		watch: {
151
+			day(val) {
152
+				this.changeFlag()
153
+			},
154
+			hour(val) {
155
+				this.changeFlag()
156
+			},
157
+			minute(val) {
158
+				this.changeFlag()
159
+			},
160
+			second(val) {
161
+				this.changeFlag()
162
+			},
163
+			start: {
164
+				immediate: true,
165
+				handler(newVal, oldVal) {
166
+					if (newVal) {
167
+						this.startData();
168
+					} else {
169
+						if (!oldVal) return
170
+						clearInterval(this.timer)
171
+					}
172
+				}
173
+
174
+			}
175
+		},
176
+		created: function(e) {
177
+			this.seconds = this.toSeconds(this.timestamp, this.day, this.hour, this.minute, this.second)
178
+			this.countDown()
179
+		},
180
+		// #ifndef VUE3
181
+		destroyed() {
182
+			clearInterval(this.timer)
183
+		},
184
+		// #endif
185
+		// #ifdef VUE3
186
+		unmounted() {
187
+			clearInterval(this.timer)
188
+		},
189
+		// #endif
190
+		methods: {
191
+			toSeconds(timestamp, day, hours, minutes, seconds) {
192
+				if (timestamp) {
193
+					return timestamp - parseInt(new Date().getTime() / 1000, 10)
194
+				}
195
+				return day * 60 * 60 * 24 + hours * 60 * 60 + minutes * 60 + seconds
196
+			},
197
+			timeUp() {
198
+				clearInterval(this.timer)
199
+				this.$emit('timeup')
200
+			},
201
+			countDown() {
202
+				let seconds = this.seconds
203
+				let [day, hour, minute, second] = [0, 0, 0, 0]
204
+				if (seconds > 0) {
205
+					day = Math.floor(seconds / (60 * 60 * 24))
206
+					hour = Math.floor(seconds / (60 * 60)) - (day * 24)
207
+					minute = Math.floor(seconds / 60) - (day * 24 * 60) - (hour * 60)
208
+					second = Math.floor(seconds) - (day * 24 * 60 * 60) - (hour * 60 * 60) - (minute * 60)
209
+				} else {
210
+					this.timeUp()
211
+				}
212
+				if (day < 10) {
213
+					day = '0' + day
214
+				}
215
+				if (hour < 10) {
216
+					hour = '0' + hour
217
+				}
218
+				if (minute < 10) {
219
+					minute = '0' + minute
220
+				}
221
+				if (second < 10) {
222
+					second = '0' + second
223
+				}
224
+				this.d = day
225
+				this.h = hour
226
+				this.i = minute
227
+				this.s = second
228
+			},
229
+			startData() {
230
+				this.seconds = this.toSeconds(this.timestamp, this.day, this.hour, this.minute, this.second)
231
+				if (this.seconds <= 0) {
232
+					this.seconds = this.toSeconds(0, 0, 0, 0, 0)
233
+					this.countDown()
234
+					return
235
+				}
236
+				clearInterval(this.timer)
237
+				this.countDown()
238
+				this.timer = setInterval(() => {
239
+					this.seconds--
240
+					if (this.seconds < 0) {
241
+						this.timeUp()
242
+						return
243
+					}
244
+					this.countDown()
245
+				}, 1000)
246
+			},
247
+			update(){
248
+				this.startData();
249
+			},
250
+			changeFlag() {
251
+				if (!this.syncFlag) {
252
+					this.seconds = this.toSeconds(this.timestamp, this.day, this.hour, this.minute, this.second)
253
+					this.startData();
254
+					this.syncFlag = true;
255
+				}
256
+			}
257
+		}
258
+	}
259
+</script>
260
+<style lang="scss" scoped>
261
+	$font-size: 14px;
262
+
263
+	.uni-countdown {
264
+		display: flex;
265
+		flex-direction: row;
266
+		justify-content: flex-start;
267
+		align-items: center;
268
+
269
+		&__splitor {
270
+			margin: 0 2px;
271
+			font-size: $font-size;
272
+			color: #333;
273
+		}
274
+
275
+		&__number {
276
+			border-radius: 3px;
277
+			text-align: center;
278
+			font-size: $font-size;
279
+		}
280
+	}
281
+</style>

+ 83 - 0
uni_modules/uni-countdown/package.json

@@ -0,0 +1,83 @@
1
+{
2
+  "id": "uni-countdown",
3
+  "displayName": "uni-countdown 倒计时",
4
+  "version": "1.2.3",
5
+  "description": "CountDown 倒计时组件",
6
+  "keywords": [
7
+    "uni-ui",
8
+    "uniui",
9
+    "countdown",
10
+    "倒计时"
11
+],
12
+  "repository": "https://github.com/dcloudio/uni-ui",
13
+  "engines": {
14
+    "HBuilderX": ""
15
+  },
16
+  "directories": {
17
+    "example": "../../temps/example_temps"
18
+  },
19
+"dcloudext": {
20
+    "sale": {
21
+      "regular": {
22
+        "price": "0.00"
23
+      },
24
+      "sourcecode": {
25
+        "price": "0.00"
26
+      }
27
+    },
28
+    "contact": {
29
+      "qq": ""
30
+    },
31
+    "declaration": {
32
+      "ads": "无",
33
+      "data": "无",
34
+      "permissions": "无"
35
+    },
36
+    "npmurl": "https://www.npmjs.com/package/@dcloudio/uni-ui",
37
+    "type": "component-vue"
38
+  },
39
+  "uni_modules": {
40
+    "dependencies": ["uni-scss"],
41
+    "encrypt": [],
42
+    "platforms": {
43
+      "cloud": {
44
+        "tcb": "y",
45
+        "aliyun": "y"
46
+      },
47
+      "client": {
48
+        "App": {
49
+          "app-vue": "y",
50
+          "app-nvue": "y"
51
+        },
52
+        "H5-mobile": {
53
+          "Safari": "y",
54
+          "Android Browser": "y",
55
+          "微信浏览器(Android)": "y",
56
+          "QQ浏览器(Android)": "y"
57
+        },
58
+        "H5-pc": {
59
+          "Chrome": "y",
60
+          "IE": "y",
61
+          "Edge": "y",
62
+          "Firefox": "y",
63
+          "Safari": "y"
64
+        },
65
+        "小程序": {
66
+          "微信": "y",
67
+          "阿里": "y",
68
+          "百度": "y",
69
+          "字节跳动": "y",
70
+          "QQ": "y"
71
+        },
72
+        "快应用": {
73
+          "华为": "u",
74
+          "联盟": "u"
75
+        },
76
+        "Vue": {
77
+            "vue2": "y",
78
+            "vue3": "y"
79
+        }
80
+      }
81
+    }
82
+  }
83
+}

+ 10 - 0
uni_modules/uni-countdown/readme.md

@@ -0,0 +1,10 @@
1
+
2
+
3
+## CountDown 倒计时
4
+> **组件名:uni-countdown**
5
+> 代码块: `uCountDown`
6
+
7
+倒计时组件。
8
+
9
+### [查看文档](https://uniapp.dcloud.io/component/uniui/uni-countdown)
10
+#### 如使用过程中有任何问题,或者您对uni-ui有一些好的建议,欢迎加入 uni-ui 交流群:871950839