From a2ddd3bec584b6eb91ab8845353fdb40c9b37ebe Mon Sep 17 00:00:00 2001
From: zhangwei <1504152376@qq.com>
Date: 星期一, 02 九月 2024 17:22:17 +0800
Subject: [PATCH] 初步完成

---
 stats.html                       |    2 
 src/pages.json                   |  134 ++--
 src/pages/checkin/checkin.vue    |   14 
 src/pages/company/record.vue     |  233 ++++++++
 src/pages/order/order.vue        |   19 
 src/common/utils/commonHelper.js |    2 
 src/pages/wallet/withdrawal.vue  |   64 ++
 src/pages/mine/index.vue         |  162 ++----
 src/pages/company/index.vue      |   39 
 src/common/utils/util.js         |    4 
 src/pages/mine/mine.vue          |  128 ++++
 src/pages/login/index.vue        |   23 
 src/pages/checkin/workdetail.vue |   30 
 src/pages/checkin/index.vue      |   51 +
 src/pages/order/detail.vue       |   34 
 src/pages/article/article.vue    |  153 +++++
 src/pages/index/index.vue        |   40 
 src/pages/wallet/index.vue       |   75 ++
 src/common/request/http.api.js   |   22 
 /dev/null                        |   85 ---
 src/pages/wallet/recharge.vue    |   64 ++
 src/static/image/record.png      |    0 
 src/pages/order/myorder.vue      |    1 
 src/common/request/request.js    |    4 
 src/pages/worker/worker.vue      |   35 +
 src/pages/income/income.vue      |  142 +++++
 26 files changed, 1,165 insertions(+), 395 deletions(-)

diff --git a/src/common/request/http.api.js b/src/common/request/http.api.js
index c6fd54e..e45d2be 100644
--- a/src/common/request/http.api.js
+++ b/src/common/request/http.api.js
@@ -45,6 +45,13 @@
 	}
 });
 
+let getUserId = (userid) => http.get(`/api/User/getUser/${userid}`, {
+	custom: {
+		methodName: 'getUserId',
+		needToken: true
+	}
+})
+
 //鏍规嵁ld鏌ヨ鎷涘伐鏄庣粏
 let getOrder = (params, config = {}) => http.get(`/api/OrderWorker/getOrder/${params}`, {
 	custom: {
@@ -173,7 +180,7 @@
 	}
 });
 
-// 宸ヤ汉纭褰撳ぉ鎵撳崱璇︽儏
+// 鏌ヨ宸ヤ汉鏀跺叆璁板綍
 let PostMyTiXianDetailListPage = (params, config = {}) => http.post(`/api/OrderWorker/PostMyTiXianDetailListPage`,
 	params, {
 		custom: {
@@ -182,10 +189,19 @@
 		}
 	});
 
+
 // 澧炲姞浜鸿劯搴� base64
 let IaiAddPersoBase64 = (params, config = {}) => http.post(`/api/UpFile/IaiAddPersoBase64`, params, {
 	custom: {
 		methodName: 'IaiAddPersoBase64',
+		needToken: true
+	}
+});
+
+//淇敼鐢ㄦ埛淇℃伅
+let saveUser = (params, config = {}) => http.post(`/api/User/saveUser`, params, {
+	custom: {
+		methodName: 'saveUser',
 		needToken: true
 	}
 });
@@ -213,7 +229,9 @@
 	saveDakaDetail, // 宸ヤ汉纭褰撳ぉ鎵撳崱璇︽儏
 	PostMyTiXianDetailListPage, //鏌ヨ宸ヤ汉鐨勬敹鍏ヨ褰�
 	getOrder, //鏍规嵁ld鏌ヨ鎷涘伐鏄庣粏
-	IaiAddPersoBase64 // 澧炲姞浜鸿劯搴� base64
+	IaiAddPersoBase64, // 澧炲姞浜鸿劯搴� base64
+	saveUser, //淇敼鐢ㄦ埛淇℃伅
+	getUserId
 };
 // }
 
diff --git a/src/common/request/request.js b/src/common/request/request.js
index 69084e3..f336840 100644
--- a/src/common/request/request.js
+++ b/src/common/request/request.js
@@ -1,4 +1,4 @@
-锘�// 寮曞叆luch-request
+// 寮曞叆luch-request
 import {
 	http
 } from '@/uni_modules/uview-plus'
@@ -54,7 +54,7 @@
 			const userToken = db.get("userToken");
 			if (!userToken) {
 				//console.log("寮�鍚脊绐�");
-				vm.$store.commit('showLoginTip', true);
+				// vm.$store.commit('showLoginTip', true);
 				//console.log("寮圭獥宸茬粡寮�鍚�");
 				// return false;
 			} else {
diff --git a/src/common/utils/commonHelper.js b/src/common/utils/commonHelper.js
index c476681..90441b0 100644
--- a/src/common/utils/commonHelper.js
+++ b/src/common/utils/commonHelper.js
@@ -70,6 +70,8 @@
  * @param {Object} value2
  */
 function moneySub(value1, value2) {
+	value1 = value1 ? value1 : 0
+	value2 = value2 ? value2 : 0
 	let res = (parseFloat(value1) - parseFloat(value2)).toFixed(2);
 	return res > 0 ? res : 0;
 }
diff --git a/src/common/utils/util.js b/src/common/utils/util.js
index db1eae5..0c7407c 100644
--- a/src/common/utils/util.js
+++ b/src/common/utils/util.js
@@ -767,7 +767,9 @@
 			}, reject)
 			// #endif
 		})
+	},
+	roundToTwo(num){
+		return Math.round((num + Number.EPSILON) * 100) / 100;
 	}
-	
 
 }
diff --git a/src/pages.json b/src/pages.json
index d455d11..0f02232 100644
--- a/src/pages.json
+++ b/src/pages.json
@@ -29,7 +29,7 @@
 			"path": "pages/index/index",
 			"style": {
 				"navigationBarTitleText": "灏忛晣涓存椂宸�-棣栭〉",
-				"enablePullDownRefresh":true
+				"enablePullDownRefresh": true
 			}
 		},
 
@@ -39,36 +39,13 @@
 				"navigationBarTitleText": "鐧诲綍"
 			}
 		},
-		// {
-		// 	"path": "pages/order/order",
-		// 	"style": {
-		// 		"navigationBarTitleText": "鑱屼綅绠$悊"
-		// 	}
-		// },
-		// {
-		// 	"path": "pages/order/detail",
-		// 	"style": {
-		// 		"navigationBarTitleText": "鎶曢�掕鎯�"
-		// 	}
-		// },
-		// {
-		// 	"path": "pages/order/worker",
-		// 	"style": {
-		// 		"navigationBarTitleText": "宸ヤ汉璇︽儏"
-		// 	}
-		// },
 		{
 			"path": "pages/release/index",
 			"style": {
 				"navigationBarTitleText": "鍙戝竷鎷涘伐"
 			}
 		},
-		{
-			"path": "pages/wallet/index",
-			"style": {
-				"navigationBarTitleText": "閽卞寘"
-			}
-		},
+		
 		{
 			"path": "pages/mine/index",
 			"style": {
@@ -85,44 +62,41 @@
 			"path": "pages/mine/apply",
 			"style": {
 				"navigationBarTitleText": "鐢宠鎺ュ崟"
-	
+
 			}
 
 		},
 		{
-			"path" : "pages/test/test",
-			"style" : 
-			{
-				"navigationBarTitleText" : "浜鸿劯璇嗗埆"
+			"path": "pages/test/test",
+			"style": {
+				"navigationBarTitleText": "浜鸿劯璇嗗埆"
 				// "usingComponents":{
 				// 	"camera-buffer-jpg":"../components/cameraBufferJpg/cameraBufferjpg"
 				// }
 			}
+		},
+		{
+			"path" : "pages/income/income",
+			"style" : 
+			{
+				"navigationBarTitleText" : "鏀跺叆鏄庣粏",
+				"enablePullDownRefresh": true
+			}
+		},
+		{
+			"path" : "pages/article/article",
+			"style" : 
+			{
+				"navigationBarTitleText" : "鐢ㄦ埛鍗忚"
+			}
+		},
+		{
+			"path" : "pages/worker/worker",
+			"style" : 
+			{
+				"navigationBarTitleText" : "宸ヤ汉璇︽儏"
+			}
 		}
-		// {
-		// 	"path": "pages/enterprise/index",
-		// 	"style": {
-		// 		"navigationBarTitleText": "浼佷笟璧勬枡"
-		// 	}
-		// },
-		// {
-		// 	"path": "pages/enterprise/enterprise",
-		// 	"style": {
-		// 		"navigationBarTitleText": "浼佷笟璧勬枡"
-		// 	}
-		// },
-		// {
-		// 	"path": "pages/checkin/index",
-		// 	"style": {
-		// 		"navigationBarTitleText": "鎵撳崱璁板綍"
-		// 	}
-		// },
-		// {
-		// 	"path": "pages/checkin/record",
-		// 	"style": {
-		// 		"navigationBarTitleText": "鎵撳崱璇︽儏"
-		// 	}
-		// }
 	],
 	"subPackages": [{
 			"root": "pages/checkin",
@@ -130,15 +104,10 @@
 					"path": "index",
 					"style": {
 						"navigationBarTitleText": "鎵撳崱璁板綍",
-						"enablePullDownRefresh":true
+						"enablePullDownRefresh": true
 					}
 				},
-				{
-					"path": "record",
-					"style": {
-						"navigationBarTitleText": "鎵撳崱璇︽儏"
-					}
-				},
+
 				{
 					"path": "checkin",
 					"style": {
@@ -172,12 +141,11 @@
 		{
 			"root": "pages/detail",
 			"pages": [{
-					"path": "detail",
-					"style": {
-						"navigationBarTitleText": "宸ヤ綔璇︽儏"
-					}
+				"path": "detail",
+				"style": {
+					"navigationBarTitleText": "宸ヤ綔璇︽儏"
 				}
-			]
+			}]
 		},
 		{
 			"root": "pages/order",
@@ -203,7 +171,7 @@
 					"path": "myorder",
 					"style": {
 						"navigationBarTitleText": "鎴戠殑宸ヤ綔",
-						"enablePullDownRefresh":true
+						"enablePullDownRefresh": true
 					}
 				}
 			]
@@ -213,13 +181,41 @@
 			"pages": [{
 					"path": "index",
 					"style": {
-						"navigationBarTitleText": "鎵撳崱璁板綍"
+						"navigationBarTitleText": "宸ヤ汉鎵撳崱璁板綍"
+					}
+				},
+				{
+					"path": "record",
+					"style": {
+						"navigationBarTitleText": "宸ヤ汉鎵撳崱璇︽儏"
 					}
 				}
-				
+			]
+		},
+		{
+			"root": "pages/wallet",
+			"pages": [{
+					"path": "index",
+					"style": {
+						"navigationBarTitleText": "閽卞寘"
+					}
+				},
+				{
+					"path": "recharge",
+					"style": {
+						"navigationBarTitleText": "鎻愮幇"
+					}
+				},
+				{
+					"path": "withdrawal",
+					"style": {
+						"navigationBarTitleText": "鍏呭��"
+					}
+				}
 			]
 		}
 
+
 	],
 	"globalStyle": {
 		"navigationBarTextStyle": "black",
diff --git a/src/pages/article/article.vue b/src/pages/article/article.vue
new file mode 100644
index 0000000..5ae04e3
--- /dev/null
+++ b/src/pages/article/article.vue
@@ -0,0 +1,153 @@
+<template>
+	<view class="content-article">
+		<view class="coreshop-bg-white c-p-10 c-m-10 text-69">
+			<!-- <u--image width="100%" height="150px" v-if="info.coverImage" :src="info.coverImage"></u--image> -->
+			<view class="">
+				<view class="chuany-text-bold chuany-font40 c-m-t-10 c-m-b-10">
+					灏忛晣涓存椂宸ョ敤鎴峰崗璁�
+				</view>
+				<view class="">
+					灏婃暚鐨勫鎴锋偍濂斤紝娆㈣繋鎮ㄨ闂皬闀囦复鏃跺伐缃戠珯锛堜互涓嬬畝绉帮細缃戠珯锛夈�傚湪鎮ㄦ敞鍐屾垚涓虹綉绔欑敤鎴蜂箣鍓嶏紝璇锋偍鍔″繀璁ょ湡闃呰鍜岀悊瑙c�婄綉绔欑敤鎴锋敞鍐屽崗璁�嬶紙浠ヤ笅绠�绉帮細鍗忚锛変腑鎵�鏈夌殑鏉℃銆傛偍椤诲畬鍏ㄥ悓鎰忓崗璁腑鎵�鏈夌殑鏉℃锛屾墠鍙互娉ㄥ唽鎴愪负鏈綉绔欑殑鐢ㄦ埛锛屼娇鐢ㄩ噷闈㈢殑鏈嶅姟銆傛偍鍦ㄧ綉绔欑殑娉ㄥ唽鍜屾搷浣滃潎灏嗚瑙嗕负鏄偍瀵瑰崗璁墍鏈夋潯娆惧強鍐呭鐨勮嚜鎰挎帴鍙椼��
+
+				</view>
+				<view class="chuany-text-bold chuany-font40 c-m-t-10 c-m-b-10">
+					涓�銆佸0鏄�
+				</view>
+				<view class="">
+					锛堜竴锛夌綉绔欏唴鍦ㄧ嚎浜у搧鐨勬墍鏈夋潈褰掑窛鍗版枃鍖栭泦鍥㈣偂浠芥湁闄愬叕鍙告墍鏈夈��<br>
+
+					锛堜簩锛夋偍鍦ㄧ綉绔欒繘琛屾敞鍐屾椂锛屼竴鏃︾偣鍑烩�滄垜鎺ュ彈鈥濇寜閽紝鍗宠〃绀轰负鎮ㄥ凡鑷効鎺ュ彈鍗忚涓墍鏈夌殑鏉℃鍜屽唴瀹广��<br>
+
+					锛堜笁锛夊崗璁潯娆剧殑鏁堝姏鑼冨洿浠呴檺浜庢湰缃戠珯锛屾偍鍦ㄧ綉绔欑殑琛屼负鍧囧彈鍗忚鐨勭害鏉熴��<br>
+
+					锛堝洓锛夋偍浣跨敤缃戠珯鏈嶅姟鐨勮涓猴紝鍗宠瑙嗕负鎮ㄥ凡鐭ユ倝鏈綉绔欑殑鐩稿叧鍏憡骞跺悓鎰忋��<br>
+
+					锛堜簲锛夋湰缃戠珯鏈夋潈鍦ㄦ湭鎻愬墠閫氱煡鎮ㄧ殑鎯呭喌涓嬩慨鏀瑰崗璁殑鏉℃锛屾偍姣忔杩涘叆缃戠珯鍦ㄤ娇鐢ㄦ湇鍔″墠锛岄兘搴斿厛鏌ラ槄涓�閬嶅崗璁��<br>
+
+					锛堝叚锛夋湰缃戠珯鏈夋潈鍦ㄦ湭鎻愬墠閫氱煡鎮ㄧ殑鎯呭喌涓嬩慨鏀广�佹殏鍋滅綉绔欓儴鍒嗘垨鍏ㄩ儴鐨勬湇鍔★紝涓斾笉鎵挎媴鐢辨浜х敓鏉ヨ嚜鎮ㄥ拰绗笁鏂圭殑浠讳綍璐d换銆�<br>
+
+					锛堜竷锛夋湰缃戠珯鎻愪緵鍏嶈垂娉ㄥ唽鏈嶅姟锛屾偍鐨勬敞鍐屽潎鏄嚜鎰胯涓猴紝娉ㄥ唽鎴愬姛鍚庯紝鎮ㄥ彲浠ュ緱鍒扮綉绔欐洿鍔犲畬鍠勭殑鏈嶅姟銆�<br>
+
+					锛堝叓锛夋偍娉ㄥ唽鎴愪负鐢ㄦ埛鍚庤处鎴峰拰瀵嗙爜濡傛湁涓㈠け锛屼笉浼氬奖鍝嶅埌鎮ㄥ凡鍔炵悊鎴愬姛涓氬姟鐨勬晥鍔涳紝鏈綉绔欏彲鎭㈠鎮ㄧ殑娉ㄥ唽璐︽埛鍙婄浉鍏充俊鎭絾涓嶆壙鎷呴櫎姝や互澶栫殑鍏跺畠浠讳綍璐d换銆�<br>
+				</view>
+				<view class="chuany-text-bold chuany-font40 c-m-t-10 c-m-b-10">
+					浜屻�佺敤鎴风鐞�
+				</view>
+				锛堜竴锛夋偍鍦ㄦ湰缃戠珯鐨勬墍鏈夎涓洪兘椤荤鍚堜腑鍥界殑娉曞緥娉曡锛屾偍涓嶅緱鍒╃敤鏈綉绔欐彁渚涚殑鏈嶅姟鍒朵綔銆佸鍒躲�佸彂甯冦�佷紶鎾互涓嬩俊鎭細<br>
+				<view class="c-p-l-36">
+					1銆佸弽瀵瑰娉曞熀鏈師鍒欑殑锛�<br>
+
+					2銆佸嵄瀹冲浗瀹跺畨鍏ㄣ�佹硠闇插浗瀹剁瀵嗐�侀瑕嗗浗瀹舵斂鏉冦�佺牬鍧忓浗瀹剁粺涓�鐨勶紱<br>
+
+					3銆佹崯瀹冲浗瀹惰崳瑾夊拰鍒╃泭鐨勶紱<br>
+
+					4銆佺吔鍔ㄦ皯鏃忎粐鎭ㄣ�佹皯鏃忔瑙嗐�佺牬鍧忔皯鏃忓洟缁撶殑锛�<br>
+
+					5銆佺牬鍧忓浗瀹跺畻鏁欐斂绛栵紝瀹f壃閭暀鍜屽皝寤鸿糠淇$殑锛�<br>
+
+					6銆佹暎甯冭埃瑷�銆佹壈涔辩ぞ浼氱З搴忋�佺牬鍧忕ぞ浼氱ǔ瀹氱殑锛�<br>
+
+					7銆佹暎甯冩帆绉姐�佽壊鎯呫�佽祵鍗氥�佹毚鍔涖�佸嚩鏉�銆佹亹鎬栧唴瀹规垨鑰呮暀鍞嗙姱缃殑锛�<br>
+
+					8銆佷井杈辨垨鑰呰璋や粬浜猴紝渚靛浠栦汉鍚堟硶鏉冪泭鐨勶紱<br>
+
+					9銆佷互鍙婃硶寰嬨�佹硶瑙勭姝㈢殑鍏朵粬鍐呭銆�<br>
+				</view>
+
+				锛堜簩锛夋偍鍦ㄦ湰缃戠珯鐨勮涓猴紝杩樺繀椤荤鍚堝叾瀹冨浗瀹跺拰鍦板尯鐨勬硶寰嬭瀹氫互鍙婂浗闄呮硶鐨勬湁鍏宠瀹氥��<br>
+
+				锛堜笁锛変笉寰楀埄鐢ㄦ湰缃戠珯浠庝簨浠ヤ笅娲诲姩锛�<br>
+
+				<view class="c-p-l-36">
+					1銆佹湭缁忓厑璁革紝杩涘叆浠栦汉璁$畻鏈轰俊鎭綉缁滄垨鑰呬娇鐢ㄤ粬浜鸿绠楁満淇℃伅缃戠粶鐨勮祫婧愶紱<br>
+					
+					2銆佹湭缁忓厑璁革紝瀵逛粬浜鸿绠楁満淇℃伅缃戠粶鐨勫姛鑳借繘琛屽垹闄ゃ�佷慨鏀规垨澧炲姞锛�<br>
+					
+					3銆佹湭缁忓厑璁革紝瀵逛粬浜鸿绠楁満淇℃伅缃戠粶涓瓨鍌ㄣ�佸鐞嗘垨鑰呬紶杈撶殑鏁版嵁鍜屽簲鐢ㄧ▼搴忚繘琛屽垹闄ゃ�佷慨鏀规垨鑰呭鍔狅紱<br>
+					
+					4銆佸埗浣溿�佹晠鎰忎紶鎾绠楁満鐥呮瘨绛夌牬鍧忔�х▼搴忕殑锛�<br>
+					
+					5銆佸叾浠栧嵄瀹宠绠楁満淇℃伅缃戠粶瀹夊叏鐨勮涓恒��<br>
+				</view>
+
+				锛堝洓锛夐伒瀹堟湰缃戠珯鍏朵粬瑙勫畾鍜岀▼搴忥細<br>
+
+				<view class="c-p-l-36">
+					1銆佹偍瀵硅嚜宸卞湪鏈綉绔欎腑鐨勮涓哄拰鎿嶄綔鎵挎媴鍏ㄩ儴璐d换锛�<br>
+					
+					2銆佹偍鎵挎媴璐d换鐨勫舰寮忓寘鎷絾涓嶄粎闄愪簬锛屽鍙楀埌渚靛鑰呰繘琛岃禂鍋裤�佸湪鏈綉绔欓鍏堟壙鎷呬簡鍥犳偍鐨勮涓哄鑷寸殑琛屾斂澶勭綒鎴栦镜鏉冩崯瀹宠禂鍋胯矗浠诲悗锛屾偍搴旂粰浜堟湰缃戠珯鐨勭瓑棰濊禂鍋匡紱<br>
+					
+					3銆佸鏋滄湰缃戠珯鍙戠幇鎮ㄤ紶杈撶殑淇℃伅鍚湁鏈崗璁墍瑙勫畾鐨勫唴瀹癸紝鏈綉绔欐湁鏉冨湪涓嶉�氱煡鎮ㄧ殑鎯呭喌涓嬮噰鍙栧寘鎷絾涓嶄粎闄愪簬鍚戝浗瀹舵湁鍏虫満鍏虫姤鍛娿�佷繚瀛樻湁鍏宠褰曘�佸垹闄よ鍐呭鍙婇摼鎺ュ湴鍧�銆佸叧闂湇鍔″櫒銆佹殏鍋滄偍璐﹀彿鐨勬搷浣滄潈闄愩�佸仠姝㈠悜鎮ㄦ彁渚涙湇鍔$瓑鎺柦銆�<br>
+					
+				</view>
+				<view class="chuany-text-bold chuany-font40 c-m-t-10 c-m-b-10">
+					涓夈�佹敞鍐岀敤鎴锋潈鍒╁拰涔夊姟
+				</view>
+				锛堜竴锛夋敞鍐岀敤鎴锋湁鏉冪敤鏈綉绔欐彁渚涚殑鏈嶅姟鍔熻兘銆�<br>
+
+				锛堜簩锛夋敞鍐岀敤鎴峰悓鎰忛伒瀹堝寘鎷絾涓嶄粎闄愪簬銆婁腑鍗庝汉姘戝叡鍜屽浗淇濆畧鍥藉绉樺瘑娉曘�嬨�併�婁腑鍗庝汉姘戝叡鍜屽浗璁$畻鏈轰俊鎭郴缁熷畨鍏ㄤ繚鎶ゆ潯渚嬨�嬨�併�婅绠楁満杞欢淇濇姢鏉′緥銆嬨�併�婁簰鑱旂綉鐢靛瓙鍏憡鏈嶅姟绠$悊瑙勫畾銆嬨�併�婁簰鑱旂綉淇℃伅鏈嶅姟绠$悊鍔炴硶銆嬬瓑鍦ㄥ唴鐨勬硶寰嬨�佹硶瑙勩��<br>
+
+				锛堜笁锛夋偍娉ㄥ唽鏃舵湁涔夊姟鎻愪緵瀹屾暣銆佺湡瀹炪�佺殑涓汉淇℃伅锛屼俊鎭鏈夊彉鏇达紝搴斿強鏃舵洿鏂般��<br>
+
+				锛堝洓锛夋偍鎴愪负娉ㄥ唽鐢ㄦ埛椤诲Ε鍠勪繚绠$敤鎴峰悕鍜屽瘑鐮侊紝鐢ㄦ埛鐧诲綍鍚庤繘琛岀殑涓�鍒囨椿鍔ㄥ潎瑙嗕负鏄偍鏈汉鐨勮涓哄拰鎰忔効锛屾偍璐熷叏閮ㄨ矗浠汇��<br>
+
+				锛堜簲锛夋偍鍦ㄤ娇鐢ㄦ湰缃戠珯鏈嶅姟鏃讹紝鍚屾剰涓旀帴鍙楁湰缃戠珯鎻愪緵鐨勫悇绫讳俊鎭湇鍔★紝鍖呮嫭缃戠珯鍜屽窛鍗版枃鍖栭泦鍥㈣偂浠芥湁闄愬叕鍙稿畾鏈熶互鐢佃瘽銆佺煭淇°�侀偖浠躲�佸井淇$瓑鏂瑰紡鍚戞偍鎺ㄩ�佷笟鍔″浼犱俊鎭拰淇冮攢浼樻儬淇℃伅銆�<br>
+
+				<view class="chuany-text-bold chuany-font40 c-m-t-10 c-m-b-10">
+					鍥涖�佺敤鎴烽殣绉�
+				</view>
+				鎴戜滑鎵胯锛屽鎮ㄤ釜浜虹殑淇℃伅鍜岄殣绉佺殑瀹夊叏鎵挎媴淇濆瘑涔夊姟銆傛湭缁忔偍鎺堟潈鎴栧悓鎰忥紝鏈綉绔欎笉浼氬皢鎮ㄧ殑涓汉璧勬枡淇℃伅娉勯湶缁欑涓夋柟锛屼絾浠ヤ笅鎯呭喌闄ゅ锛屼笖鏈綉绔欎笉鎵挎媴浠讳綍璐d换锛�<br>
+
+				锛堜竴锛夋斂搴滃崟浣嶆寜鐓т腑鍗庝汉姘戝叡鍜屽浗鐨勬硶寰嬨�佽鏀挎硶瑙勩�侀儴闂ㄨ绔犮�佸徃娉曡В閲婄瓑瑙勮寖鎬ф硶寰嬫枃浠讹紙缁熺О鈥滄硶寰嬫硶瑙勨�濓級锛岃姹傛湰缃戠珯鎻愪緵鐨勩��<br>
+
+				锛堜簩锛夌敱浜庢偍灏嗙敤鎴峰拰瀵嗙爜鍛婄煡鎴栨硠闇茬粰浠栦汉锛岀敱姝ゅ鑷寸殑涓汉璧勬枡娉勯湶銆� <br>
+				锛堜笁锛夊寘鎷絾涓嶄粎闄愪簬榛戝鏀诲嚮銆佽绠楁満鐥呮瘨渚靛叆鎴栧彂浣溿�佹斂搴滅鍒剁瓑涓嶅彲鎶楀姏鑰岄�犳垚鐨勭敤鎴蜂釜浜鸿祫鏂欐硠闇层�佷涪澶便�佽鐩楃敤鎴栬绡℃敼绛夈��<br>
+
+				锛堝洓锛変负鍏嶉櫎浠栦汉姝e湪閬彈濞佽儊鍒板叾鐢熷懡銆佽韩浣撴垨璐骇绛夋柟闈㈢殑鍗遍櫓锛屾墍閲囧彇鐨勬帾鏂姐��<br>
+
+				锛堜簲锛夋湰缃戠珯浼氫笌鍏朵粬缃戠珯閾炬帴锛屼絾涓嶅鍏朵粬缃戠珯鐨勯殣绉佹斂绛栧強鍐呭璐熻矗銆�<br>
+
+				锛堝叚锛夋澶栵紝鎮ㄨ嫢鍙戠幇鏈変换浣曢潪娉曚娇鐢ㄦ偍鐨勭敤鎴疯处鍙锋垨瀹夊叏婕忔礊鐨勬儏鍐碉紝搴旂珛鍗抽�氬憡鏈綉绔欍��<br>
+
+				锛堜竷锛夌敱浜庢偍鑷韩鐨勭枏蹇姐�佸ぇ鎰忕瓑杩囬敊鎵�瀵艰嚧鐨勩��<br>
+
+				锛堝叓锛夋偍鍦ㄦ湰缃戠珯鐨勬湁鍏宠褰曟湁鍙兘鎴愪负鎮ㄨ繚鍙嶆硶寰嬫硶瑙勫拰鏈崗璁殑璇佹嵁銆�<br>
+				<view class="chuany-text-bold chuany-font40 c-m-t-10 c-m-b-10">
+					浜斻�佺煡璇嗕骇鏉�
+				</view>
+				鏈綉绔欐墍鏈夌殑鍩熷悕銆佸晢鍙枫�佸晢鏍囥�佹枃瀛椼�佽鍍忓強澹伴煶鍐呭銆佸浘褰㈠強鍥惧儚鍧囧彈鏈夊叧鎵�鏈夋潈鍜岀煡璇嗕骇鏉冩硶寰嬬殑淇濇姢锛屾湭缁忔湰缃戠珯浜嬪厛浠ヤ功闈㈡槑纭厑璁革紝浠讳綍涓汉鎴栧崟浣嶏紝鍧囦笉寰楄繘琛屽鍒跺拰浣跨敤銆�<br>
+				<view class="chuany-text-bold chuany-font40 c-m-t-10 c-m-b-10">
+					鍏�佹硶寰嬮�傜敤
+				</view>
+				锛堜竴锛夊崗璁敱鏈綉绔欑殑鎵�鏈変汉璐熻矗淇锛屽苟閫氳繃鏈綉绔欏叕甯冿紝鎮ㄧ殑娉ㄥ唽琛屼负鍗宠瑙嗕负鎮ㄨ嚜鎰挎帴鍙楀崗璁殑鍏ㄩ儴鏉℃锛屽彈鍏剁害鏉熴��<br>
+
+				锛堜簩锛夊崗璁殑鐢熸晥銆佸饱琛屻�佽В閲婂強浜夎鐨勮В鍐冲潎閫傜敤涓崕浜烘皯鍏卞拰鍥芥硶寰嬨��<br>
+
+				锛堜笁锛夋偍浣跨敤缃戠珯鎻愪緵鐨勬湇鍔″浜х敓浜夎锛屽師鍒欎笂鍙屾柟鍗忓晢瑙e喅锛屽崗鍟嗕笉鎴愬彲鍚戜徊瑁佹満鏋勭敵璇蜂徊瑁佹垨鍒颁汉姘戞硶闄㈡彁璧疯瘔璁笺��<br>
+
+				锛堝洓锛夊崗璁殑鏉℃濡備笌娉曞緥鐩告姷瑙︼紝鏈綉绔欏彲杩涜閲嶆柊瑙f瀽锛岃�屽叾浠栨潯娆惧垯淇濇寔瀵规偍浜х敓娉曞緥鏁堝姏鍜岀害鏉熴��<br>
+			</view>
+			<!-- <view class="article-time" v-if="info.createTime">{{ info.createTime }}</view> -->
+
+		</view>
+	</view>
+</template>
+
+<script>
+	export default {
+		data() {
+			return {
+
+			}
+		},
+		methods: {
+
+		}
+	}
+</script>
+
+<style>
+.content-article{
+	line-height: 1.5;
+}
+</style>
\ No newline at end of file
diff --git a/src/pages/checkin/checkin.vue b/src/pages/checkin/checkin.vue
index 31f3f25..a5d2f1a 100644
--- a/src/pages/checkin/checkin.vue
+++ b/src/pages/checkin/checkin.vue
@@ -1,7 +1,7 @@
 <template>
 	<view>
 		<view class='chuany-flex camera-fill chuany-justify-center chuany-align-center'>
-			<fui-upload immediate :url="`${apiBaseUrl}api/UpFile/UpdateFile`" ref="uploadB" max='1' @success="success"
+			<fui-upload immediate :url="`${apiBaseUrl}api/UpFile/UpdateFile`" ref="uploadE" max='1' @success="success"
 				@error="error" @complete="complete" width="280" height="280">
 				<image v-if="checkPhoto" :src="checkPhoto" mode="widthFix" style="width: 280rpx;height: 280rpx;">
 				</image>
@@ -10,8 +10,8 @@
 					<view class="chuany-font20">鎷嶆憚鐜鐓х墖</view>
 				</view>
 			</fui-upload>
-			<fui-upload ref="uploadB" max='1' @error="error" @complete="completePerson" width="280" height="280">
-				<image v-if="src" :src="src" mode="widthFix" style="width: 280rpx;height: 280rpx;"></image>
+			<fui-upload ref="uploadP" max='1' @error="error" @complete="completePerson" width="280" height="280">
+				<image v-if="faceImg" :src="faceImg" mode="widthFix" style="width: 280rpx;height: 280rpx;"></image>
 				<view class=" chuany-flex chuany-flex-direction chuany-align-center" v-else>
 					<fui-icon name="addfriends-fill"></fui-icon>
 					<view class="chuany-font20">鎷嶆憚浜鸿劯鐓х墖</view>
@@ -74,7 +74,7 @@
 					orderId: id
 				}).then(res => {
 					if (res.code == 1) {
-						this.dakaList = res.data.orderBiddingDetailCheck
+						this.dakaList = res.data ? res.data.orderBiddingDetailCheck : []
 						if (this.dakaList.length == 0) {
 							this.dakaList.length = 2
 						}
@@ -132,6 +132,10 @@
 				console.log(e, '鍒犻櫎')
 			},
 			completePerson(e) {
+				if (e.action == 'delete') {
+					// 鍒犻櫎澶勭悊
+					return
+				}
 				this.$util.pathToBase64(e.urls[0]).then(res => {
 					this.faceImg = res
 				})
@@ -169,6 +173,8 @@
 						})
 						this.checkPhoto = '' //鎵撳崱鐓х墖
 						this.faceImg = ''
+						this.$refs.uploadP.deleteImage()
+						this.$refs.uploadE.deleteImage()
 						this.getDaka(this.orderBiddingId)
 					} else {
 						this.$util.showToast({
diff --git a/src/pages/checkin/index.vue b/src/pages/checkin/index.vue
index dd8acd1..69ab5c1 100644
--- a/src/pages/checkin/index.vue
+++ b/src/pages/checkin/index.vue
@@ -8,9 +8,9 @@
 			<up-subsection :list="list" activeColor="#f9ae3d" @change="sectionChange"></up-subsection>
 		</up-sticky>
 		<view class="" v-if="viewList&&viewList.length>0">
-			<view class="listrecord c-p-18" v-for="item in viewList" :key='item.id' @click='jumpWorkDetail(item)'>
+			<view class="listrecord c-p-18" v-for="item in viewList" :key='item.id'>
 				<view class="coreshop-ff chuany-bradius20">
-					<view
+					<view @click='jumpWorkDetail(item)'
 						class="bgblue c-p-l-18 c-p-r-18 c-p-t-10 c-p-b-10 chuany-flex chuany-justify-between chuany-font30">
 						<text class=''>
 							鏃ユ湡锛歿{$util.formatDate(item.workDate)}}
@@ -49,8 +49,11 @@
 								<text>
 									鏁伴噺锛�
 								</text>
-								<up-input style="padding: 0;" size='mini' border="surround"
-									v-model="workCount"></up-input>
+								<up-input v-if="item.isShenPiName!=='宸茬粨绠�'" style="padding: 0;" size='mini'
+									border="surround"
+									@blur='(val) => {item.todaySalary=$util.roundToTwo(item.workCount*item.workPrice)}'
+									v-model="item.workCount"></up-input>
+								<text v-else>{{item.workCount}}</text>
 							</view>
 							<view class="chuany-width50 c-p-t-14">
 								<text>
@@ -60,14 +63,15 @@
 							<view class="chuany-width50 c-p-t-14">
 								<view class="chuany-width10">
 									<up-button class="button-layout__item" text="宸ヨ祫鐢虫姤" size="mini"
-										@click.stop='saveDakaDetail(item)' type="warning"></up-button>
+										v-if="item.isShenPiName!=='宸茬粨绠�'" @click.stop='saveDakaDetail(item)'
+										type="warning"></up-button>
 								</view>
 							</view>
 						</view>
 					</view>
 				</view>
 			</view>
-			<view class="listrecord c-p-18">
+			<!-- <view class="listrecord c-p-18">
 				<view class="coreshop-ff chuany-bradius20">
 					<view class="bgblue c-p-18 chuany-flex chuany-justify-between chuany-font30">
 						<text class=''>
@@ -80,9 +84,9 @@
 								涓存椂宸�
 							</text>
 							<view class="chuany-flex chuany-justify-between">
-								<!-- <text class="c-p-r-20">
+								<text class="c-p-r-20">
 									
-								</text> -->
+								</text>
 								<up-tag class='c-m-r-10' text="鏈粨绠�" shape="circle" type="warning" plain plainFill
 									size='mini'></up-tag>
 								<up-tag text="鏈‘璁�" shape="circle" type="warning" plain plainFill size='mini'></up-tag>
@@ -91,9 +95,9 @@
 						<view class="c-p-t-20">
 							鎵撳崱璁板綍锛�08:00-12:00 13:00-17:00
 						</view>
-						<!-- <view class="chuany-flex chuany-justify-between c-p-t-20">
+						<view class="chuany-flex chuany-justify-between c-p-t-20">
 							
-						</view> -->
+						</view>
 						<view class="chuany-flex chuany-justify-between chuany-flex-wrap c-p-t-20">
 							<text class="chuany-width50">
 								宸ヤ綔鏃堕暱锛�8灏忔椂
@@ -126,7 +130,7 @@
 						</view>
 					</view>
 				</view>
-			</view>
+			</view> -->
 			<up-loadmore :status="loadStatus" />
 		</view>
 		<view v-else>
@@ -148,8 +152,7 @@
 				list: ['鍏ㄩ儴', '鏈粨绠�', '宸茬粨绠�'],
 				datePickerShow: false,
 				viewList: [],
-				loadStatus: 'loadmore',
-				workCount: '', //璁′欢鏁伴噺
+				loadStatus: 'loadmore'
 			}
 		},
 		onLoad() {
@@ -165,6 +168,7 @@
 			this.pageSize = 20
 			this.wordDate = ''
 			this.isJieSuan = ''
+			this.loadStatus = 'loadmore'
 			this.PostMyDakaListPage();
 		},
 		methods: {
@@ -173,10 +177,10 @@
 				this.PostMyDakaListPage()
 			},
 			saveDakaDetail(item) {
-				if(item.workerType==1&&this.workCount){
+				if (item.workerType == 1 && !item.workCount) {
 					this.$util.showToast({
-						title:'璇峰~鍐欐暟閲忥紒',
-						icon:'error'
+						title: '璇峰~鍐欐暟閲忥紒',
+						icon: 'error'
 					})
 					return
 				}
@@ -185,11 +189,16 @@
 					workTime: item.workTime, //宸ヤ綔鏃堕暱
 					todaySalary: item.todaySalary //褰撴棩宸ヨ祫
 				}
-				if (this.workCount) {
-					obj.workCount = this.workCount
+				if (item.workCount) {
+					obj.workCount = item.workCount
 				}
 				this.$api.saveDakaDetail(obj).then(res => {
-					console.log(res,'----');
+					if (res.code == 1) {
+						this.$util.showToast({
+							title: '鐢虫姤鎴愬姛锛�',
+							icon: 'success'
+						})
+					}
 				})
 			},
 			PostMyDakaListPage() {
@@ -206,10 +215,10 @@
 							this.isJieSuan = ''
 							break;
 						case 1:
-							this.isJieSuan = true
+							this.isJieSuan = false
 							break;
 						case 2:
-							this.isJieSuan = false
+							this.isJieSuan = true
 							break;
 					}
 					data.isJieSuan = this.isJieSuan
diff --git a/src/pages/checkin/record.vue b/src/pages/checkin/record.vue
deleted file mode 100644
index d88be8e..0000000
--- a/src/pages/checkin/record.vue
+++ /dev/null
@@ -1,150 +0,0 @@
-<template>
-	<view class="">
-		<view class="coreshop-ff">
-			<up-list>
-				<up-list-item>
-					<up-cell title="鍛ㄥ厛鐢�">
-						<template #icon>
-							<up-avatar shape="square" size="35" src="https://uview-plus.jiangruyi.com/album/1.jpg"
-								customStyle="margin: -3px 5px -3px 0"></up-avatar>
-						</template>
-					</up-cell>
-				</up-list-item>
-				<view class="c-p-20">
-					<view class="chuany-flex chuany-justify-between chuany-flex-wrap">
-						<text class="chuany-font34 chuany-text-bold">
-							涓存椂宸�
-						</text>
-						<text class="">
-							鏃ユ湡锛�2024-08-12
-						</text>
-					</view>
-				</view>
-				<view class="c-p-20">
-					<view class="">
-						<text class="">
-							鎵撳崱璁板綍锛�
-						</text>
-						<view class="chuany-flex chuany-justify-between c-p-t-20">
-							<view
-								class="chuany-flex chuany-flex-direction chuany-align-center textclo chuany-font24 step_item"
-								v-for="(item,index) in 4">
-								<up-avatar shape="square" size="38" src="https://uview-plus.jiangruyi.com/album/1.jpg"
-									@click="previewImage"></up-avatar>
-								<view class="line line-active" v-if="index!==3">
-
-								</view>
-								<up-icon name="checkmark-circle-fill" color="#2979ff" size="22"></up-icon>
-								<text>宸叉墦鍗�</text>
-								<text>10:00</text>
-							</view>
-
-						</view>
-
-					</view>
-				</view>
-				
-				<view class="stepwit">
-					<tem-steps></tem-steps>
-				</view>
-			</up-list>
-			<view class="tabbtns">
-				<up-button color='#fece01' class="text-69" text="宸ヨ祫瀹℃牳"></up-button>
-			</view>
-		</view>
-	</view>
-</template>
-
-<script setup>
-	import {
-		reactive,
-		ref
-	} from 'vue';
-	let state = reactive({
-		currentIdex: 0
-	})
-	let show = ref(true)
-	const urls = ['https://uview-plus.jiangruyi.com/album/1.jpg']
-	const list2 = reactive([{
-		id: 1,
-		time: '鏄庡ぉ 19:00-23:00',
-		name: '涓存椂宸�',
-		tags: ['4灏忔椂', '鍙棤缁忛獙', '鎵嬭剼楹诲埄'],
-		adress: '姝︿警鍖烘婧閬�4.0km',
-		yaoqiu: '涓嶉檺',
-		price: 50,
-		peoplenum: 3,
-		zhaodao: 1
-	}]);
-	const click = () => {
-
-	}
-	const change = (e) => {
-		state.currentIdex = e.index
-	}
-	const toDetail = (e) => {
-		uni.navigateTo({
-			url: '/pages/detail/detail'
-		})
-	}
-	const previewImage = () => {
-		uni.previewImage({
-			urls: ['https://uview-plus.jiangruyi.com/album/1.jpg']
-		})
-	}
-</script>
-
-<style lang='scss'>
-	.list {
-		background-color: #fff;
-		padding: 30rpx 30rpx 0 30rpx;
-	}
-
-	.content {
-		height: 430rpx;
-		width: 100%;
-		background-color: #fff;
-		border-radius: 20rpx;
-		/* margin: 30rpx 30rpx 0 30rpx; */
-		box-shadow: 0rpx 4rpx 12rpx 3rpx rgba(85, 85, 85, 0.10);
-	}
-
-	.bgblue {
-		background-color: #4e96f5;
-		border-radius: 20rpx 20rpx 0 0;
-		color: #fff;
-	}
-
-	.redcla {
-		color: #f05348;
-	}
-
-	.textclo {
-		color: #606266;
-	}
-
-	.stepwit {
-		width: 50%;
-		margin: 0 auto
-	}
-
-	.step_item {
-		position: relative;
-		/* width: 144rpx; */
-		display: flex;
-
-		.line {
-			position: absolute;
-			    top: 92rpx;
-			    left: 52rpx;
-			    content: "";
-			    height: 4rpx;
-			    width: 192rpx;
-
-		}
-
-		.line-active {
-			background-color: #2979ff;
-		}
-	}
-</style>
\ No newline at end of file
diff --git a/src/pages/checkin/workdetail.vue b/src/pages/checkin/workdetail.vue
index 61a51c5..ab11db5 100644
--- a/src/pages/checkin/workdetail.vue
+++ b/src/pages/checkin/workdetail.vue
@@ -52,8 +52,13 @@
 				</template>
 			</up-cell>
 			<up-cell title="鏁伴噺" :border='false'  v-if="dakaList.workerType==1" >
-				<template #right-icon>
-					<up-input v-model="workCount" border="none" placeholder="璇峰~鍐欐暟閲�"></up-input>
+				<template #right-icon v-if="dakaList.isShenPiName!=='宸茬粨绠�'">
+					<up-input v-model="dakaList.workCount"
+						@blur='(val) => {dakaList.todaySalary=$util.roundToTwo(dakaList.workCount*dakaList.workPrice)}'
+						border="none" placeholder="璇峰~鍐欐暟閲�"></up-input>
+				</template>
+				<template #value v-else>
+					{{dakaList.workCount}}
 				</template>
 			</up-cell>
 			<up-cell title="宸ヨ祫" :border='false'>
@@ -65,7 +70,7 @@
 				<tem-steps></tem-steps>
 			</view> -->
 			<view class="tabbtns">
-				<up-button color='#fece01' class="text-69" text="宸ヨ祫鐢虫姤" @click="saveDakaDetail"></up-button>
+				<up-button color='#fece01' class="text-69" text="宸ヨ祫鐢虫姤" v-if="dakaList.isShenPiName!=='宸茬粨绠�'" @click="saveDakaDetail"></up-button>
 			</view>
 		</view>
 	</view>
@@ -101,6 +106,7 @@
 					orderBiddingDetailId: id
 				}).then(res => {
 					this.dakaList = res.data
+					this.dakaList.workCount = res.data.workCount
 					if (this.dakaList.orderBiddingDetailCheck.length == 0) {
 						this.dakaList.orderBiddingDetailCheck.length = 2
 					}
@@ -114,7 +120,7 @@
 				})
 			},
 			saveDakaDetail() {
-				if (dakaList.workerType == 1 && this.workCount) {
+				if (this.dakaList.workerType == 1 && !this.dakaList.workCount) {
 					this.$util.showToast({
 						title: '璇峰~鍐欐暟閲忥紒',
 						icon: 'error'
@@ -122,14 +128,20 @@
 					return
 				}
 				let obj = {
-					orderBiddingDetailId: dakaList.orderBiddingDetailId, //鎷涘伐鎵撳崱Id
-					workTime: dakaList.workTime, //宸ヤ綔鏃堕暱
-					todaySalary: dakaList.todaySalary //褰撴棩宸ヨ祫
+					orderBiddingDetailId: this.dakaList.orderBiddingDetailId, //鎷涘伐鎵撳崱Id
+					workTime: this.dakaList.workTime, //宸ヤ綔鏃堕暱
+					todaySalary: this.dakaList.todaySalary //褰撴棩宸ヨ祫
 				}
-				if (this.workCount) {
-					obj.workCount = this.workCount
+				if (this.dakaList.workCount) {
+					obj.workCount = this.dakaList.workCount
 				}
 				this.$api.saveDakaDetail(obj).then(res => {
+					if(res.code==1){
+						this.$util.showToast({
+							title: '鐢虫姤鎴愬姛锛�',
+							icon: 'success'
+						})
+					}
 					console.log(res, '----');
 				})
 			},
diff --git a/src/pages/company/index.vue b/src/pages/company/index.vue
index 9a0179f..7dfc312 100644
--- a/src/pages/company/index.vue
+++ b/src/pages/company/index.vue
@@ -8,9 +8,9 @@
 			<up-subsection :list="list" activeColor="#f9ae3d" @change="sectionChange"></up-subsection>
 		</up-sticky>
 		<view class="" v-if="viewList&&viewList.length>0">
-			<view class="listrecord c-p-18" v-for="item in viewList" :key='item.id' @click='jumpWorkDetail(item)'>
+			<view class="listrecord c-p-18" v-for="item in viewList" :key='item.id'>
 				<view class="coreshop-ff chuany-bradius20">
-					<view
+					<view @click='jumpWorkDetail(item)'
 						class="bgblue c-p-l-18 c-p-r-18 c-p-t-10 c-p-b-10 chuany-flex chuany-justify-between chuany-font30">
 						<text class=''>
 							鏃ユ湡锛歿{$util.formatDate(item.workDate)}}
@@ -49,8 +49,11 @@
 								<text>
 									鏁伴噺锛�
 								</text>
-								<up-input style="padding: 0;" size='mini' border="surround"
-									v-model="workCount"></up-input>
+								<up-input v-if="item.isShenPiName!=='宸茬粨绠�'" style="padding: 0;" size='mini'
+									border="surround"
+									@blur='(val) => {item.todaySalary=$util.roundToTwo(item.workCount*item.workPrice)}'
+									v-model="item.workCount"></up-input>
+								<text v-else>{{item.workCount}}</text>
 							</view>
 							<view class="chuany-width50 c-p-t-14">
 								<text>
@@ -60,7 +63,8 @@
 							<view class="chuany-width50 c-p-t-14">
 								<view class="chuany-width10">
 									<up-button class="button-layout__item" text="纭" size="mini"
-										@click.stop='saveDakaDetail(item)' type="warning"></up-button>
+										v-if="item.isShenPiName!=='宸茬粨绠�'" @click.stop='saveDakaDetailCompany(item)'
+										type="warning"></up-button>
 								</view>
 							</view>
 						</view>
@@ -105,6 +109,7 @@
 			this.pageSize = 20
 			this.wordDate = ''
 			this.isJieSuan = ''
+			this.loadStatus = 'loadmore'
 			this.PostMyComDakaListPage();
 		},
 		methods: {
@@ -112,8 +117,8 @@
 				this.isJieSuan = val
 				this.PostMyComDakaListPage()
 			},
-			saveDakaDetail(item) {
-				if (item.workerType == 1 && this.workCount) {
+			saveDakaDetailCompany(item) {
+				if (item.workerType == 1 && !item.workCount) {
 					this.$util.showToast({
 						title: '璇峰~鍐欐暟閲忥紒',
 						icon: 'error'
@@ -125,11 +130,17 @@
 					workTime: item.workTime, //宸ヤ綔鏃堕暱
 					todaySalary: item.todaySalary //褰撴棩宸ヨ祫
 				}
-				if (this.workCount) {
-					obj.workCount = this.workCount
+				if (item.workCount) {
+					obj.workCount = item.workCount
 				}
-				this.$api.saveDakaDetail(obj).then(res => {
-					console.log(res, '----');
+				this.$api.saveDakaDetailCompany(obj).then(res => {
+					if (res.code == 1) {
+						this.$util.showToast({
+							title: '纭鎴愬姛锛�',
+							icon: 'success'
+						})
+						this.PostMyComDakaListPage();
+					}
 				})
 			},
 			PostMyComDakaListPage() {
@@ -146,10 +157,10 @@
 							this.isJieSuan = ''
 							break;
 						case 1:
-							this.isJieSuan = true
+							this.isJieSuan = false
 							break;
 						case 2:
-							this.isJieSuan = false
+							this.isJieSuan = true
 							break;
 					}
 					data.isJieSuan = this.isJieSuan
@@ -182,7 +193,7 @@
 			},
 			jumpWorkDetail(item) {
 				uni.navigateTo({
-					url: `/pages/checkin/workdetail?id=${item.orderBiddingDetailId}`
+					url: `/pages/company/record?id=${item.orderBiddingDetailId}`
 				})
 			}
 		}
diff --git a/src/pages/company/record.vue b/src/pages/company/record.vue
new file mode 100644
index 0000000..1d2684d
--- /dev/null
+++ b/src/pages/company/record.vue
@@ -0,0 +1,233 @@
+<template>
+	<view class="">
+		<view class="coreshop-ff">
+			<up-list>
+				<up-list-item>
+					<up-cell :title="workerInfo.userWorker.name">
+						<template #icon>
+							<up-avatar shape="square" size="35" :src="workerInfo.avatar"
+								customStyle="margin: -3px 5px -3px 0"></up-avatar>
+						</template>
+					</up-cell>
+				</up-list-item>
+				<view class="c-p-20">
+					<view class="chuany-flex chuany-justify-between chuany-flex-wrap">
+						<text class="chuany-font34 chuany-text-bold">
+							{{dakaList.orderName}}
+						</text>
+						<text class="">
+							鏃ユ湡锛歿{$util.formatDate(dakaList.workDate)}}
+						</text>
+					</view>
+				</view>
+				<view class="c-p-20">
+					<view class="">
+						<text class="">
+							鎵撳崱璁板綍锛�
+						</text>
+						<view class="chuany-flex chuany-justify-evenly chuany-flex-wrap c-p-t-20">
+							<view
+								class="chuany-flex chuany-flex-direction chuany-align-center chuany-justify-around textclo chuany-font24 c-p-b-10 daka"
+								:key="index" v-for="(item,index) in dakaList.orderBiddingDetailCheck">
+								<up-avatar shape="square" size="56" :src="item.checkPhoto"
+									@click="previewImage(item.checkPhoto)"></up-avatar>
+								<view class="step_item">
+									<up-icon name="checkmark-circle-fill" :color="item.checktime?'#2979ff':'#e9e8e8'"
+										size="22"></up-icon>
+									<view class="line" :class="item.checkPhoto?'line-active':''"
+										v-if="index!==dakaList.length-1&&index%2==0">
+									</view>
+								</view>
+								<text>{{item.checktime?'宸叉墦鍗�':'鏈墦鍗�'}}</text>
+								<text
+									:class="$util.formatDate(item.checktime,true)=='-'?'core-opa':''">{{$util.formatDate(item.checktime,true)}}</text>
+							</view>
+						</view>
+					</view>
+				</view>
+				<up-cell title="宸ヤ綔鏃堕暱" :border='false'>
+					<template #right-icon>
+						{{dakaList.workTime}} 灏忔椂
+					</template>
+				</up-cell>
+				<up-cell title="鏂瑰紡" :border='false'>
+					<template #right-icon>
+						{{dakaList.workerTypeName}}
+					</template>
+				</up-cell>
+				<up-cell title="宸ヤ环" :border='false'>
+					<template #right-icon>
+						{{dakaList.workPrice}} {{dakaList.workerType==0?'鍏�/灏忔椂':'鍏�/浠�'}}
+					</template>
+				</up-cell>
+				<up-cell title="鏁伴噺" :border='false' v-if="dakaList.workerType==1">
+					<template #right-icon v-if="dakaList.isShenPiName!=='宸茬粨绠�'">
+						<up-input v-model="dakaList.workCount"
+							@blur='(val) => {dakaList.todaySalary=$util.roundToTwo(dakaList.workCount*dakaList.workPrice)}'
+							border="none" placeholder="璇峰~鍐欐暟閲�"></up-input>
+					</template>
+					<template #value v-else>
+						{{dakaList.workCount}}
+					</template>
+				</up-cell>
+				<up-cell title="宸ヨ祫" :border='false'>
+					<template #right-icon>
+						{{dakaList.todaySalary}} 鍏�
+					</template>
+				</up-cell>
+				<!-- <view class="stepwit">
+					<tem-steps></tem-steps>
+				</view> -->
+			</up-list>
+			<view class="tabbtns">
+				<up-button color='#fece01' class="text-69" text="纭" @click="saveDakaDetailCompany"
+					v-if="dakaList.isShenPiName!=='宸茬粨绠�'"></up-button>
+			</view>
+		</view>
+	</view>
+</template>
+
+<script>
+	export default {
+		data() {
+			return {
+				orderBiddingDetailId: '',
+				dakaList: {},
+				workCount: '',
+				confirmObj: {
+					orderBiddingDetailId: '', //鎷涘伐鎵撳崱Id
+					workTime: '', //宸ヤ綔鏃堕暱
+					workCount: '', //璁′欢鏁伴噺
+					todaySalary: '' //褰撴棩宸ヨ祫
+				},
+				workerInfo: ''
+			}
+		},
+		onLoad(options) {
+			this.orderBiddingDetailId = options.id
+			this.getDakaDetail(this.orderBiddingDetailId)
+		},
+		methods: {
+			getWorkerInfo(id) {
+				this.$api.getUserId(id).then(res => {
+					this.workerInfo = res.data
+				})
+			},
+			previewImage(url) {
+				uni.previewImage({
+					urls: [url]
+				})
+			},
+			getDakaDetail(id) {
+				this.$api.getDakaDetail({
+					orderBiddingDetailId: id
+				}).then(res => {
+					this.dakaList = res.data
+					this.dakaList.workCount = res.data.workCount
+					this.getWorkerInfo(res.data.workerUserId)
+					if (this.dakaList.orderBiddingDetailCheck.length == 0) {
+						this.dakaList.orderBiddingDetailCheck.length = 2
+					}
+					if (this.dakaList.orderBiddingDetailCheck.length > 6) {
+						this.dakaList.orderBiddingDetailCheck.length = 6
+					}
+					if (this.dakaList.orderBiddingDetailCheck.length % 2 !== 0) {
+						this.dakaList.orderBiddingDetailCheck.push({})
+					}
+					console.log(res, '鎵撳崱');
+				})
+			},
+			saveDakaDetailCompany() {
+				if (this.dakaList.workerType == 1 && !this.dakaList.workCount) {
+					this.$util.showToast({
+						title: '璇峰~鍐欐暟閲忥紒',
+						icon: 'error'
+					})
+					return
+				}
+				let obj = {
+					orderBiddingDetailId: this.dakaList.orderBiddingDetailId, //鎷涘伐鎵撳崱Id
+					workTime: this.dakaList.workTime, //宸ヤ綔鏃堕暱
+					todaySalary: this.dakaList.todaySalary //褰撴棩宸ヨ祫
+				}
+				if (this.dakaList.workCount) {
+					obj.workCount = this.dakaList.workCount
+				}
+				this.$api.saveDakaDetailCompany(obj).then(res => {
+					if (res.code == 1) {
+						this.$util.showToast({
+							title: '纭鎴愬姛锛�',
+							icon: 'success'
+						})
+					}
+					console.log(res, '----');
+				})
+			},
+		}
+	}
+</script>
+<style lang='scss'>
+	.list {
+		background-color: #fff;
+		padding: 30rpx 30rpx 0 30rpx;
+	}
+
+	.content {
+		height: 430rpx;
+		width: 100%;
+		background-color: #fff;
+		border-radius: 20rpx;
+		/* margin: 30rpx 30rpx 0 30rpx; */
+		box-shadow: 0rpx 4rpx 12rpx 3rpx rgba(85, 85, 85, 0.10);
+	}
+
+	.bgblue {
+		background-color: #4e96f5;
+		border-radius: 20rpx 20rpx 0 0;
+		color: #fff;
+	}
+
+	.redcla {
+		color: #f05348;
+	}
+
+	.textclo {
+		color: #606266;
+	}
+
+	.stepwit {
+		width: 50%;
+		margin: 0 auto
+	}
+
+
+
+	.daka {
+		width: 260rpx;
+		height: 230rpx;
+	}
+
+	.step_item {
+		position: relative;
+		/* width: 144rpx; */
+		display: flex;
+
+		.line {
+			position: absolute;
+			top: 17rpx;
+			left: 35rpx;
+			content: "";
+			height: 4rpx;
+			width: 310rpx;
+			background-color: #e9e8e8;
+		}
+
+		.line-active {
+			background-color: #2979ff;
+		}
+	}
+
+	.u-cell__body {
+		padding: 6px 15px !important;
+	}
+</style>
\ No newline at end of file
diff --git a/src/pages/income/income.vue b/src/pages/income/income.vue
new file mode 100644
index 0000000..619016b
--- /dev/null
+++ b/src/pages/income/income.vue
@@ -0,0 +1,142 @@
+<template>
+	<view class="full-page">
+		<view class="" v-if="imcomeInfo&&imcomeInfo.length>0">
+			<view class="money_bag">
+				<up-cell :value="`${item.yiTiXianJine} 鍏僠" :title="item.zhiChuShouRuName" :label="item.remark"
+					v-for="(item,index) in imcomeInfo"></up-cell>
+			</view>
+			<up-loadmore :status="loadStatus" />
+		</view>
+		<view class="tool_content" v-else>
+			<up-empty mode="list" icon="http://cdn.uviewui.com/uview/empty/list.png">
+			</up-empty>
+		</view>
+	</view>
+</template>
+
+<script>
+	export default {
+		onLoad() {
+			let that = this
+			that.identity = this.$db.get('identity')
+		},
+		data() {
+			return {
+				identity: '',
+				imcomeInfo: null,
+				pageIndex: 1,
+				pageSize: 20,
+				loadStatus: 'loadmore'
+			}
+		},
+		onLoad() {
+			this.PostMyTiXianDetailListPage()
+		},
+		onReachBottom() {
+			if (this.loadStatus != 'nomore') {
+				this.PostMyTiXianDetailListPage();
+			}
+		},
+		onPullDownRefresh() {
+			this.pageIndex = 1
+			this.pageSize = 20
+			this.loadStatus = 'loadmore'
+			this.PostMyTiXianDetailListPage();
+		},
+		methods: {
+			PostMyTiXianDetailListPage() {
+				let obj = {
+					pageIndex: this.pageIndex,
+					pageSize: this.pageSize
+				}
+				this.$api.PostMyTiXianDetailListPage(obj).then(res => {
+					this.imcomeInfo = res.data.items
+					if (res.code == 1) {
+						if (this.pageIndex == 1) {
+							this.imcomeInfo = res.data.items
+						} else {
+							this.imcomeInfo.concat(...res.data.items)
+						}
+						console.log(this.imcomeInfo, this.imcomeInfo.length, 'this.viewList');
+						// totalPages.value = res.data.totalCount
+						// 鏍规嵁count鏁伴噺鍒ゆ柇鏄惁杩樻湁鏁版嵁
+						if (res.data.totalCount > this.imcomeInfo.length) {
+							this.loadStatus = 'loadmore'
+							this.pageIndex++
+						} else {
+							// 鏁版嵁宸插姞杞藉畬姣�
+							this.loadStatus = 'nomore'
+						}
+					}
+				})
+			}
+		}
+	}
+</script>
+
+<style lang="scss">
+	.content {
+		width: 100%;
+		height: 390rpx;
+		background-color: #fed244;
+		box-sizing: border-box;
+		padding: 50rpx 22rpx 0 22rpx;
+
+		.balance {
+			width: 100%;
+			height: 100%;
+			box-sizing: border-box;
+			background-color: #fff;
+			border-radius: 20rpx 20rpx 0 0;
+			padding: 30rpx;
+
+			.header {
+				width: 100%;
+				height: 85%;
+				box-sizing: border-box;
+				border: 1px solid #eeeff4;
+				border-radius: 15rpx;
+				padding: 25rpx;
+				background-image: linear-gradient(to bottom, #f4f5fc, #ffffff);
+
+				.left {}
+
+				.right {
+					width: 130rpx;
+				}
+			}
+		}
+	}
+
+
+	.money_bag {
+		background: #fff;
+		border-radius: 16rpx;
+		margin-top: 30rpx;
+		// padding: 20rpx 30rpx;
+		position: relative;
+		// top: 25rpx;
+		z-index: 2;
+	}
+
+	.tool_wrap {
+		.tool_title {
+			padding: 30rpx;
+			border-bottom: 2rpx solid #eee;
+
+			.title {
+				color: #333;
+				font-size: 32rpx;
+				font-weight: 700;
+			}
+
+			.title_right {
+				color: #939499;
+			}
+		}
+
+		.tool_content {
+			padding: 30rpx 0;
+		}
+	}
+</style>
\ No newline at end of file
diff --git a/src/pages/index/index.vue b/src/pages/index/index.vue
index be995d8..7f7bbd0 100644
--- a/src/pages/index/index.vue
+++ b/src/pages/index/index.vue
@@ -2,15 +2,19 @@
 	<view class="full-page">
 		<up-sticky bgColor="#fff">
 			<view class="coreshop-ff c-p-10">
-				<up-search placeholder="璇风偣鍑婚�夋嫨鏃ユ湡" @clear='clear' @clickIcon='clickTime' @custom='search'
-					v-model="workTime" search-icon="calendar" @search='search'></up-search>
+				<!-- <up-search placeholder="璇风偣鍑婚�夋嫨鏃ユ湡" @clear='clear' @clickIcon='clickTime' @custom='search'
+					v-model="workTime" search-icon="calendar" @search='search'></up-search> -->
+				<up-search placeholder="璇疯緭鍏ュ伐浣滃悕绉�" @clear='clear' @clickIcon='clickTime' @custom='search'
+					v-model="state.orderName" @search='search'></up-search>
 			</view>
 		</up-sticky>
 		<scroll-view enable-flex="true">
 			<view class="list chuany-flex chuany-flex-direction chuany-align-center c-p-b-30 "
 				v-if="listO.orderList&&listO.orderList.length>0">
-				<view class="content c-p-b-18" v-for="(item,index) in listO.orderList" @click='toDetail(item.id)' :key='item.id'>
-					<view class="bgblue c-p-l-18 c-p-r-18 c-p-t-10 c-p-b-10 chuany-flex chuany-justify-between chuany-font30">
+				<view class="content c-p-b-18" v-for="(item,index) in listO.orderList" @click='toDetail(item.id)'
+					:key='item.id'>
+					<view
+						class="bgblue c-p-l-18 c-p-r-18 c-p-t-10 c-p-b-10 chuany-flex chuany-justify-between chuany-font30">
 						<view class="chuany-flex chuany-flex-direction">
 							<text class=''>
 								{{$util.formatDate(item.startTime)}}
@@ -84,20 +88,22 @@
 	const state = reactive({
 		pageIndex: 1,
 		pageSize: 20,
+		orderName: ''
 	})
 	let listO = reactive({
 		orderList: []
 	})
 	const search = (index) => {
-		console.log(index, '------鈥�');
-		if (index == 0) {
-			PostListPage()
-		} else {
-			PostListPage(index - 1)
-		}
-
+		PostListPage()
+	}
+	const changePicker = (val) => {
+		console.log(val);
+		workTime.value = val.startDate.result + '鑷�' + val.endDate.result
+		state.wordStartTime = new Date(val.startDate.result) //宸ヤ綔寮�濮嬫椂闂�
+		state.wordEndTime = new Date(val.endDate.result)
 	}
 	const clear = () => {
+		state.orderName = ''
 		state.wordStartTime = ""
 		state.wordEndTime = ""
 	}
@@ -105,14 +111,6 @@
 		datePickerShow.value = !datePickerShow.value
 	}
 	let loadStatus = ref('loadmore')
-	// 鍒涘缓鍝嶅簲寮忔暟鎹�  
-	const list1 = reactive([{
-			name: '鏂颁换鍔�'
-		},
-		{
-			name: '鎴戠殑璁㈠崟'
-		},
-	]);
 	onReachBottom(() => {
 		if (loadStatus.value != 'nomore') {
 			PostListPage();
@@ -122,6 +120,7 @@
 	onPullDownRefresh(() => {
 		state.pageIndex = 1
 		state.pageSize = 20
+		loadStatus.value = 'loadmore'
 		PostListPage();
 	})
 	onLoad(() => {
@@ -135,6 +134,9 @@
 		if (orderStatus) {
 			data.orderStatus = orderStatus
 		}
+		if(state.orderName){
+			data.orderName = state.orderName
+		}
 		loadStatus.value = 'loading';
 		$api.PostListPage(data).then(res => {
 			if (res.code == 1) {
diff --git a/src/pages/login/index.vue b/src/pages/login/index.vue
index 278ce7a..e55ea4d 100644
--- a/src/pages/login/index.vue
+++ b/src/pages/login/index.vue
@@ -20,8 +20,8 @@
 						<label>
 							<checkbox value="1" :checked="isChecked" color="#fece01" style="transform:scale(0.7)" />
 							宸查槄璇诲苟鍚屾剰浠ヤ笅鍗忚
-							<text class="color-base-text" @click.stop="openPopup(1)">銆婄敤鎴锋湇鍔″崗璁��</text>鍜� <text
-								class="color-base-text" @click.stop="openPopup(2)">銆婇殣绉佹斂绛栥��</text>
+							<text class="color-base-text" @click.stop="toArticle(1)">銆婄敤鎴锋湇鍔″崗璁��</text>
+							<!-- 鍜� <text class="color-base-text" @click.stop="toArticle(2)">銆婇殣绉佹斂绛栥��</text> -->
 						</label>
 					</view>
 				</checkbox-group>
@@ -88,6 +88,7 @@
 									title: "鐧诲綍鎴愬姛",
 									icon: "success"
 								})
+								
 								uni.setStorage({
 									key: 'uid',
 									data: res.data.id,
@@ -143,10 +144,17 @@
 			}
 		},
 		methods: {
-			openPopup(type) {
-				this.$util.redirectTo('/otherPages/member/webView/webView', {
-					link: type
-				})
+			toArticle(type) {
+				if(type==1){
+					uni.navigateTo({
+						url:'/pages/article/article'
+					})
+				}else{
+					uni.navigateTo({
+						url:'/pages/article/privacy'
+					})
+				}
+				
 			},
 			changeAgree(e) {
 				console.log(e)
@@ -184,6 +192,9 @@
 							this.$api.CreateUser(obj).then(result => {
 								if (result.code == 1) {
 									this.$db.set('userToken', result.data.accessToken);
+									this.$api.getUser().then(res => {
+										this.$db.set('userInfo', JSON.stringify(res.data))
+									})
 									this.$util.redirectTo(
 										'/pages/index/index', {},
 										'tabbar')
diff --git a/src/pages/mine/index.vue b/src/pages/mine/index.vue
index 0384180..317d6d9 100644
--- a/src/pages/mine/index.vue
+++ b/src/pages/mine/index.vue
@@ -3,9 +3,8 @@
 		<view class="header">
 			<view class="header-img">
 				<view class="header-image-left" @click='tologin'>
-					<image lazyLoad @tap="chooseImage" data-ptpid="4c7f-1f6c-b145-b80f"
-						:src="avatarUrl + '?imageView2/0/w/180'" v-if="avatarUrl"></image>
-					<view class="header-name">{{ userName || (isLogin ? '鏆傛棤灏忎富淇℃伅' : '鐧诲綍寮�鍚禋閽变箣鏃呭摝') }}</view>
+					<up-avatar :src="userInfo.avatar" shape="circle" size='60'></up-avatar>
+					<view class="header-name">{{ userInfo.nickname || (isLogin ? '鏆傛棤灏忎富淇℃伅' : '鐧诲綍寮�鍚禋閽变箣鏃呭摝') }}</view>
 				</view>
 				<view @tap="changRole" class="header-image-right chuany-flex chuany-align-center chuany-justify-center"
 					data-ptpid="e758-138d-b914-343f">
@@ -15,7 +14,7 @@
 			</view>
 			<view class="num-box">
 				<view @tap="goWallet" class="num-item" data-ptpid="ef57-17f4-bbea-280f">
-					<view class="num-bold">{{ money }}鍏�</view>
+					<view class="num-bold">{{ balance }}鍏�</view>
 					<view class="num-text">
 						<text class="c-m-r-10">{{ identity=='enterprise' ? '浼佷笟浣欓' : '绔嬪嵆鎻愮幇' }}</text>
 						<up-icon name="arrow-right-double"></up-icon>
@@ -47,12 +46,18 @@
 							鎴戠殑浼佷笟
 						</view>
 					</view>
-					<view class="tool_item" @click="toPage('/otherPages/member/sendCompany/sendCompany')">
+					<view class="tool_item" @click="toWorkerRecord">
+						<image src="@/static/image/record.png" mode="aspectFit" class="item_img"></image>
+						<view class="tool_label">
+							鎵撳崱璁板綍
+						</view>
+					</view>
+					<!-- <view class="tool_item" @click="toPage('/otherPages/member/sendCompany/sendCompany')">
 						<image src="@/static/image/server.png" mode="aspectFit" class="item_img"></image>
 						<view class="tool_label">
 							鏈嶅姟涓績
 						</view>
-					</view>
+					</view> -->
 				</view>
 			</view>
 		</view>
@@ -74,7 +79,6 @@
                 <view class="text">宸插畬鎴�</view>
             </view>
         </view> -->
-		<inner-banner className="mg32" :list="bannerList" ptpId="1ab7-1b95-8e0e-3b22"></inner-banner>
 		<view class="nav-box" v-if="identity=='enterprise'">
 			<view @tap="item.cb" class="nav-item" :data-index="index" data-ptpid="58ac-1481-a7d3-b98e"
 				v-for="(item, index) in navList" :key="item.name">
@@ -109,45 +113,22 @@
 </template>
 
 <script>
-	var n = ['https://qiniu-image.qtshe.com/719defaultAvatar1.png', 'https://qiniu-image.qtshe.com/719defaultAvatar2.png',
-		'https://qiniu-image.qtshe.com/719defaultAvatar3.png'
-	];
 	var app = getApp();
 	export default {
 
 		data() {
 			return {
 				identity: '',
-				money: '0.00',
-				score: 0,
-				perfectResume: false,
-				bannerList: [],
 				navList: [
-					//            {
-					//                icon: 'iconmy_collect_normal',
-					//                name: '鎴戠殑鏀惰棌',
-					//                num: 0,
-					//                cb: function () {
-					//                    uni.navigateTo({
-					//                        url: '/pages/collect/collect'
-					//                    });
-					//                }
-					//            },
-
-					//            {
-					//                icon: 'iconmy_new_normal',
-					//                name: '鏈嶅姟涓績',
-					//                cb: function () {
-					// 	uni.navigateTo({
-					// 		url: '/pages/webview/webview?targetUrl=' + encodeURIComponent(l + '/service/index')
-					// 	});
-					// }
-					//            },
-					// {
+					// 	{
 					// 	icon: 'icon-huabanfuben',
-					// 	name: '鐢ㄦ埛璁剧疆',
-					// 	cb: this.pushImg
-					// }
+					// 	name: '宸ヤ汉鎵撳崱璁板綍',
+					// 	cb: function() {
+					// 		uni.navigateTo({
+					// 			url: '/pages/company/index'
+					// 		});
+					// 	}
+					// },
 				],
 				navList1: [{
 						icon: 'icon-dingdan',
@@ -158,7 +139,6 @@
 							});
 						}
 					},
-
 					{
 						icon: 'icon-fuwutuandui',
 						name: '宸ヤ綔璁板綍',
@@ -168,48 +148,37 @@
 							});
 						}
 					},
-					// {
-					// 	icon: 'icon-huabanfuben',
-					// 	name: '鐢ㄦ埛璁剧疆',
-					// 	cb: function() {
-
-					// 	}
-					// }
 				],
-				userApplyStatistics: {
-					allCount: 0,
-					hasApplyCount: 0,
-					applyOngoingCount: 0,
-					applySuccessCount: 0
-				},
-				isDialog: false,
-				signInfo: {
-					attendanceNumber: '',
-					attendanceIntegralList: '',
-					attendanceTotal: '',
-					beansList: ''
-				},
-				beansList: [5, 5, 5, 5, 50, 5, 100],
-				attendance: false,
-				userName: '',
-				avatarUrl: 'https://qiniu-image.qtshe.com/719defaultAvatar2.png',
 				isLogin: false,
+				userInfo: {},
+				balance: '0.00'
 			};
 		},
 		onLoad: function() {
+
+
+		},
+		onShow: function() {
 			let that = this
-			uni.hideShareMenu();
+			this.userInfo = this.$db.get('userInfo') ? JSON.parse(this.$db.get('userInfo')) : {}
+			this.token = this.$db.get('userToken') ? this.$db.get('userToken') : ''
 			uni.getStorage({
 				key: 'identity',
 				success: function(res) {
 					that.identity = res.data
+					if (res.data == 'worker') {
+						that.balance = that.$common.moneySub(that.userInfo.userWorker.tiXianZonge, that
+							.userInfo.userWorker.yiTiXianJine)
+					} else {
+						console.log(that.identity, that.userInfo.userWorker.tiXianZonge,
+							'userInfo.userWorker.tiXianZonge');
+						that.balance = that.userInfo.userCompany.chongZhiYue ? that.userInfo.userCompany
+							.chongZhiYue : '0.00'
+					}
 				}
 			});
-		},
-		onShow: function() {
-			this.resourceBanner();
-
-			this.token = this.$db.get('userToken') ? this.$db.get('userToken') : ''
+			// this.userInfo = this.$db.get('userInfo') ? JSON.parse(this.$db.get('userInfo')) : {}
+			// this.token = this.$db.get('userToken') ? this.$db.get('userToken') : ''
 			this.isLogin = this.token ? true : false;
 		},
 		onShareAppMessage: function() {
@@ -257,59 +226,34 @@
 					url: '/pages/enterprise/index'
 				})
 			},
-			checkToken: function(t) {},
-
-			loginOutInit: function() {},
-
-			getQtbaoMoney: function() {},
-
-			checkNumber: function(t) {},
-
-			getSignInfo: function(t) {},
-
-			changRole: function() {
+			toWorkerRecord() {
+				uni.navigateTo({
+					url: '/pages/company/index'
+				});
+			},
+			changRole() {
 				this.identity = this.identity === 'enterprise' ? 'worker' : 'enterprise'
 				console.log(this.identity, 'this.identity');
 				uni.setStorage({
 					key: 'identity',
 					data: this.identity,
 				});
+				if (this.identity == 'worker') {
+					this.balance = this.$common.moneySub(this.userInfo.userWorker.tiXianZonge, this.userInfo.userWorker
+						.yiTiXianJine)
+				} else {
+					this.balance = this.userInfo.userCompany.chongZhiYue ? this.userInfo.userCompany.chongZhiYue :
+						'0.00'
+				}
 			},
-
-			handleReset: function() {},
-
-			resourceBanner: function() {},
-
-			navTap: function(t) {},
-
-			loginSuccess: function() {},
-
-			chooseImage: function(t) {},
-
-			getImage: function(t) {},
-
-			goWallet: function() {
+			goWallet() {
 				uni.navigateTo({
 					url: '/pages/wallet/index',
-					fail: function(err) {
+					fail(err) {
 						console.log(err);
 					}
 				});
 			},
-
-			skipToQtsbean: function() {},
-
-			gotoMyJob: function(t) {},
-
-			// 璺宠浆鍒扮畝鍘嗗畬鍠勯〉闈�
-			skipToResume: function() {
-				uni.navigateTo({
-					url: '/mine/resume/resume',
-					fail: function(err) {
-						console.log(err);
-					}
-				});
-			}
 		}
 	};
 </script>
diff --git a/src/pages/mine/mine.vue b/src/pages/mine/mine.vue
index c86ad67..52ee4d2 100644
--- a/src/pages/mine/mine.vue
+++ b/src/pages/mine/mine.vue
@@ -7,24 +7,31 @@
 			</button>
 
 		</view>
-		<fui-list :topBorder='false'>
-			<fui-list-cell arrow :bottomBorder='false' :padding="['20rpx', '32rpx', '20rpx', '32rpx']">
-				<view class="fui-list__item">
-					<text>鏄电О</text>
-					<text class="fui-text__explain">{{userInfo.nickname}}</text>
-					<!-- <input type="nickname" class="fui-text__explain weui-input" placeholder="璇疯緭鍏ユ樀绉�" /> -->
-				</view>
-			</fui-list-cell>
-			<fui-list-cell arrow :bottomBorder='false' :padding="['20rpx', '32rpx', '20rpx', '32rpx']">
-				<view class="fui-list__item">
-					<text>鎵嬫満鍙�</text>
-					<text class="fui-text__explain">{{userInfo.phone}}</text>
-				</view>
-			</fui-list-cell>
-			<fui-list-cell arrow @click="goApply" :bottomBorder='false' :padding="['20rpx', '32rpx', '20rpx', '32rpx']">
-				<text>鐢宠鎺ュ崟</text>
-			</fui-list-cell>
-		</fui-list>
+		<up-cell title="鏄电О" :border="false">
+			<template #value>
+				<up-form labelPosition="left" :model="userInfo" ref="formRef" labelWidth='90' v-if="showEdit">
+					<up-form-item prop="enterpriseInfo.businessLicense" ref="item1">
+						<up-input v-model="userInfo.nickname" type="nickname" @blur="blurNickName" border="none"
+							placeholder="璇疯緭鍏ユ樀绉�" :readonly='!showEdit'>
+							<template #suffix>
+								<up-button @tap="saveUserNikename" text="淇濆瓨" type="success" form-type="submit"
+									size="mini"></up-button>
+							</template>
+							<!-- <template #suffix v-else>
+								<up-icon name="edit-pen" @click='isShow'></up-icon>
+							</template> -->
+						</up-input>
+						
+					</up-form-item>
+				</up-form>
+				<text v-else>{{userInfo.nickname}}</text>
+			</template>
+			<template #right-icon v-if='!showEdit'>
+				<up-icon name="edit-pen" @click='isShow'></up-icon>
+			</template>
+		</up-cell>
+		<up-cell title="鎵嬫満鍙�" :value="userInfo.phone" isLink :border="false"></up-cell>
+		<up-cell @click="goApply" title="鐢宠鎺ュ崟" isLink :border="false"></up-cell>
 		<!-- <view class="tabbtns">
 			<up-button color='#fece01' class="text-69" text="淇濆瓨" @click=''></up-button>
 		</view> -->
@@ -32,6 +39,9 @@
 </template>
 
 <script setup>
+	import {
+		apiBaseUrl
+	} from '@/common/setting/constVarsHelper.js';
 	import {
 		onLoad,
 		onShow
@@ -45,7 +55,8 @@
 	const {
 		$upload,
 		$api,
-		$db
+		$db,
+		$util
 	} = getCurrentInstance().appContext.config.globalProperties
 	onLoad(() => {
 		// getUser()
@@ -60,24 +71,97 @@
 		phone: '',
 		userWorker: false
 	})
+	let showEdit = ref(false)
 	// let src = "http://pic2.sc.chinaz.com/Files/pic/pic9/202002/hpic2119_s.jpg"
 	const goApply = () => {
 		uni.navigateTo({
 			url: '/pages/mine/apply'
 		});
 	}
+	const isShow = () => {
+		showEdit.value = true
+	}
 	const onChooseAvatar = (e) => {
 		const {
 			avatarUrl
 		} = e.detail
-		avatarUrlImg.value = avatarUrl
+		console.log(typeof(avatarUrl), avatarUrl, 'avatarUrl鈥�');
+		avatarUrlImg = avatarUrl
+		uploadFile(avatarUrl)
+	}
+	const uploadFile = (val) => {
+		let userToken = $db.get("userToken");
+		uni.uploadFile({
+			url: apiBaseUrl + 'api/UpFile/UpdateFile',
+			filePath: val,
+			fileType: 'image',
+			name: 'file',
+			header: {
+				'Accept': 'application/json',
+				'Content-Type': 'multipart/form-data',
+				'Authorization': 'Bearer ' + userToken
+			},
+			formData: {
+				'method': 'images.upload',
+				'upfile': val
+			},
+			success: (uploadFileRes) => {
+				//console.log("浜や簰鎴愬姛");
+				//console.log(uploadFileRes);
+				let res = JSON.parse(uploadFileRes.data);
+				let obj = {
+					Avatar: res.data
+				}
+				console.log(res.data, res, 'res.data', obj);
+				$api.saveUser(obj).then(res => {
+					if (res.code == 1) {
+						$util.showToast({
+							title: "澶村儚淇濆瓨鎴愬姛锛�",
+							icon: "success"
+						})
+						getUser()
+					}
+				})
+			},
+			fail: (error) => {
+				console.log("浜や簰澶辫触");
+				console.log(error);
+				if (error && error.response) {
+					$upload.showError(error.response);
+				}
+			},
+			complete: () => {
+				setTimeout(function() {
+						uni.hideLoading();
+					},
+					250);
+			}
+		});
 	}
 	const getUser = (e) => {
 		$api.getUser().then(res => {
 			userInfo.nickname = res.data.nickname
 			userInfo.phone = res.data.phone
+			avatarUrlImg = res.data.avatar
 			$db.set('userInfo', JSON.stringify(res.data))
 		})
+	}
+	const saveUserNikename = (val) => {
+		$api.saveUser({
+			Nickname: userInfo.nickname
+		}).then(res => {
+			if (res.code == 1) {
+				$util.showToast({
+					title: "鏄电О淇濆瓨鎴愬姛锛�",
+					icon: "success"
+				})
+				getUser()
+				showEdit.value = false
+			}
+		})
+	}
+	const blurNickName = (val) => {
+		userInfo.nickname = val
 	}
 </script>
 
@@ -110,4 +194,8 @@
 		color: #7F7F7F;
 		flex-shrink: 0;
 	}
+	
+	.u-form-item__body{
+		padding: 0 !important;
+	}
 </style>
\ No newline at end of file
diff --git a/src/pages/order/detail.vue b/src/pages/order/detail.vue
index 79fbfab..b6a5897 100644
--- a/src/pages/order/detail.vue
+++ b/src/pages/order/detail.vue
@@ -6,15 +6,14 @@
 					<view class="bgblue c-p-18 chuany-flex chuany-justify-between chuany-font30">
 						<view class="chuany-flex chuany-flex-direction">
 							<text class=''>
-								{{$util.formatDate(detailItem.wordStartTime,true)}}
+								{{$util.formatDate(startTime)}}
 							</text>
-							<text>{{$util.formatDate(detailItem.wordEndTime,true)}}</text>
 						</view>
 						<text>
 							鎷泏{detailItem.worderCounted}}/{{detailItem.worderCount}}浜�
 						</text>
 					</view>
-					<view class="c-p-18 chuany-font34">
+					<view class="c-p-l-18 c-p-b-14 c-p-t-14 c-p-r-18 chuany-font34">
 						{{detailItem.orderName}}
 					</view>
 					<!-- <view class="chuany-flex c-p-l-18">
@@ -22,10 +21,10 @@
 						</up-tag>
 					</view> -->
 					<view class="chuany-flex chuany-flex-direction">
-						<text class='c-p-18'>
+						<text class='c-p-l-18 c-p-b-14 c-p-r-18 text-69'>
 							瑕佹眰锛歿{detailItem.demand}}
 						</text>
-						<text class='c-p-l-18 c-p-b-16'>
+						<text class='c-p-l-18 c-p-b-14 c-p-r-18 text-69'>
 							鍦板潃锛歿{detailItem.worderAddress}}
 						</text>
 					</view>
@@ -48,13 +47,13 @@
 					<up-list-item v-for="(item,index) in detailItem.orderBidding" :key="item.id" @click.stop="toWorkDetail">
 						<up-cell :title="item.workerName">
 							<template #icon>
-								<up-avatar shape="square" size="35" :src="item.workerAvatar"
+								<up-avatar shape="square" size="35" :src="item.workerAvatar" @click='toWorkerDetail(item)'
 									customStyle="margin: -3px 5px -3px 0"></up-avatar>
 							</template>
-							<template #right-icon v-if="item.isSelected">
-								<up-button class="button-layout__item" text="鏌ョ湅" size="mini" type="primary" @click="toView"></up-button>
-							</template>
-							<template #right-icon v-else>
+							<!-- <template #right-icon v-if="item.isSelected">
+								<up-button class="button-layout__item" text="鏌ョ湅" size="mini" type="primary" @click="toView(item)"></up-button>
+							</template> -->
+							<template #right-icon>
 								<up-button class="button-layout__item" text="纭" size="mini" type="success"
 									@click="selectBtn(item)"></up-button>
 							</template>
@@ -124,12 +123,12 @@
 	const detailItem = ref({})
 	let orderid = ref('')
 	onLoad((option) => {
-		console.log(option,'========');
 		let {
 			orderid
 		} = option
 		getOrder(orderid)
-		orderid.value = orderid
+		orderid = orderid
+		console.log(option,'========orderid',orderid);
 		// detailItem.value = JSON.parse($db.get('detailItem'))
 	})
 	let state = reactive({
@@ -142,9 +141,14 @@
 	const change = (e) => {
 		state.currentIdex = e.index
 	}
-	const toView = (e) => {
+	const toView = (item) => {
 		uni.navigateTo({
-			url: '/pages/company/index'
+			url: `/pages/company/index?workerid=${item.WorkerUserId}&workname=${item.WorkerName}`
+		})
+	}
+	const toWorkerDetail = (item)=>{
+		uni.navigateTo({
+			url: `/pages/worker/worker?workerid=${item.workerUserId}`
 		})
 	}
 	const toWorkDetail = (e) => {
@@ -159,7 +163,7 @@
 					title: "纭鎴愬姛锛�",
 					icon: "success"
 				})
-				getOrder(orderid.value)
+				getOrder(orderid)
 			}
 		})
 	}
diff --git a/src/pages/order/myorder.vue b/src/pages/order/myorder.vue
index f0c8a39..e6800b9 100644
--- a/src/pages/order/myorder.vue
+++ b/src/pages/order/myorder.vue
@@ -97,6 +97,7 @@
 	onPullDownRefresh(() => {
 		state.pageIndex = 1
 		state.pageSize = 20
+		loadStatus.value = 'loadmore'
 		PostMyListPage()
 	})
 	onLoad(() => {
diff --git a/src/pages/order/order.vue b/src/pages/order/order.vue
index a2e418b..6a35a8e 100644
--- a/src/pages/order/order.vue
+++ b/src/pages/order/order.vue
@@ -2,8 +2,10 @@
 	<view>
 		<up-sticky bgColor="#fff">
 			<view class="coreshop-ff content c-p-10">
-				<up-search placeholder="璇风偣鍑婚�夋嫨鏃ユ湡" @clear='clear' @clickIcon='clickTime' @custom='search'
-					v-model="workTime" search-icon="calendar" @search='search'></up-search>
+				<!-- <up-search placeholder="璇风偣鍑婚�夋嫨鏃ユ湡" @clear='clear' @clickIcon='clickTime' @custom='search'
+					v-model="workTime" search-icon="calendar" @search='search'></up-search> -->
+				<up-search placeholder="璇疯緭鍏ュ伐浣滃悕绉�" @clear='clear' @clickIcon='clickTime' @custom='search'
+					v-model="state.orderName" @search='search'></up-search>
 			</view>
 			<!-- <up-subsection :list="list" :current="current4" activeColor="#f9ae3d"
 				@change="sectionChange"></up-subsection> -->
@@ -79,6 +81,7 @@
 	let state = reactive({
 		pageIndex: 1,
 		pageSize: 20,
+		orderName: ''
 	})
 	let workTime = ref('')
 	let datePickerShow = ref(false)
@@ -105,15 +108,10 @@
 	}
 
 	const search = (index) => {
-		console.log(index, '------鈥�');
-		if (index == 0) {
-			PostMyListPageCompany()
-		} else {
-			PostMyListPageCompany(index - 1)
-		}
-
+		PostMyListPageCompany()
 	}
 	const clear = () => {
+		state.orderName = ''
 		state.wordStartTime = ""
 		state.wordEndTime = ""
 	}
@@ -132,6 +130,9 @@
 		if (state.wordEndTime) {
 			data.wordEndTime = state.wordEndTime
 		}
+		if (state.orderName) {
+			data.orderName = state.orderName
+		}
 		loadStatus.value = 'loading';
 		$api.PostMyListPageCompany(data).then(res => {
 			console.log(res, res.code, '-----------123鈥�');
diff --git a/src/pages/template/address/addSite.vue b/src/pages/template/address/addSite.vue
deleted file mode 100644
index 67c09bd..0000000
--- a/src/pages/template/address/addSite.vue
+++ /dev/null
@@ -1,173 +0,0 @@
-<template>
-	<view class="wrap">
-		<view class="top">
-			<view class="item">
-				<view class="left">鏀惰揣浜�</view>
-				<input type="text" placeholder-class="line" placeholder="璇峰~鍐欐敹璐т汉濮撳悕" />
-			</view>
-			<view class="item">
-				<view class="left">鎵嬫満鍙风爜</view>
-				<input type="text" placeholder-class="line" placeholder="璇峰~鍐欐敹璐т汉鎵嬫満鍙�" />
-			</view>
-			<view class="item" @tap="showRegionPicker">
-				<view class="left">鎵�鍦ㄥ湴鍖�</view>
-				<input disabled type="text" placeholder-class="line" placeholder="鐪佸競鍖哄幙銆佷埂闀囩瓑" />
-			</view>
-			<view class="item address">
-				<view class="left">璇︾粏鍦板潃</view>
-				<textarea type="text" placeholder-class="line" placeholder="琛楅亾銆佹ゼ鐗岀瓑" />
-			</view>
-			<!-- <view class="site-clipboard">
-				<textarea placeholder-class="line" value="" placeholder="绮樿创鏂囨湰,鍙嚜鍔ㄨ瘑鍒鍚嶅拰鍦板潃绛�" />
-				<view class="clipboard">
-					鍦板潃绮樿创鏉�
-					<up-icon name="arrow-down" class="icon" :size="20"></up-icon>
-				</view>
-			</view> -->
-		</view>
-		<view class="bottom">
-			<view class="tag">
-				<view class="left">鏍囩</view>
-				<view class="right">
-					<text class="tags">瀹�</text>
-					<text class="tags">鍏徃</text>
-					<text class="tags">瀛︽牎</text>
-					<view class="tags plus"><up-icon size="22" name="plus"></up-icon></view>
-				</view>
-			</view>
-			<view class="default">
-				<view class="left">
-					<view class="set">璁剧疆榛樿鍦板潃</view>
-					<view class="tips">鎻愰啋锛氭瘡娆′笅鍗曚細榛樿鎺ㄨ崘璇ュ湴鍧�</view>
-				</view>
-				<view class="right"><switch color="red" @change="setDefault" /></view>
-			</view>
-		</view>
-		<up-picker mode="region" ref="uPicker" v-model="show" />
-	</view>
-</template>
-
-<script>
-export default {
-	data() {
-		return {
-			show: false
-		};
-	},
-	methods: {
-		setDefault() {},
-		showRegionPicker() {
-			this.show = true;
-		}
-	}
-};
-</script>
-
-<style lang="scss" scoped>
-:v-deep(.line) {
-	color: $u-light-color;
-	font-size: 28rpx;
-}
-.wrap {
-	background-color: #f2f2f2;
-	.top {
-		background-color: #ffffff;
-		border-top: solid 2rpx $u-border-color;
-		padding: 22rpx;
-		.item {
-			display: flex;
-			font-size: 32rpx;
-			line-height: 100rpx;
-			align-items: center;
-			border-bottom: solid 2rpx $u-border-color;
-			.left {
-				width: 180rpx;
-			}
-			input {
-				text-align: left;
-			}
-		}
-		
-		.address {
-			padding: 20rpx 0;
-			textarea {
-				// width: 100%;
-				height: 150rpx;
-				background-color: #f7f7f7;
-				line-height: 60rpx;
-				margin: 40rpx auto;
-				padding: 20rpx;
-			}
-		}
-		.site-clipboard {
-			padding-right: 40rpx;
-			textarea {
-				// width: 100%;
-				height: 150rpx;
-				background-color: #f7f7f7;
-				line-height: 60rpx;
-				margin: 40rpx auto;
-				padding: 20rpx;
-			}
-			.clipboard {
-				display: flex;
-				justify-content: center;
-				align-items: center;
-				font-size: 26rpx;
-				color: $u-tips-color;
-				height: 80rpx;
-				.icon {
-					margin-top: 6rpx;
-					margin-left: 10rpx;
-				}
-			}
-		}
-	}
-	.bottom {
-		margin-top: 20rpx;
-		padding: 40rpx;
-		padding-right: 0;
-		background-color: #ffffff;
-		font-size: 28rpx;
-		.tag {
-			display: flex;
-			.left {
-				width: 160rpx;
-			}
-			.right {
-				display: flex;
-				flex-wrap: wrap;
-				.tags {
-					width: 140rpx;
-					padding: 16rpx 8rpx;
-					border: solid 2rpx $u-border-color;
-					text-align: center;
-					border-radius: 50rpx;
-					margin: 0 10rpx 20rpx;
-					display: flex;
-					font-size: 28rpx;
-					align-items: center;
-					justify-content: center;
-					color: $u-content-color;
-					line-height: 1;
-				}
-				.plus {
-					//padding: 10rpx 0;
-				}
-			}
-		}
-		.default {
-			margin-top: 50rpx;
-			display: flex;
-			justify-content: space-between;
-			border-bottom: solid 2rpx $u-border-color;
-			line-height: 64rpx;
-			.tips {
-				font-size: 24rpx;
-			}
-			.right {
-			}
-		}
-	}
-}
-</style>
diff --git a/src/pages/template/address/index.vue b/src/pages/template/address/index.vue
deleted file mode 100644
index c6b2568..0000000
--- a/src/pages/template/address/index.vue
+++ /dev/null
@@ -1,139 +0,0 @@
-<template>
-	<view>
-		<view class="item" v-for="(res, index) in siteList" :key="res.id">
-			<view class="top">
-				<view class="name">{{ res.name }}</view>
-				<view class="phone">{{ res.phone }}</view>
-				<view class="tag">
-					<text v-for="(item, index) in res.tag" :key="index" :class="{red:item.tagText=='榛樿'}">{{ item.tagText }}</text>
-				</view>
-			</view>
-			<view class="bottom">
-				骞夸笢鐪佹繁鍦冲競瀹濆畨鍖� 鑷敱璺�66鍙�
-				<up-icon name="edit-pen" :size="40" color="#999999"></up-icon>
-			</view>
-		</view>
-		<view class="addSite" @tap="toAddSite">
-			<view class="add">
-				<up-icon name="plus" color="#ffffff" class="icon" :size="30"></up-icon>鏂板缓鏀惰揣鍦板潃
-			</view>
-		</view>
-	</view>
-</template>
-
-<script>
-export default {
-	data() {
-		return {
-			siteList: []
-		};
-	},
-	onLoad() {
-		this.getData();
-	},
-	methods: {
-		getData() {
-			this.siteList = [
-				{
-					id: 1,
-					name: '娓竂',
-					phone: '183****5523',
-					tag: [
-						{
-							tagText: '榛樿'
-						},
-						{
-							tagText: '瀹�'
-						}
-					],
-					site: '骞夸笢鐪佹繁鍦冲競瀹濆畨鍖� 鑷敱璺�66鍙�'
-				},
-				{
-					id: 2,
-					name: '鏉嶺X',
-					phone: '183****5555',
-					tag: [
-						{
-							tagText: '鍏徃'
-						}
-					],
-					site: '骞夸笢鐪佹繁鍦冲競瀹濆畨鍖� 缈昏韩璺痻x鍙�'
-				},
-				{
-					id: 3,
-					name: '鐜媃Y',
-					phone: '153****5555',
-					tag: [],
-					site: '骞夸笢鐪佹繁鍦冲競瀹濆畨鍖� 骞冲畨璺�13鍙�'
-				}
-			];
-		},
-		toAddSite(){
-			uni.navigateTo({
-			    url: '/pages/template/address/addSite'
-			});
-		}
-	}
-};
-</script>
-
-<style lang="scss" scoped>
-.item {
-	padding: 40rpx 20rpx;
-	.top {
-		display: flex;
-		font-weight: bold;
-		font-size: 34rpx;
-		.phone {
-			margin-left: 60rpx;
-		}
-		.tag {
-			display: flex;
-			font-weight: normal;
-			align-items: center;
-			text {
-				display: block;
-				width: 60rpx;
-				height: 34rpx;
-				line-height: 34rpx;
-				color: #ffffff;
-				font-size: 20rpx;
-				border-radius: 6rpx;
-				text-align: center;
-				margin-left: 30rpx;
-				background-color:rgb(49, 145, 253);
-			}
-			.red{
-				background-color:red
-			}
-		}
-	}
-	.bottom {
-		display: flex;
-		margin-top: 20rpx;
-		font-size: 28rpx;
-		justify-content: space-between;
-		color: #999999;
-	}
-}
-.addSite {
-	display: flex;
-	justify-content: space-around;
-	width: 600rpx;
-	line-height: 100rpx;
-	position: absolute;
-	bottom: 30rpx;
-	left: 80rpx;
-	background-color: red;
-	border-radius: 60rpx;
-	font-size: 30rpx;
-	.add{
-		display: flex;
-		align-items: center;
-		color: #ffffff;
-		.icon{
-			margin-right: 10rpx;
-		}
-	}
-}
-</style>
diff --git a/src/pages/template/citySelect/index.vue b/src/pages/template/citySelect/index.vue
deleted file mode 100644
index 3ced0e8..0000000
--- a/src/pages/template/citySelect/index.vue
+++ /dev/null
@@ -1,48 +0,0 @@
-<template>
-	<view class="u-demo">
-		<view class="u-demo-wrap">
-			<view class="u-demo-title">婕旂ず鏁堟灉</view>
-			<view class="u-demo-area">
-				<city-select v-model="value" @city-change="cityChange"></city-select>
-				<view class="u-demo-result-line">{{ input ? input : 'Picker鍊�' }}</view>
-			</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>
-				<up-button @click="value = true">鎵撳紑Picker</up-button>
-			</view>
-		</view>
-	</view>
-</template>
-
-<script>
-import citySelect from './u-city-select.vue';
-export default {
-	components: {
-		citySelect
-	},
-	data() {
-		return {
-			height: 30,
-			bgColor: this.$u.color.bgColor,
-			marginTop: 30,
-			marginBottom: 30,
-			value: false,
-			input: '',
-		};
-	},
-	methods: {
-		cityChange(e) {
-			this.input = e.province.label + '-' + e.city.label + '-' + e.area.label;
-		}
-	}
-};
-</script>
-
-<style scoped>
-	.btn-wrap {
-		margin: 100rpx 30rpx;
-	}
-</style>
diff --git a/src/pages/template/citySelect/u-city-select.vue b/src/pages/template/citySelect/u-city-select.vue
deleted file mode 100644
index f7a57ae..0000000
--- a/src/pages/template/citySelect/u-city-select.vue
+++ /dev/null
@@ -1,250 +0,0 @@
-<template>
-	<up-popup :show="modelValue" mode="bottom" :popup="false"
-		:mask="true" :closeable="true" :safe-area-inset-bottom="true"
-		close-icon-color="#ffffff" :z-index="uZIndex"
-		:maskCloseAble="maskCloseAble" @close="close">
-		<up-tabs v-if="modelValue" :list="genTabsList"
-			:scrollable="true" :current="tabsIndex" @change="tabsChange" ref="tabs"></up-tabs>
-		<view class="area-box">
-			<view class="u-flex" :class="{ 'change':isChange }">
-				<view class="area-item">
-					<view class="u-padding-10 u-bg-gray" style="height: 100%;">
-						<scroll-view :scroll-y="true" style="height: 100%">
-							<up-cell-group>
-								<up-cell v-for="(item,index) in provinces"
-									:title="item.label" :arrow="false"
-									:index="index" :key="index"
-									@click="provinceChange(index)">
-									<template v-slot:right-icon>
-										<up-icon v-if="isChooseP&&province===index"
-											size="17" name="checkbox-mark"></up-icon>
-									</template>
-								</up-cell>
-							</up-cell-group>
-						</scroll-view>
-					</view>
-				</view>
-				<view class="area-item">
-					<view class="u-padding-10 u-bg-gray" style="height: 100%;">
-						<scroll-view :scroll-y="true" style="height: 100%">
-							<up-cell-group v-if="isChooseP">
-								<up-cell v-for="(item,index) in citys"
-									:title="item.label" :arrow="false"
-									:index="index" :key="index"
-									@click="cityChange(index)">
-									<template v-slot:right-icon>
-										<up-icon v-if="isChooseC&&city===index"
-											size="17" name="checkbox-mark"></up-icon>
-									</template>
-								</up-cell>
-							</up-cell-group>
-						</scroll-view>
-					</view>
-				</view>
-				<view class="area-item">
-					<view class="u-padding-10 u-bg-gray" style="height: 100%;">
-						<scroll-view :scroll-y="true" style="height: 100%">
-							<up-cell-group v-if="isChooseC">
-								<up-cell v-for="(item,index) in areas"
-									:title="item.label" :arrow="false"
-									:index="index" :key="index"
-									@click="areaChange(index)">
-									<template v-slot:right-icon>
-										<up-icon v-if="isChooseA&&area===index"
-											size="17" name="checkbox-mark"></up-icon>
-									</template>
-								</up-cell>
-							</up-cell-group>
-						</scroll-view>
-					</view>
-				</view>
-			</view>
-		</view>
-	</up-popup>
-</template>
-
-<script>
-	import provinces from "@/common/province.js";
-	import citys from "@/common/city.js";
-	import areas from "@/common/area.js";
-	/**
-	 * city-select 鐪佸競鍖虹骇鑱旈�夋嫨鍣�
-	 * @property {String Number} z-index 寮瑰嚭鏃剁殑z-index鍊硷紙榛樿1075锛�
-	 * @property {Boolean} mask-close-able 鏄惁鍏佽閫氳繃鐐瑰嚮閬僵鍏抽棴Picker锛堥粯璁rue锛�
-	 * @property {String} default-region 榛樿閫変腑鐨勫湴鍖猴紝涓枃褰㈠紡
-	 * @property {String} default-code 榛樿閫変腑鐨勫湴鍖猴紝缂栧彿褰㈠紡
-	 */
-	export default {
-		name: 'u-city-select',
-		props: {
-			// 閫氳繃鍙屽悜缁戝畾鎺у埗缁勪欢鐨勫脊鍑轰笌鏀惰捣
-			modelValue: {
-				type: Boolean,
-				default: false
-			},
-			// 榛樿鏄剧ず鐨勫湴鍖猴紝鍙紶绫讳技["娌冲寳鐪�", "绉︾殗宀涘競", "鍖楁埓娌冲尯"]
-			defaultRegion: {
-				type: Array,
-				default () {
-					return [];
-				}
-			},
-			// 榛樿鏄剧ず鍦板尯鐨勭紪鐮侊紝defaultRegion鍜宎reaCode鍚屾椂瀛樺湪锛宎reaCode浼樺厛锛屽彲浼犵被浼糩"13", "1303", "130304"]
-			areaCode: {
-				type: Array,
-				default () {
-					return [];
-				}
-			},
-			// 鏄惁鍏佽閫氳繃鐐瑰嚮閬僵鍏抽棴Picker
-			maskCloseAble: {
-				type: Boolean,
-				default: true
-			},
-			// 寮瑰嚭鐨剒-index鍊�
-			zIndex: {
-				type: [String, Number],
-				default: 0
-			}
-		},
-		data() {
-			return {
-				cityValue: "",
-				isChooseP: false, //鏄惁宸茬粡閫夋嫨浜嗙渷
-				province: 0, //鐪佺骇涓嬫爣
-				provinces: provinces,
-				isChooseC: false, //鏄惁宸茬粡閫夋嫨浜嗗競
-				city: 0, //甯傜骇涓嬫爣
-				citys: citys[0],
-				isChooseA: false, //鏄惁宸茬粡閫夋嫨浜嗗尯
-				area: 0, //鍖虹骇涓嬫爣
-				areas: areas[0][0],
-				tabsIndex: 0,
-			}
-		},
-		mounted() {
-			this.init();
-		},
-		computed: {
-			isChange() {
-				return this.tabsIndex > 1;
-			},
-			genTabsList() {
-				let tabsList = [{
-					name: "璇烽�夋嫨"
-				}];
-				if (this.isChooseP) {
-					console.log(this.province)
-					tabsList[0]['name'] = this.provinces[this.province]['label'];
-					tabsList[1] = {
-						name: "璇烽�夋嫨"
-					};
-				}
-				if (this.isChooseC) {
-					tabsList[1]['name'] = this.citys[this.city]['label'];
-					tabsList[2] = {
-						name: "璇烽�夋嫨"
-					};
-				}
-				if (this.isChooseA) {
-					tabsList[2]['name'] = this.areas[this.area]['label'];
-				}
-				return tabsList;
-			},
-			uZIndex() {
-				// 濡傛灉鐢ㄦ埛鏈変紶閫抸-index鍊硷紝浼樺厛浣跨敤
-				return this.zIndex ? this.zIndex : this.$u.zIndex.popup;
-			}
-		},
-		emits: ['city-change'],
-		methods: {
-			init() {
-				if (this.areaCode.length == 3) {
-					this.setProvince("", this.areaCode[0]);
-					this.setCity("", this.areaCode[1]);
-					this.setArea("", this.areaCode[2]);
-				} else if (this.defaultRegion.length == 3) {
-					this.setProvince(this.defaultRegion[0], "");
-					this.setCity(this.defaultRegion[1], "");
-					this.setArea(this.defaultRegion[2], "");
-				};
-			},
-			setProvince(label = "", value = "") {
-				this.provinces.map((v, k) => {
-					if (value ? v.value == value : v.label == label) {
-						this.provinceChange(k);
-					}
-				})
-			},
-			setCity(label = "", value = "") {
-				this.citys.map((v, k) => {
-					if (value ? v.value == value : v.label == label) {
-						this.cityChange(k);
-					}
-				})
-			},
-			setArea(label = "", value = "") {
-				this.areas.map((v, k) => {
-					if (value ? v.value == value : v.label == label) {
-						this.isChooseA = true;
-						this.area = k;
-					}
-				})
-			},
-			close() {
-				this.$emit('update:modelValue', false);
-			},
-			tabsChange(index) {
-				this.tabsIndex = index;
-			},
-			provinceChange(index) {
-				this.isChooseP = true;
-				this.isChooseC = false;
-				this.isChooseA = false;
-				this.province = index;
-				this.citys = citys[index];
-				this.tabsIndex = 1;
-			},
-			cityChange(index) {
-				this.isChooseC = true;
-				this.isChooseA = false;
-				this.city = index;
-				this.areas = areas[this.province][index];
-				this.tabsIndex = 2;
-			},
-			areaChange(index) {
-				this.isChooseA = true;
-				this.area = index;
-				let result = {};
-				result.province = this.provinces[this.province];
-				result.city = this.citys[this.city];
-				result.area = this.areas[this.area];
-				this.$emit('city-change', result);
-				this.close();
-			}
-		}
-
-	}
-</script>
-<style lang="scss">
-	.area-box {
-		width: 100%;
-		overflow: hidden;
-		height: 800rpx;
-
-		>view {
-			width: 150%;
-			transition: transform 0.3s ease-in-out 0s;
-			transform: translateX(0);
-
-			&.change {
-				transform: translateX(-33.3333333%);
-			}
-		}
-
-		.area-item {
-			width: 33.3333333%;
-			height: 800rpx;
-		}
-	}
-</style>
diff --git a/src/pages/template/comment/index.vue b/src/pages/template/comment/index.vue
deleted file mode 100644
index a3c0758..0000000
--- a/src/pages/template/comment/index.vue
+++ /dev/null
@@ -1,207 +0,0 @@
-<template>
-	<view>
-		<view class="comment" v-for="(res, index) in commentList" :key="res.id">
-			<view class="left"><image :src="res.url" mode="aspectFill"></image></view>
-			<view class="right">
-				<view class="top">
-					<view class="name">{{ res.name }}</view>
-					<view class="like" :class="{ highlight: res.isLike }">
-						<view class="num">{{ res.likeNum }}</view>
-						<up-icon v-if="!res.isLike" name="thumb-up" :size="30" color="#9a9a9a" @click="getLike(index)"></up-icon>
-						<up-icon v-if="res.isLike" name="thumb-up-fill" :size="30" @click="getLike(index)"></up-icon>
-					</view>
-				</view>
-				<view class="content">{{ res.contentText }}</view>
-				<view class="reply-box">
-					<view class="item" v-for="(item, index) in res.replyList" :key="item.index">
-						<view class="username">{{ item.name }}</view>
-						<view class="text">{{ item.contentStr }}</view>
-					</view>
-					<view class="all-reply" @tap="toAllReply" v-if="res.replyList != undefined">
-						鍏眥{ res.allReply }}鏉″洖澶�
-						<up-icon class="more" name="arrow-right" :size="26"></up-icon>
-					</view>
-				</view>
-				<view class="bottom">
-					{{ res.date }}
-					<view class="reply">鍥炲</view>
-				</view>
-			</view>
-		</view>
-	</view>
-</template>
-
-<script>
-export default {
-	data() {
-		return {
-			commentList: []
-		};
-	},
-	onLoad() {
-		this.getComment();
-	},
-	methods: {
-		// 璺宠浆鍒板叏閮ㄥ洖澶�
-		toAllReply() {
-			uni.navigateTo({
-				url: '/pages/template/comment/reply'
-			});
-		},
-		// 鐐硅禐
-		getLike(index) {
-			this.commentList[index].isLike = !this.commentList[index].isLike;
-			if (this.commentList[index].isLike == true) {
-				this.commentList[index].likeNum++;
-			} else {
-				this.commentList[index].likeNum--;
-			}
-		},
-		// 璇勮鍒楄〃
-		getComment() {
-			this.commentList = [
-				{
-					id: 1,
-					name: '鍙惰交鐪�',
-					date: '12-25 18:58',
-					contentText: '鎴戜笉淇′紛鏈椾細娌℃湁鍚庣画鍙嶅簲锛岀編鍥借偗瀹氫細涓轰粖澶╃殑浜嬫儏浠樺嚭浠d环鐨�',
-					url: 'https://cdn.uviewui.com/uview/template/SmilingDog.jpg',
-					allReply: 12,
-					likeNum: 33,
-					isLike: false,
-					replyList: [
-						{
-							name: 'uview',
-							contentStr: 'uview鏄熀浜巙niapp鐨勪竴涓猆I妗嗘灦锛屼唬鐮佷紭缇庣畝娲侊紝瀹囧畽瓒呯骇鏃犳晫褰╄櫣鏃嬭浆濂界敤锛岀敤瀹冿紒'
-						},
-						{
-							name: '绮樼矘',
-							contentStr: '浠婂ぉ鍚冧粈涔堬紝鏄庡ぉ鍚冧粈涔堬紝鏅氫笂鍚冧粈涔堬紝鎴戝彧鏄竴鍙皬鐚挭涓轰粈涔堣鐑︽伡杩欎箞澶�'
-						}
-					]
-				},
-				{
-					id: 2,
-					name: '鍙惰交鐪�1',
-					date: '01-25 13:58',
-					contentText: '鎴戜笉淇′紛鏈椾細娌℃湁鍚庣画鍙嶅簲锛岀編鍥借偗瀹氫細涓轰粖澶╃殑浜嬫儏浠樺嚭浠d环鐨�',
-					allReply: 0,
-					likeNum: 11,
-					isLike: false,
-					url: 'https://cdn.uviewui.com/uview/template/niannian.jpg',
-				},
-				{
-					id: 3,
-					name: '鍙惰交鐪�2',
-					date: '03-25 13:58',
-					contentText: '鎴戜笉淇′紛鏈椾細娌℃湁鍚庣画鍙嶅簲锛岀編鍥借偗瀹氫細涓轰粖澶╃殑浜嬫儏浠樺嚭浠d环鐨�',
-					allReply: 0,
-					likeNum: 21,
-					isLike: false,
-					allReply: 2,
-					url: '../../../static/logo.png',
-					replyList: [
-						{
-							name: 'uview',
-							contentStr: 'uview鏄熀浜巙niapp鐨勪竴涓猆I妗嗘灦锛屼唬鐮佷紭缇庣畝娲侊紝瀹囧畽瓒呯骇鏃犳晫褰╄櫣鏃嬭浆濂界敤锛岀敤瀹冿紒'
-						},
-						{
-							name: '璞嗗寘',
-							contentStr: '鎯冲悆鍐扮硸钁姦绮樿眴鍖咃紝浣嗘病閽�5555.........'
-						}
-					]
-				},
-				{
-					id: 4,
-					name: '鍙惰交鐪�3',
-					date: '06-20 13:58',
-					contentText: '鎴戜笉淇′紛鏈椾細娌℃湁鍚庣画鍙嶅簲锛岀編鍥借偗瀹氫細涓轰粖澶╃殑浜嬫儏浠樺嚭浠d环鐨�',
-					url: 'https://cdn.uviewui.com/uview/template/SmilingDog.jpg',
-					allReply: 0,
-					likeNum: 150,
-					isLike: false
-				}
-			];
-		}
-	}
-};
-</script>
-
-<style lang="scss" scoped>
-.comment {
-	display: flex;
-	padding: 30rpx;
-	.left {
-		image {
-			width: 64rpx;
-			height: 64rpx;
-			border-radius: 50%;
-			background-color: #f2f2f2;
-		}
-	}
-	.right {
-		flex: 1;
-		padding-left: 20rpx;
-		font-size: 30rpx;
-		.top {
-			display: flex;
-			justify-content: space-between;
-			align-items: center;
-			margin-bottom: 10rpx;
-			.name {
-				color: #5677fc;
-			}
-			.like {
-				display: flex;
-				align-items: center;
-				color: #9a9a9a;
-				font-size: 26rpx;
-				.num {
-					margin-right: 4rpx;
-					color: #9a9a9a;
-				}
-			}
-			.highlight {
-				color: #5677fc;
-				.num {
-					color: #5677fc;
-				}
-			}
-		}
-		.content {
-			margin-bottom: 10rpx;
-		}
-		.reply-box {
-			background-color: rgb(242, 242, 242);
-			border-radius: 12rpx;
-			.item {
-				padding: 20rpx;
-				border-bottom: solid 2rpx $u-border-color;
-				.username {
-					font-size: 24rpx;
-					color: #999999;
-				}
-			}
-			.all-reply {
-				padding: 20rpx;
-				display: flex;
-				color: #5677fc;
-				align-items: center;
-				.more {
-					margin-left: 6rpx;
-				}
-			}
-		}
-		.bottom {
-			margin-top: 20rpx;
-			display: flex;
-			font-size: 24rpx;
-			color: #9a9a9a;
-			.reply {
-				color: #5677fc;
-				margin-left: 10rpx;
-			}
-		}
-	}
-}
-</style>
diff --git a/src/pages/template/comment/reply.vue b/src/pages/template/comment/reply.vue
deleted file mode 100644
index a7331ce..0000000
--- a/src/pages/template/comment/reply.vue
+++ /dev/null
@@ -1,228 +0,0 @@
-<template>
-	<view class="wrap">
-		<view class="comment">
-			<view class="top">
-				<view class="left">
-					<view class="heart-photo"><image :src="comment.url" mode=""></image></view>
-					<view class="user-info">
-						<view class="name">{{ comment.name }}</view>
-						<view class="date">06-25 13:58</view>
-					</view>
-				</view>
-				<view class="right" :class="{ highlight: comment.isLike }">
-					{{ comment.likeNum }}
-					<up-icon v-if="!comment.isLike" name="thumb-up" class="like" color="#9a9a9a" :size="30" @click="getLike"></up-icon>
-					<up-icon v-if="comment.isLike" name="thumb-up-fill" class="like" :size="30" @click="getLike"></up-icon>
-				</view>
-			</view>
-			<view class="content">{{ comment.contentText }}</view>
-		</view>
-		<view class="all-reply">
-			<view class="all-reply-top">鍏ㄩ儴鍥炲锛坽{ comment.allReply }}锛�</view>
-			<view class="item" v-for="(item, index) in commentList" :key="index">
-				<view class="comment">
-					<view class="top">
-						<view class="left">
-							<view class="heart-photo"><image :src="item.url" mode=""></image></view>
-							<view class="user-info">
-								<view class="name">{{ item.name }}</view>
-								<view class="date">{{ item.date }}</view>
-							</view>
-						</view>
-						<view class="right"  :class="{ highlight: item.isLike }">
-							<view class="num">{{ item.likeNum }}</view>
-							<up-icon v-if="!item.isLike" name="thumb-up" class="like" :size="30" color="#9a9a9a" @click="getLike(index)"></up-icon>
-							<up-icon v-if="item.isLike" name="thumb-up-fill" class="like" :size="30" @click="getLike(index)"></up-icon>
-						</view>
-					</view>
-					<view class="reply" v-if="item.reply">
-						<view class="username">{{ item.reply.name }}</view>
-						<view class="text">{{ item.reply.contentStr }}</view>
-					</view>
-					<view class="content">{{ item.contentText }}</view>
-				</view>
-			</view>
-		</view>
-	</view>
-</template>
-
-<script>
-export default {
-	data() {
-		return {
-			commentList: [],
-			comment: ''
-		};
-	},
-	onLoad() {
-		this.getReply();
-	},
-	methods: {
-		// 鐐硅禐
-		getLike(index) {
-			if (index === 0 || index > 0) {
-				this.commentList[index].isLike = !this.commentList[index].isLike;
-				if (this.commentList[index].isLike == true) {
-					this.commentList[index].likeNum++;
-				} else {
-					this.commentList[index].likeNum--;
-				}
-			} else {
-				if (this.comment.isLike == true) {
-					this.comment.isLike = !this.comment.isLike;
-					this.comment.likeNum--;
-				} else {
-					this.comment.isLike = !this.comment.isLike;
-					this.comment.likeNum++;
-				}
-			}
-		},
-
-		// 鍥炲鍒楄〃
-		getReply() {
-			this.comment = {
-				id: 1,
-				name: '鍙惰交鐪�',
-				date: '12-25 18:58',
-				contentText: '鎴戜笉淇′紛鏈椾細娌℃湁鍚庣画鍙嶅簲锛岀編鍥借偗瀹氫細涓轰粖澶╃殑浜嬫儏浠樺嚭浠d环鐨�',
-				url: 'https://cdn.uviewui.com/uview/template/SmilingDog.jpg',
-				allReply: 12,
-				likeNum: 33,
-				isLikes: false
-			};
-			this.commentList = [
-				{
-					name: '鏂板叓鍑�',
-					date: '12-25 18:58',
-					contentText: '涓嶈涔辨墦骞垮憡鍟婂杺锛佽櫧鐒舵槸鐪熺殑瓒呭ソ鐢�',
-					url: 'https://cdn.uviewui.com/uview/template/SmilingDog.jpg',
-					likeNum: 33,
-					isLike: false,
-					reply: {
-						name: 'uview',
-						contentStr: 'uview鏄熀浜巙niapp鐨勪竴涓猆I妗嗘灦锛屼唬鐮佷紭缇庣畝娲侊紝瀹囧畽瓒呯骇鏃犳晫褰╄櫣鏃嬭浆濂界敤锛岀敤瀹冿紒'
-					}
-				},
-				{
-					name: '鍙惰交鐪�1',
-					date: '01-25 13:58',
-					url: 'https://cdn.uviewui.com/uview/template/SmilingDog.jpg',
-					contentText: '鎴戜笉淇′紛鏈椾細娌℃湁鍚庣画鍙嶅簲锛岀編鍥借偗瀹氫細涓轰粖澶╃殑浜嬫儏浠樺嚭浠d环鐨�',
-					allReply: 0,
-					likeNum: 11,
-					isLike: false,
-					reply: {
-						name: '绮樼矘',
-						contentStr: '浠婂ぉ鍚冧粈涔堬紝鏄庡ぉ鍚冧粈涔堬紝鏅氫笂鍚冧粈涔堬紝鎴戝彧鏄竴鍙皬鐚挭涓轰粈涔堣鐑︽伡杩欎箞澶�'
-					}
-				},
-				{
-					name: '鍙惰交鐪�2',
-					date: '03-25 13:58',
-					contentText: '鎴戜笉淇′紛鏈椾細娌℃湁鍚庣画鍙嶅簲锛岀編鍥借偗瀹氫細涓轰粖澶╃殑浜嬫儏浠樺嚭浠d环鐨�',
-					allReply: 0,
-					likeNum: 21,
-					url: 'https://cdn.uviewui.com/uview/template/SmilingDog.jpg',
-					isLike: false,
-					allReply: 2,
-					reply: {
-						name: '璞嗗寘',
-						contentStr: '鎯冲悆鍐扮硸钁姦绮樿眴鍖咃紝浣嗘病閽�5555.........'
-					}
-				},
-				{
-					name: '鍙惰交鐪�3',
-					date: '06-20 13:58',
-					contentText: '鎴戜笉淇′紛鏈椾細娌℃湁鍚庣画鍙嶅簲锛岀編鍥借偗瀹氫細涓轰粖澶╃殑浜嬫儏浠樺嚭浠d环鐨�',
-					allReply: 0,
-					likeNum: 150,
-					url: 'https://cdn.uviewui.com/uview/template/SmilingDog.jpg',
-					isLike: false
-				}
-			];
-		}
-	}
-};
-</script>
-
-<style lang="scss" scoped>
-page {
-	background-color: #f2f2f2;
-}
-.comment {
-	padding: 30rpx;
-	font-size: 32rpx;
-	background-color: #ffffff;
-	.top {
-		display: flex;
-		justify-content: space-between;
-	}
-	.left {
-		display: flex;
-		.heart-photo {
-			image {
-				width: 64rpx;
-				height: 64rpx;
-				border-radius: 50%;
-				background-color: #f2f2f2;
-			}
-		}
-		.user-info {
-			margin-left: 10rpx;
-			.name {
-				color: #5677fc;
-				font-size: 28rpx;
-				margin-bottom: 4rpx;
-			}
-			.date {
-				font-size: 20rpx;
-				color: $u-light-color;
-			}
-		}
-	}
-	.right {
-		display: flex;
-		font-size: 20rpx;
-		align-items: center;
-		color: #9a9a9a;
-		.like {
-			margin-left: 6rpx;
-		}
-		.num{
-			font-size: 26rpx;
-			color: #9a9a9a;
-		}
-	}
-	.highlight {
-		color: #5677fc;
-		.num{
-			color: #5677fc;
-		}
-	}
-}
-.all-reply {
-	margin-top: 10rpx;
-	padding-top: 20rpx;
-	background-color: #ffffff;
-	.all-reply-top {
-		margin-left: 20rpx;
-		padding-left: 20rpx;
-		border-left: solid 4rpx #5677fc;
-		font-size: 30rpx;
-		font-weight: bold;
-	}
-	.item {
-		border-bottom: solid 2rpx $u-border-color;
-	}
-	.reply {
-		padding: 20rpx;
-		background-color: rgb(242, 242, 242);
-		border-radius: 12rpx;
-		margin: 10rpx 0;
-		.username {
-			font-size: 24rpx;
-			color: #7a7a7a;
-		}
-	}
-}
-</style>
diff --git a/src/pages/template/coupon/index.vue b/src/pages/template/coupon/index.vue
deleted file mode 100644
index 3cab2aa..0000000
--- a/src/pages/template/coupon/index.vue
+++ /dev/null
@@ -1,375 +0,0 @@
-<template>
-	<view class="u-wrap">
-		<view class="meituan">
-			<view class="content">
-				<view class="left">
-					<view class="sum">
-						锟�
-						<text class="num">8</text>
-					</view>
-					<view class="type">鎶电敤鍒�</view>
-				</view>
-				<view class="centre">
-					<view class="title">銆愭礂鐗欍��8鍏冩棤闂ㄦ绾㈠寘</view>
-					<view class="valid-date">浠婃棩鍒版湡</view>
-				</view>
-				<view class="right">
-					<view size="mini" class="immediate-use" :round="true">绔嬪嵆浣跨敤</view>
-				</view>
-			</view>
-			<view class="tips">
-				<view class="circle-left"></view>
-				<view class="circle-right"></view>
-				<view class="explain u-line-1">婊�8.1鍏冨彲鐢ㄣ�侀檺鏈�鏂扮増鏈鎴风浣跨敤</view>
-				<view class="rule" @tap="xxx122">
-					<text>浣跨敤瑙勫垯</text>
-					<up-icon name="arrow-right" color="" :size="20" @click=""></up-icon>
-				</view>
-			</view>
-		</view>
-		<view class="jingdong">
-			<view class="left">
-				<view class="sum">
-					锟�
-					<text class="num">100</text>
-				</view>
-				<view class="type">婊�149鍏冨彲鐢�</view>
-			</view>
-			<view class="right">
-				<view class="top">
-					<view class="title">
-						<text class="tag">闄愬搧绫讳笢鍒�</text>
-						<text>浠呭彲璐拱涓汉鎶ょ悊閮ㄥ垎鍟嗗搧</text>
-					</view>
-					<view class="bottom">
-						<view class="date u-line-1">2020.01.01-2020.01.31</view>
-						<view class="immediate-use">绔嬪嵆浣跨敤</view>
-					</view>
-				</view>
-				<view class="tips">
-					<view class="explain">
-						<up-icon name="zhuanfa" class="transpond" :size="24"></up-icon>
-						<text>鍙禒閫�</text>
-					</view>
-				</view>
-			</view>
-		</view>
-		<view class="taobao">
-			<view class="title">
-				<view class="left">
-					<image class="buddha" src="https://ss0.bdstatic.com/70cFuHSh_Q1YnxGkpoWK1HF6hhy/it/u=1975388697,1068670603&fm=26&gp=0.jpg" mode="aspectFill"></image>
-					<view class="store">琚滃瓙绮句繚鎶ゅ崗浼�</view>
-				</view>
-				<view class="entrance">杩涘簵</view>
-			</view>
-			<view class="ticket">
-				<view class="left">
-					<image
-						class="picture"
-						src="https://timgsa.baidu.com/timg?image&quality=80&size=b9999_10000&sec=1578059523488&di=5f592ac19c1b983005d3e85add469756&imgtype=0&src=http%3A%2F%2Fimg010.hc360.cn%2Fg7%2FM00%2F2D%2FB9%2FwKhQs1QfUo6EdeM-AAAAALwk1hM072.jpg"
-						mode="widthFix"
-					></image>
-					<view class="introduce">
-						<view class="top">
-							锟�
-							<text class="big">3</text>
-							婊�88鍑�3
-						</view>
-						<view class="type">搴楅摵浼樻儬鍒�</view>
-						<view class="date u-line-1">2019.11.28-2020.1.24</view>
-					</view>
-				</view>
-				<view class="right">
-					<view class="use immediate-use" :round="true">鍘讳娇鐢�</view>
-				</view>
-				
-			</view>
-		</view>
-	</view>
-</template>
-
-<script>
-export default {
-	
-};
-</script>
-
-<style lang="scss" scoped>
-page {
-	height: 100%;
-	background-color: rgb(244, 244, 244);
-}
-.u-wrap {
-	padding: 24rpx;
-}
-
-.meituan {
-	margin: 30rpx auto;
-	background-color: #ffffff;
-	width: 700rpx;
-	// border: 10rpx;
-	color: $u-warning;
-	font-size: 28rpx;
-	.content {
-		display: flex;
-		align-items: center;
-		padding: 80rpx 20rpx;
-		border: 10rpx;
-		background-color: #fff5f4;
-		.left {
-			.sum {
-				font-size: 32rpx;
-				.num {
-					font-size: 60rpx;
-					font-weight: bold;
-				}
-			}
-		}
-		.centre {
-			margin-left: 40rpx;
-			.title {
-				font-size: 32rpx;
-				font-weight: bold;
-				color: $u-main-color;
-				margin-bottom: 20rpx;
-			}
-		}
-		.right {
-			margin-left: 30rpx;
-			.immediate-use {
-				padding: 0 20rpx;
-				height: 50rpx;
-				border-radius: 25rpx;
-				line-height: 50rpx;
-				background-color: $u-warning!important;
-				color: #ffffff!important;
-				font-size: 24rpx;
-				border: none;
-				word-break: keep-all;
-			}
-		}
-	}
-	.tips {
-		padding: 0 20rpx;
-		border: 10rpx;
-		background-color: $u-info-light;
-		position: relative;
-		color: $u-tips-color;
-		display: flex;
-		justify-content: space-between;
-		line-height: 60rpx;
-		font-size: 24rpx;
-		.circle-left,
-		.circle-right {
-			position: absolute;
-			height: 36rpx;
-			width: 18rpx;
-			background-color: #f2f2f2;
-		}
-
-		.circle-right {
-			border-radius: 40rpx 0 0 40rpx;
-			right: 0;
-			top: -18rpx;
-		}
-
-		.circle-left {
-			border-radius: 0 40rpx 40rpx 0;
-			left: 0;
-			top: -18rpx;
-		}
-		.rule {
-			font-size: 24rpx;
-			display: flex;
-			align-items: center;
-			text {
-				margin-right: 10rpx;
-				flex: 1;
-			}
-		}
-	}
-}
-
-.jingdong {
-	margin-top: 40rpx;
-	width: 700rpx;
-	height: auto;
-	background-color: #ffffff;
-	display: flex;
-	.left {
-		padding: 0 30rpx;
-		background-color: rgb(95, 148, 224); //rgb(94, 152, 225);
-		text-align: center;
-		font-size: 28rpx;
-		color: #ffffff;
-		.sum {
-			margin-top: 50rpx;
-			font-weight: bold;
-			font-size: 32rpx;
-			.num {
-				font-size: 80rpx;
-			}
-		}
-		.type {
-			margin-bottom: 50rpx;
-			font-size: 24rpx;
-		}
-	}
-	.right {
-		padding: 20rpx 20rpx 0;
-		font-size: 28rpx;
-		.top {
-			border-bottom: 2rpx dashed $u-border-color;
-			.title {
-				margin-right: 60rpx;
-				line-height: 40rpx;
-				.tag {
-					padding: 4rpx 20rpx;
-					background-color: rgb(73, 154, 201);
-					border-radius: 20rpx;
-					color: #ffffff;
-					font-weight: bold;
-					font-size: 24rpx;
-					margin-right: 10rpx;
-				}
-			}
-			.bottom {
-				display: flex;
-				margin-top: 20rpx;
-				align-items: center;
-				justify-content: space-between;
-				margin-bottom: 10rpx;
-				.date {
-					font-size: 20rpx;
-					flex: 1;
-				}
-				.immediate-use {
-					height: auto;
-					padding: 0 20rpx;
-					font-size: 24rpx;
-					border-radius: 40rpx;
-					line-height: 40rpx;
-					color: rgb(117, 142, 165);
-					border: 2rpx solid rgb(117, 142, 165);
-				}
-			}
-		}
-		.tips {
-			width: 100%;
-			line-height: 50rpx;
-			display: flex;
-			align-items: center;
-			justify-content: space-between;
-			font-size: 24rpx;
-			.transpond {
-				margin-right: 10rpx;
-			}
-			.explain {
-				display: flex;
-				align-items: center;
-			}
-			.particulars {
-				width: 30rpx;
-				height: 30rpx;
-				box-sizing: border-box;
-				padding-top: 8rpx;
-				border-radius: 50%;
-				background-color: $u-info-disabled;
-				text-align: center;
-			}
-		}
-	}
-}
-
-.taobao {
-	margin-top: 40rpx;
-	width: 700rpx;
-	background-color: white;
-	padding: 30rpx 20rpx 20rpx;
-	border-radius: 20rpx;
-	.title {
-		display: flex;
-		align-items: center;
-		justify-content: space-between;
-		margin-bottom: 20rpx;
-		font-size: 30rpx;
-		.left {
-			display: flex;
-			align-items: center;
-		}
-		.store {
-			font-weight: 500;
-		}
-		.buddha {
-			width: 70rpx;
-			height: 70rpx;
-			border-radius: 10rpx;
-			margin-right: 10rpx;
-		}
-		.entrance {
-			color: $u-info;
-			border: solid 2rpx $u-info;
-			line-height: 48rpx;
-			padding: 0 30rpx;
-			background: none;
-			border-radius: 15px;
-		}
-	}
-	.ticket {
-		display: flex;
-		.left {
-			width: 70%;
-			padding: 30rpx 20rpx;
-			background-color: rgb(255, 245, 244);
-			border-radius: 20rpx;
-			border-right: dashed 2rpx rgb(224, 215, 211);
-			display: flex;
-			.picture {
-				width: 172rpx;
-				height: 172rpx;
-				border-radius: 20rpx;
-			}
-			.introduce {
-				margin-left: 10rpx;
-				.top{
-					color:$u-warning;
-					font-size: 28rpx;
-					.big{
-						font-size: 60rpx;
-						font-weight: bold;
-						margin-right: 10rpx;
-					}
-				}
-				.type{
-					font-size: 28rpx;
-					color: $u-info-dark;
-				}
-				.date{
-					margin-top: 10rpx;
-					font-size: 20rpx;
-					color: $u-info-dark;
-				}
-			}
-		}
-		.right {
-			width: 30%;
-			padding: 40rpx 20rpx;
-			background-color: rgb(255, 245, 244);
-			border-radius: 20rpx;
-			display: flex;
-			align-items: center;
-			.use{
-				height: auto;
-				padding: 0 20rpx;
-				font-size: 24rpx;
-				border-radius: 40rpx;
-				color: #ffffff!important;
-				background-color: $u-warning!important;
-				line-height: 40rpx;
-				color: rgb(117, 142, 165);
-				margin-left: 20rpx;
-			}
-		}
-	}
-}
-</style>
diff --git a/src/pages/template/douyin/index.nvue b/src/pages/template/douyin/index.nvue
deleted file mode 100644
index ba2d2fe..0000000
--- a/src/pages/template/douyin/index.nvue
+++ /dev/null
@@ -1,11 +0,0 @@
-<template>
-</template>
-
-<script>
-</script>
-
-<style>
-	.div {
-		
-	}
-</style>
diff --git a/src/pages/template/keyboardPay/index.vue b/src/pages/template/keyboardPay/index.vue
deleted file mode 100644
index d8fb3fd..0000000
--- a/src/pages/template/keyboardPay/index.vue
+++ /dev/null
@@ -1,113 +0,0 @@
-<template>
-	<view>
-		<view class="u-padding-40">
-			<up-button type="success" @click="showPop(true)">
-				<up-icon name="red-packet"></up-icon>
-				<text class="u-padding-left-10">鍙戦��1.00鍏冪孩鍖�</text>
-			</up-button>
-		</view>		
-		<up-keyboard 
-			default=""
-			ref="uKeyboard" 
-			mode="number" 
-			:mask="true" 
-			:mask-close-able="false"
-			:dot-enabled="false" 
-			:show="show"
-			:safe-area-inset-bottom="true"
-			:tooltip="false"
-			@change="onChange"
-			@backspace="onBackspace">
-			<view>
-				<view class="u-text-center u-padding-20 money">
-					<text>1.00</text>
-					<text class="u-font-20 u-padding-left-10">鍏�</text>
-					<view class="u-padding-10 close" data-flag="false" @tap="showPop(false)">
-						<up-icon name="close" color="#333333" size="28"></up-icon>
-					</view>
-				</view>
-				<view class="u-flex u-row-center">
-					<up-message-input 
-						mode="box" 
-						:maxlength="6"
-						:dot-fill="true"
-						v-model="password"
-						:disabled-keyboard="true"
-						@finish="finish"
-					></up-message-input>
-				</view>
-				<view class="u-text-center u-padding-top-10 u-padding-bottom-20 tips">鏀粯閿洏</view>
-			</view>
-		</up-keyboard>
-	</view>
-</template>
-
-<script>
-	export default {
-		data() {
-			return {
-				show:false,
-				password:''
-			}
-		},
-		onLoad() {
-			
-		},
-		methods: {
-			onChange(val){
-				if(this.password.length<6){
-					this.password += val;
-				}
-				
-				if(this.password.length>=6){
-					this.pay();
-				}
-			},
-			onBackspace(e){
-				if(this.password.length>0){
-					this.password = this.password.substring(0,this.password.length-1);
-				}
-			},
-			pay(){
-				uni.showLoading({
-					title:'鏀粯涓�'
-				})
-				
-				setTimeout(()=>{
-					uni.hideLoading();
-					this.show = false;
-					uni.showToast({
-						icon:'success',
-						title:'鏀粯鎴愬姛'
-					})
-				},2000);
-			},
-			showPop(flag = true){
-				this.password = '';
-				this.show = flag;
-			},
-			finish(){
-				console.log(11111)
-			}
-		}
-	}
-</script>
-
-<style lang="scss">
-	.money{
-		font-size: 80rpx;
-		color: $u-warning;
-		position: relative;
-		
-		.close{
-			position: absolute;
-			top: 20rpx;
-			right: 20rpx;
-			line-height: 28rpx;
-			font-size: 28rpx;
-		}
-	}
-	.tips{
-		color:$u-tips-color;
-	}
-</style>
\ No newline at end of file
diff --git a/src/pages/template/login/code.vue b/src/pages/template/login/code.vue
deleted file mode 100644
index 9d57c8f..0000000
--- a/src/pages/template/login/code.vue
+++ /dev/null
@@ -1,112 +0,0 @@
-<template>
-	<view class="wrap">
-		<view class="key-input">
-			<view class="title">杈撳叆楠岃瘉鐮�</view>
-			<view class="tips">楠岃瘉鐮佸凡鍙戦�佽嚦 +150****9320</view>
-			<up-message-input :focus="true" :value="value" @change="change" @finish="finish" mode="bottomLine" :maxlength="maxlength"></up-message-input>
-			<text :class="{ error: error }">楠岃瘉鐮侀敊璇紝璇烽噸鏂拌緭鍏�</text>
-			<view class="captcha">
-				<text :class="{ noCaptcha: show }" @tap="noCaptcha">鏀朵笉鍒伴獙璇佺爜鐐硅繖閲�</text>
-				<text :class="{ regain: !show }">{{ second }}绉掑悗閲嶆柊鑾峰彇楠岃瘉鐮�</text>
-			</view>
-		</view>
-	</view>
-</template>
-
-<script>
-export default {
-	data() {
-		return {
-			maxlength: 4,
-			value: '',
-			second: 3,
-			show: false,
-			error: false
-		};
-	},
-	computed: {},
-	onLoad() {
-		// this.getCaptcha()
-		let interval = setInterval(() => {
-			this.second--;
-			if (this.second <= 0) {
-				this.show = true;
-				if (this.value.lenth != 4) {
-					this.error = true;
-				}
-				clearInterval(interval);
-			}
-		}, 1000);
-	},
-	methods: {
-		// 鏀朵笉鍒伴獙璇佺爜閫夋嫨鏃剁殑閫夋嫨
-		noCaptcha() {
-			uni.showActionSheet({
-				itemList: ['閲嶆柊鑾峰彇楠岃瘉鐮�', '鎺ュ惉璇煶楠岃瘉鐮�'],
-				success: function(res) {
-					
-				},
-				fail: function(res) {
-					
-				}
-			});
-		},
-		// change浜嬩欢渚﹀惉
-		change(value) {
-			// console.log('change', value);
-		},
-		// 杈撳叆瀹岄獙璇佺爜鏈�鍚庝竴浣嶆墽琛�
-		finish(value) {
-			// console.log('finish', value);
-		}
-	}
-};
-</script>
-
-<style lang="scss" scoped>
-.wrap {
-	padding: 80rpx;
-}
-
-.box {
-	margin: 30rpx 0;
-	font-size: 30rpx;
-	color: 555;
-}
-
-.key-input {
-	padding: 30rpx 0;
-	text {
-		display: none;
-	}
-	.error {
-		display: block;
-		color: red;
-		font-size: 30rpx;
-		margin: 20rpx 0;
-	}
-}
-
-.title {
-	font-size: 50rpx;
-	color: #333;
-}
-
-.key-input .tips {
-	font-size: 30rpx;
-	color: #333;
-	margin-top: 20rpx;
-	margin-bottom: 60rpx;
-}
-.captcha {
-	color: $u-warning;
-	font-size: 30rpx;
-	margin-top: 40rpx;
-	.noCaptcha {
-		display: block;
-	}
-	.regain {
-		display: block;
-	}
-}
-</style>
diff --git a/src/pages/template/login/index.vue b/src/pages/template/login/index.vue
deleted file mode 100644
index d689c30..0000000
--- a/src/pages/template/login/index.vue
+++ /dev/null
@@ -1,131 +0,0 @@
-<template>
-	<view class="wrap">
-		<view class="top"></view>
-		<view class="content">
-			<view class="title">娆㈣繋鐧诲綍</view>
-			<input class="u-border-bottom" type="number" v-model="tel" placeholder="璇疯緭鍏ユ墜鏈哄彿" />
-			<view class="tips">鏈敞鍐岀殑鎵嬫満鍙烽獙璇佸悗鑷姩鍒涘缓璐﹀彿</view>
-			<button @tap="submit" :style="[inputStyle]" class="getCaptcha">鑾峰彇鐭俊楠岃瘉鐮�</button>
-			<view class="alternative">
-				<view class="password">瀵嗙爜鐧诲綍</view>
-				<view class="issue">閬囧埌闂</view>
-			</view>
-		</view>
-		<view class="buttom">
-			<view class="loginType">
-				<view class="wechat item">
-					<view class="icon"><up-icon size="40" name="weixin-fill" color="rgb(83,194,64)"></up-icon></view>
-					寰俊
-				</view>
-				<view class="QQ item">
-					<view class="icon"><up-icon size="40" name="qq-fill" color="rgb(17,183,233)"></up-icon></view>
-					QQ
-				</view>
-			</view>
-			<view class="hint">
-				鐧诲綍浠h〃鍚屾剰
-				<text class="link">鐢ㄦ埛鍗忚銆侀殣绉佹斂绛栵紝</text>
-				骞舵巿鏉冧娇鐢ㄦ偍鐨勮处鍙蜂俊鎭紙濡傛樀绉般�佸ご鍍忋�佹敹鑾峰湴鍧�锛変互渚挎偍缁熶竴绠$悊
-			</view>
-		</view>
-	</view>
-</template>
-
-<script>
-export default {
-	data() {
-		return {
-			tel: ''
-		}
-	},
-	computed: {
-		inputStyle() {
-			let style = {};
-			if(this.tel) {
-				style.color = "#fff";
-				style.backgroundColor = this.$u.color['warning'];
-			}
-			return style;
-		}
-	},
-	methods: {
-		submit() {
-			if(this.$u.test.mobile(this.tel)) {
-				this.$u.route({
-					url: 'pages/template/login/code'
-				})
-			}
-		}
-	}
-};
-</script>
-
-<style lang="scss" scoped>
-.wrap {
-	font-size: 28rpx;
-	.content {
-		width: 600rpx;
-		margin: 80rpx auto 0;
-
-		.title {
-			text-align: left;
-			font-size: 60rpx;
-			font-weight: 500;
-			margin-bottom: 100rpx;
-		}
-		input {
-			text-align: left;
-			margin-bottom: 10rpx;
-			padding-bottom: 6rpx;
-		}
-		.tips {
-			color: $u-info;
-			margin-bottom: 60rpx;
-			margin-top: 8rpx;
-			font-size: 12px;
-		}
-		.getCaptcha {
-			background-color: rgb(253, 243, 208);
-			color: $u-tips-color;
-			border: none;
-			font-size: 30rpx;
-			padding: 12rpx 0;
-			
-			&::after {
-				border: none;
-			}
-		}
-		.alternative {
-			color: $u-tips-color;
-			display: flex;
-			justify-content: space-between;
-			margin-top: 30rpx;
-		}
-	}
-	.buttom {
-		.loginType {
-			display: flex;
-			padding: 350rpx 150rpx 150rpx 150rpx;
-			justify-content:space-between;
-			
-			.item {
-				display: flex;
-				flex-direction: column;
-				align-items: center;
-				color: $u-content-color;
-				font-size: 28rpx;
-			}
-		}
-		
-		.hint {
-			padding: 20rpx 40rpx;
-			font-size: 20rpx;
-			color: $u-tips-color;
-			
-			.link {
-				color: $u-warning;
-			}
-		}
-	}
-}
-</style>
diff --git a/src/pages/template/mallMenu/index1.vue b/src/pages/template/mallMenu/index1.vue
deleted file mode 100644
index 86d1185..0000000
--- a/src/pages/template/mallMenu/index1.vue
+++ /dev/null
@@ -1,206 +0,0 @@
-<template>
-	<view class="u-wrap">
-		<view class="u-search-box">
-			<view class="u-search-inner">
-				<up-icon name="search" color="#909399" :size="28"></up-icon>
-				<text class="u-search-text">鎼滅储uview-plus</text>
-			</view>
-		</view>
-		<view class="u-menu-wrap">
-			<scroll-view scroll-y scroll-with-animation class="u-tab-view menu-scroll-view" :scroll-top="scrollTop">
-				<view v-for="(item,index) in tabbar" :key="index" class="u-tab-item" :class="[current==index ? 'u-tab-item-active' : '']"
-				 :data-current="index" @tap.stop="swichMenu(index)">
-					<text class="u-line-1">{{item.name}}</text>
-				</view>
-			</scroll-view>
-			<block v-for="(item,index) in tabbar" :key="index">
-				<scroll-view scroll-y class="right-box" v-if="current==index">
-					<view class="page-view">
-						<view class="class-item">
-							<view class="item-title">
-								<text>{{item.name}}</text>
-							</view>
-							<view class="item-container">
-								<view class="thumb-box" v-for="(item1, index1) in item.foods" :key="index1">
-									<image class="item-menu-image" :src="item1.icon" mode=""></image>
-									<view class="item-menu-name">{{item1.name}}</view>
-								</view>
-							</view>
-						</view>
-					</view>
-				</scroll-view>
-			</block>
-		</view>
-	</view>
-</template>
-
-<script>
-	import classifyData from "@/common/classify.data.js";
-	export default {
-		data() {
-			return {
-				tabbar: classifyData,
-				scrollTop: 0, //tab鏍囬鐨勬粴鍔ㄦ潯浣嶇疆
-				current: 0, // 棰勮褰撳墠椤圭殑鍊�
-				menuHeight: 0, // 宸﹁竟鑿滃崟鐨勯珮搴�
-				menuItemHeight: 0, // 宸﹁竟鑿滃崟item鐨勯珮搴�
-			}
-		},
-		computed: {
-			
-		},
-		methods: {
-			getImg() {
-				return Math.floor(Math.random() * 35);
-			},
-			// 鐐瑰嚮宸﹁竟鐨勬爮鐩垏鎹�
-			async swichMenu(index) {
-				if(index == this.current) return ;
-				this.current = index;
-				// 濡傛灉涓�0锛屾剰鍛崇潃灏氭湭鍒濆鍖�
-				if(this.menuHeight == 0 || this.menuItemHeight == 0) {
-					await this.getElRect('menu-scroll-view', 'menuHeight');
-					await this.getElRect('u-tab-item', 'menuItemHeight');
-				}
-				// 灏嗚彍鍗曡彍鍗曟椿鍔╥tem鍨傜洿灞呬腑
-				this.scrollTop = index * this.menuItemHeight + this.menuItemHeight / 2 - this.menuHeight / 2;
-			},
-			// 鑾峰彇涓�涓洰鏍囧厓绱犵殑楂樺害
-			getElRect(elClass, dataVal) {
-				new Promise((resolve, reject) => {
-					const query = uni.createSelectorQuery().in(this);
-					query.select('.' + elClass).fields({size: true},res => {
-						// 濡傛灉鑺傜偣灏氭湭鐢熸垚锛宺es鍊间负null锛屽惊鐜皟鐢ㄦ墽琛�
-						if(!res) {
-							setTimeout(() => {
-								this.getElRect(elClass);
-							}, 10);
-							return ;
-						}
-						this[dataVal] = res.height;
-					}).exec();
-				})
-			}
-		}
-	}
-</script>
-
-<style lang="scss" scoped>
-	.u-wrap {
-		height: calc(100vh);
-		/* #ifdef H5 */
-		height: calc(100vh - var(--window-top));
-		/* #endif */
-		display: flex;
-		flex-direction: column;
-	}
-
-	.u-search-box {
-		padding: 18rpx 30rpx;
-	}
-
-	.u-menu-wrap {
-		flex: 1;
-		display: flex;
-		overflow: hidden;
-	}
-
-	.u-search-inner {
-		background-color: rgb(234, 234, 234);
-		border-radius: 100rpx;
-		display: flex;
-		align-items: center;
-		padding: 10rpx 16rpx;
-	}
-
-	.u-search-text {
-		font-size: 26rpx;
-		color: $u-tips-color;
-		margin-left: 10rpx;
-	}
-
-	.u-tab-view {
-		width: 200rpx;
-		height: 100%;
-	}
-
-	.u-tab-item {
-		height: 110rpx;
-		background: #f6f6f6;
-		box-sizing: border-box;
-		display: flex;
-		align-items: center;
-		justify-content: center;
-		font-size: 26rpx;
-		color: #444;
-		font-weight: 400;
-		line-height: 1;
-	}
-	
-	.u-tab-item-active {
-		position: relative;
-		color: #000;
-		font-size: 30rpx;
-		font-weight: 600;
-		background: #fff;
-	}
-	
-	.u-tab-item-active::before {
-		content: "";
-		position: absolute;
-		border-left: 4px solid $u-primary;
-		height: 32rpx;
-		left: 0;
-		top: 39rpx;
-	}
-
-	.u-tab-view {
-		height: 100%;
-	}
-	
-	.right-box {
-		background-color: rgb(250, 250, 250);
-	}
-	
-	.page-view {
-		padding: 16rpx;
-	}
-	
-	.class-item {
-		margin-bottom: 30rpx;
-		background-color: #fff;
-		padding: 16rpx;
-		border-radius: 8rpx;
-	}
-	
-	.item-title {
-		font-size: 26rpx;
-		color: $u-main-color;
-		font-weight: bold;
-	}
-	
-	.item-menu-name {
-		font-weight: normal;
-		font-size: 24rpx;
-		color: $u-main-color;
-	}
-	
-	.item-container {
-		display: flex;
-		flex-wrap: wrap;
-	}
-	
-	.thumb-box {
-		width: 33.333333%;
-		display: flex;
-		align-items: center;
-		justify-content: center;
-		flex-direction: column;
-		margin-top: 20rpx;
-	}
-	
-	.item-menu-image {
-		width: 120rpx;
-		height: 120rpx;
-	}
-</style>
diff --git a/src/pages/template/mallMenu/index2.vue b/src/pages/template/mallMenu/index2.vue
deleted file mode 100644
index 790128d..0000000
--- a/src/pages/template/mallMenu/index2.vue
+++ /dev/null
@@ -1,291 +0,0 @@
-<template>
-	<view class="u-wrap">
-		<view class="u-search-box">
-			<view class="u-search-inner">
-				<up-icon name="search" color="#909399" :size="28"></up-icon>
-				<text class="u-search-text">鎼滅储</text>
-			</view>
-		</view>
-		<view class="u-menu-wrap">
-			<scroll-view scroll-y scroll-with-animation class="u-tab-view menu-scroll-view" :scroll-top="scrollTop"
-			 :scroll-into-view="itemId">
-				<view v-for="(item,index) in tabbar" :key="index" class="u-tab-item" :class="[current == index ? 'u-tab-item-active' : '']"
-				 @tap.stop="swichMenu(index)">
-					<text class="u-line-1">{{item.name}}</text>
-				</view>
-			</scroll-view>
-			<scroll-view :scroll-top="scrollRightTop" scroll-y scroll-with-animation class="right-box" @scroll="rightScroll">
-				<view class="page-view">
-					<view class="class-item" :id="'item' + index" v-for="(item , index) in tabbar" :key="index">
-						<view class="item-title">
-							<text>{{item.name}}</text>
-						</view>
-						<view class="item-container">
-							<view class="thumb-box" v-for="(item1, index1) in item.foods" :key="index1">
-								<image class="item-menu-image" :src="item1.icon" mode=""></image>
-								<view class="item-menu-name">{{item1.name}}</view>
-							</view>
-						</view>
-					</view>
-				</view>
-			</scroll-view>
-		</view>
-	</view>
-</template>
-<script>
-	import classifyData from '@/common/classify.data.js';
-	export default {
-		data() {
-			return {
-				scrollTop: 0, //tab鏍囬鐨勬粴鍔ㄦ潯浣嶇疆
-				oldScrollTop: 0,
-				current: 0, // 棰勮褰撳墠椤圭殑鍊�
-				menuHeight: 0, // 宸﹁竟鑿滃崟鐨勯珮搴�
-				menuItemHeight: 0, // 宸﹁竟鑿滃崟item鐨勯珮搴�
-				itemId: '', // 鏍忕洰鍙宠竟scroll-view鐢ㄤ簬婊氬姩鐨刬d
-				tabbar: classifyData,
-				menuItemPos: [],
-				arr: [],
-				scrollRightTop: 0, // 鍙宠竟鏍忕洰scroll-view鐨勬粴鍔ㄦ潯楂樺害
-				timer: null, // 瀹氭椂鍣�
-				
-			}
-		},
-		onLoad() {
-			
-		},
-		onReady() {
-			this.getMenuItemTop()
-		},
-		methods: {
-			// 鐐瑰嚮宸﹁竟鐨勬爮鐩垏鎹�
-			async swichMenu(index) {
-				if(this.arr.length == 0) {
-					await this.getMenuItemTop();
-				}
-				if (index == this.current) return;
-				this.scrollRightTop = this.oldScrollTop;
-				this.$nextTick(function(){
-					this.scrollRightTop = this.arr[index];
-					this.current = index;
-					this.leftMenuStatus(index);
-				})
-			},
-			// 鑾峰彇涓�涓洰鏍囧厓绱犵殑楂樺害
-			getElRect(elClass, dataVal) {
-				new Promise((resolve, reject) => {
-					const query = uni.createSelectorQuery().in(this);
-					query.select('.' + elClass).fields({
-						size: true
-					}, res => {
-						// 濡傛灉鑺傜偣灏氭湭鐢熸垚锛宺es鍊间负null锛屽惊鐜皟鐢ㄦ墽琛�
-						if (!res) {
-							setTimeout(() => {
-								this.getElRect(elClass);
-							}, 10);
-							return;
-						}
-						this[dataVal] = res.height;
-						resolve();
-					}).exec();
-				})
-			},
-			// 瑙傛祴鍏冪礌鐩镐氦鐘舵��
-			async observer() {
-				this.tabbar.map((val, index) => {
-					let observer = uni.createIntersectionObserver(this);
-					// 妫�娴嬪彸杈箂croll-view鐨刬d涓篿temxx鐨勫厓绱犱笌right-box鐨勭浉浜ょ姸鎬�
-					// 濡傛灉璺�.right-box搴曢儴鐩镐氦锛屽氨鍔ㄦ�佽缃乏杈规爮鐩殑娲诲姩鐘舵��
-					observer.relativeTo('.right-box', {
-						top: 0
-					}).observe('#item' + index, res => {
-						if (res.intersectionRatio > 0) {
-							let id = res.id.substring(4);
-							this.leftMenuStatus(id);
-						}
-					})
-				})
-			},
-			// 璁剧疆宸﹁竟鑿滃崟鐨勬粴鍔ㄧ姸鎬�
-			async leftMenuStatus(index) {
-				this.current = index;
-				// 濡傛灉涓�0锛屾剰鍛崇潃灏氭湭鍒濆鍖�
-				if (this.menuHeight == 0 || this.menuItemHeight == 0) {
-					await this.getElRect('menu-scroll-view', 'menuHeight');
-					await this.getElRect('u-tab-item', 'menuItemHeight');
-				}
-				// 灏嗚彍鍗曟椿鍔╥tem鍨傜洿灞呬腑
-				this.scrollTop = index * this.menuItemHeight + this.menuItemHeight / 2 - this.menuHeight / 2;
-			},
-			// 鑾峰彇鍙宠竟鑿滃崟姣忎釜item鍒伴《閮ㄧ殑璺濈
-			getMenuItemTop() {
-				new Promise(resolve => {
-					let selectorQuery = uni.createSelectorQuery();
-					selectorQuery.selectAll('.class-item').boundingClientRect((rects) => {
-						// 濡傛灉鑺傜偣灏氭湭鐢熸垚锛宺ects鍊间负[](鍥犱负鐢╯electAll锛屾墍浠ヨ繑鍥炵殑鏄暟缁�)锛屽惊鐜皟鐢ㄦ墽琛�
-						if(!rects.length) {
-							setTimeout(() => {
-								this.getMenuItemTop();
-							}, 10);
-							return ;
-						}
-						rects.forEach((rect) => {
-							// 杩欓噷鍑忓幓rects[0].top锛屾槸鍥犱负绗竴椤归《閮ㄥ彲鑳戒笉鏄创鍒板鑸爮(姣斿鏈変釜鎼滅储妗嗙殑鎯呭喌)
-							this.arr.push(rect.top - rects[0].top);
-							resolve();
-						})
-					}).exec()
-				})
-			},
-			// 鍙宠竟鑿滃崟婊氬姩
-			async rightScroll(e) {
-				this.oldScrollTop = e.detail.scrollTop;
-				if(this.arr.length == 0) {
-					await this.getMenuItemTop();
-				}
-				if(this.timer) return ;
-				if(!this.menuHeight) {
-					await this.getElRect('menu-scroll-view', 'menuHeight');
-				}
-				setTimeout(() => { // 鑺傛祦
-					this.timer = null;
-					// scrollHeight涓哄彸杈硅彍鍗曞瀭鐩翠腑鐐逛綅缃�
-					let scrollHeight = e.detail.scrollTop + this.menuHeight / 2;
-					for (let i = 0; i < this.arr.length; i++) {
-						let height1 = this.arr[i];
-						let height2 = this.arr[i + 1];
-						// 濡傛灉涓嶅瓨鍦╤eight2锛屾剰鍛崇潃鏁版嵁寰幆宸茬粡鍒颁簡鏈�鍚庝竴涓紝璁剧疆宸﹁竟鑿滃崟涓烘渶鍚庝竴椤瑰嵆鍙�
-						if (!height2 || scrollHeight >= height1 && scrollHeight < height2) {
-							this.leftMenuStatus(i);
-							return ;
-						}
-					}
-				}, 10)
-			}
-		}
-	}
-</script>
-
-<style lang="scss" scoped>
-	.u-wrap {
-		height: calc(100vh);
-		/* #ifdef H5 */
-		height: calc(100vh - var(--window-top));
-		/* #endif */
-		display: flex;
-		flex-direction: column;
-	}
-
-	.u-search-box {
-		padding: 18rpx 30rpx;
-	}
-
-	.u-menu-wrap {
-		flex: 1;
-		display: flex;
-		overflow: hidden;
-	}
-
-	.u-search-inner {
-		background-color: rgb(234, 234, 234);
-		border-radius: 100rpx;
-		display: flex;
-		align-items: center;
-		padding: 10rpx 16rpx;
-	}
-
-	.u-search-text {
-		font-size: 26rpx;
-		color: $u-tips-color;
-		margin-left: 10rpx;
-	}
-
-	.u-tab-view {
-		width: 200rpx;
-		height: 100%;
-	}
-
-	.u-tab-item {
-		height: 110rpx;
-		background: #f6f6f6;
-		box-sizing: border-box;
-		display: flex;
-		align-items: center;
-		justify-content: center;
-		font-size: 26rpx;
-		color: #444;
-		font-weight: 400;
-		line-height: 1;
-	}
-
-	.u-tab-item-active {
-		position: relative;
-		color: #000;
-		font-size: 30rpx;
-		font-weight: 600;
-		background: #fff;
-	}
-
-	.u-tab-item-active::before {
-		content: "";
-		position: absolute;
-		border-left: 4px solid $u-primary;
-		height: 32rpx;
-		left: 0;
-		top: 39rpx;
-	}
-
-	.u-tab-view {
-		height: 100%;
-	}
-
-	.right-box {
-		background-color: rgb(250, 250, 250);
-	}
-
-	.page-view {
-		padding: 16rpx;
-	}
-
-	.class-item {
-		margin-bottom: 30rpx;
-		background-color: #fff;
-		padding: 16rpx;
-		border-radius: 8rpx;
-	}
-
-	.class-item:last-child {
-		min-height: 100vh;
-	}
-
-	.item-title {
-		font-size: 26rpx;
-		color: $u-main-color;
-		font-weight: bold;
-	}
-
-	.item-menu-name {
-		font-weight: normal;
-		font-size: 24rpx;
-		color: $u-main-color;
-	}
-
-	.item-container {
-		display: flex;
-		flex-wrap: wrap;
-	}
-
-	.thumb-box {
-		width: 33.333333%;
-		display: flex;
-		align-items: center;
-		justify-content: center;
-		flex-direction: column;
-		margin-top: 20rpx;
-	}
-
-	.item-menu-image {
-		width: 120rpx;
-		height: 120rpx;
-	}
-</style>
diff --git a/src/pages/template/order/index.vue b/src/pages/template/order/index.vue
deleted file mode 100644
index 7f18c3a..0000000
--- a/src/pages/template/order/index.vue
+++ /dev/null
@@ -1,505 +0,0 @@
-<template>
-	<view>
-		<view class="wrap">
-			<view class="u-tabs-box">
-				<up-tabs activeColor="#f29100" ref="tabs" :list="list" :current="current" @change="change" :is-scroll="false" swiperWidth="750"></up-tabs>
-			</view>
-			<swiper class="swiper-box" :current="swiperCurrent" @transition="transition" @animationfinish="animationfinish">
-				<swiper-item class="swiper-item">
-					<scroll-view scroll-y style="height: 100%;width: 100%;" @scrolltolower="reachBottom">
-						<view class="page-box">
-							<view class="order" v-for="(res, index) in orderList[0]" :key="res.id">
-								<view class="top">
-									<view class="left">
-										<up-icon name="home" :size="30" color="rgb(94,94,94)"></up-icon>
-										<view class="store">{{ res.store }}</view>
-										<up-icon name="arrow-right" color="rgb(203,203,203)" :size="26"></up-icon>
-									</view>
-									<view class="right">{{ res.deal }}</view>
-								</view>
-								<view class="item" v-for="(item, index) in res.goodsList" :key="index">
-									<view class="left"><image :src="item.goodsUrl" mode="aspectFill"></image></view>
-									<view class="content">
-										<view class="title u-line-2">{{ item.title }}</view>
-										<view class="type">{{ item.type }}</view>
-										<view class="delivery-time">鍙戣揣鏃堕棿 {{ item.deliveryTime }}</view>
-									</view>
-									<view class="right">
-										<view class="price">
-											锟{ priceInt(item.price) }}
-											<text class="decimal">.{{ priceDecimal(item.price) }}</text>
-										</view>
-										<view class="number">x{{ item.number }}</view>
-									</view>
-								</view>
-								<view class="total">
-									鍏眥{ totalNum(res.goodsList) }}浠跺晢鍝� 鍚堣:
-									<text class="total-price">
-										锟{ priceInt(totalPrice(res.goodsList)) }}.
-										<text class="decimal">{{ priceDecimal(totalPrice(res.goodsList)) }}</text>
-									</text>
-								</view>
-								<view class="bottom">
-									<view class="more"><up-icon name="more-dot-fill" color="rgb(203,203,203)"></up-icon></view>
-									<view class="logistics btn">鏌ョ湅鐗╂祦</view>
-									<view class="exchange btn">鍗栦簡鎹㈤挶</view>
-									<view class="evaluate btn">璇勪环</view>
-								</view>
-							</view>
-							<up-loadmore :status="loadStatus[0]" bgColor="#f2f2f2"></up-loadmore>
-						</view>
-					</scroll-view>
-				</swiper-item>
-				<swiper-item class="swiper-item">
-					<scroll-view scroll-y style="height: 100%;width: 100%;" @scrolltolower="reachBottom">
-						<view class="page-box">
-							<view class="order" v-for="(res, index) in  orderList[1]" :key="res.id">
-								<view class="top">
-									<view class="left">
-										<up-icon name="home" :size="30" color="rgb(94,94,94)"></up-icon>
-										<view class="store">{{ res.store }}</view>
-										<up-icon name="arrow-right" color="rgb(203,203,203)" :size="26"></up-icon>
-									</view>
-									<view class="right">{{ res.deal }}</view>
-								</view>
-								<view class="item" v-for="(item, index) in res.goodsList" :key="index">
-									<view class="left"><image :src="item.goodsUrl" mode="aspectFill"></image></view>
-									<view class="content">
-										<view class="title u-line-2">{{ item.title }}</view>
-										<view class="type">{{ item.type }}</view>
-										<view class="delivery-time">鍙戣揣鏃堕棿 {{ item.deliveryTime }}</view>
-									</view>
-									<view class="right">
-										<view class="price">
-											锟{ priceInt(item.price) }}
-											<text class="decimal">.{{ priceDecimal(item.price) }}</text>
-										</view>
-										<view class="number">x{{ item.number }}</view>
-									</view>
-								</view>
-								<view class="total">
-									鍏眥{ totalNum(res.goodsList) }}浠跺晢鍝� 鍚堣:
-									<text class="total-price">
-										锟{ priceInt(totalPrice(res.goodsList)) }}.
-										<text class="decimal">{{ priceDecimal(totalPrice(res.goodsList)) }}</text>
-									</text>
-								</view>
-								<view class="bottom">
-									<view class="more"><up-icon name="more-dot-fill" color="rgb(203,203,203)"></up-icon></view>
-									<view class="logistics btn">鏌ョ湅鐗╂祦</view>
-									<view class="exchange btn">鍗栦簡鎹㈤挶</view>
-									<view class="evaluate btn">璇勪环</view>
-								</view>
-							</view>
-							<up-loadmore :status="loadStatus[1]" bgColor="#f2f2f2"></up-loadmore>
-						</view>
-					</scroll-view>
-				</swiper-item>
-				<swiper-item class="swiper-item">
-					<scroll-view scroll-y style="height: 100%;width: 100%;">
-						<view class="page-box">
-							<view>
-								<view class="centre">
-									<image src="https://cdn.uviewui.com/uview/template/taobao-order.png" mode=""></image>
-									<view class="explain">
-										鎮ㄨ繕娌℃湁鐩稿叧鐨勮鍗�
-										<view class="tips">鍙互鍘荤湅鐪嬫湁閭d簺鎯充拱鐨�</view>
-									</view>
-									<view class="btn">闅忎究閫涢��</view>
-								</view>
-							</view>
-						</view>
-					</scroll-view>
-				</swiper-item>
-				<swiper-item class="swiper-item">
-					<scroll-view scroll-y style="height: 100%;width: 100%;" @scrolltolower="reachBottom">
-						<view class="page-box">
-							<view class="order" v-for="(res, index) in  orderList[3]" :key="res.id">
-								<view class="top">
-									<view class="left">
-										<up-icon name="home" :size="30" color="rgb(94,94,94)"></up-icon>
-										<view class="store">{{ res.store }}</view>
-										<up-icon name="arrow-right" color="rgb(203,203,203)" :size="26"></up-icon>
-									</view>
-									<view class="right">{{ res.deal }}</view>
-								</view>
-								<view class="item" v-for="(item, index) in res.goodsList" :key="index">
-									<view class="left"><image :src="item.goodsUrl" mode="aspectFill"></image></view>
-									<view class="content">
-										<view class="title u-line-2">{{ item.title }}</view>
-										<view class="type">{{ item.type }}</view>
-										<view class="delivery-time">鍙戣揣鏃堕棿 {{ item.deliveryTime }}</view>
-									</view>
-									<view class="right">
-										<view class="price">
-											锟{ priceInt(item.price) }}
-											<text class="decimal">.{{ priceDecimal(item.price) }}</text>
-										</view>
-										<view class="number">x{{ item.number }}</view>
-									</view>
-								</view>
-								<view class="total">
-									鍏眥{ totalNum(res.goodsList) }}浠跺晢鍝� 鍚堣:
-									<text class="total-price">
-										锟{ priceInt(totalPrice(res.goodsList)) }}.
-										<text class="decimal">{{ priceDecimal(totalPrice(res.goodsList)) }}</text>
-									</text>
-								</view>
-								<view class="bottom">
-									<view class="more"><up-icon name="more-dot-fill" color="rgb(203,203,203)"></up-icon></view>
-									<view class="logistics btn">鏌ョ湅鐗╂祦</view>
-									<view class="exchange btn">鍗栦簡鎹㈤挶</view>
-									<view class="evaluate btn">璇勪环</view>
-								</view>
-							</view>
-							<up-loadmore :status="loadStatus[3]" bgColor="#f2f2f2"></up-loadmore>
-						</view>
-					</scroll-view>
-				</swiper-item>
-			</swiper>
-		</view>
-	</view>
-</template>
-
-<script>
-export default {
-	data() {
-		return {
-			orderList: [[], [], [], []],
-			dataList: [
-				{
-					id: 1,
-					store: '澶忔棩娴佹槦闄愬畾璐╁崠',
-					deal: '浜ゆ槗鎴愬姛',
-					goodsList: [
-						{
-							goodsUrl: '//img13.360buyimg.com/n7/jfs/t1/103005/7/17719/314825/5e8c19faEb7eed50d/5b81ae4b2f7f3bb7.jpg',
-							title: '銆愬啲鏃ラ檺瀹氥�戠幇璐� 鍘熷垱jk鍒舵湇濂�2020鍐鏂版灏忔竻鏂板鏉捐蒋绯瘺琛e濂楀コ寮�琛煭娆剧櫨鎼棩绯荤敎缇庨',
-							type: '鐏拌壊;M',
-							deliveryTime: '浠樻鍚�30澶╁唴鍙戣揣',
-							price: '348.58',
-							number: 2
-						},
-						{
-							goodsUrl: '//img12.360buyimg.com/n7/jfs/t1/102191/19/9072/330688/5e0af7cfE17698872/c91c00d713bf729a.jpg',
-							title: '銆愯憽钀勮棨銆戠幇璐� 灏忔竻鏂板闄㈤鍒舵湇鏍艰鐧捐ざ瑁欏コ鐭鐧炬惌鏃ョ郴鐢滅編椋庡師鍒沯k鍒舵湇濂�2020鏂版',
-							type: '45cm;S',
-							deliveryTime: '浠樻鍚�30澶╁唴鍙戣揣',
-							price: '135.00',
-							number: 1
-						}
-					]
-				},
-				{
-					id: 2,
-					store: '姹熷崡鐨潻鍘�',
-					deal: '浜ゆ槗澶辫触',
-					goodsList: [
-						{
-							goodsUrl: '//img14.360buyimg.com/n7/jfs/t1/60319/15/6105/406802/5d43f68aE9f00db8c/0affb7ac46c345e2.jpg',
-							title: '銆愬啲鏃ラ檺瀹氥�戠幇璐� 鍘熷垱jk鍒舵湇濂�2020鍐鏂版灏忔竻鏂板鏉捐蒋绯瘺琛e濂楀コ寮�琛煭娆剧櫨鎼棩绯荤敎缇庨',
-							type: '绮夎壊;M',
-							deliveryTime: '浠樻鍚�7澶╁唴鍙戣揣',
-							price: '128.05',
-							number: 1
-						}
-					]
-				},
-				{
-					id: 3,
-					store: '涓夋槦鏃楄埌搴�',
-					deal: '浜ゆ槗澶辫触',
-					goodsList: [
-						{
-							goodsUrl: '//img11.360buyimg.com/n7/jfs/t1/94448/29/2734/524808/5dd4cc16E990dfb6b/59c256f85a8c3757.jpg',
-							title: '涓夋槦锛圫AMSUNG锛変含鍝佸鐢� UA65RUF70AJXXZ 65鑻卞4K瓒呴珮娓� HDR 浜笢寰仈 鏅鸿兘璇煶 鏁欒偛璧勬簮娑叉櫠鐢佃鏈�',
-							type: '4K锛屽箍鑹插煙',
-							deliveryTime: '淇濊川5骞�',
-							price: '1998',
-							number: 3
-						},
-						{
-							goodsUrl: '//img14.360buyimg.com/n7/jfs/t6007/205/4099529191/294869/ae4e6d4f/595dcf19Ndce3227d.jpg!q90.jpg',
-							title: '缇庣殑(Midea)639鍗� 瀵瑰紑闂ㄥ啺绠� 19鍒嗛挓鎬ラ�熷噣鍛� 涓�绾ц兘鏁堝喎钘忓弻寮�闂ㄦ潃鑿屾櫤鑳藉鐢ㄥ弻鍙橀鑺傝兘 BCD-639WKPZM(E)',
-							type: '瀹归噺澶э紝閫熷喕',
-							deliveryTime: '淇濊川5骞�',
-							price: '2354',
-							number: 1
-						}
-					]
-				},
-				{
-					id: 4,
-					store: '涓夋槦鏃楄埌搴�',
-					deal: '浜ゆ槗澶辫触',
-					goodsList: [
-						{
-							goodsUrl: '//img10.360buyimg.com/n7/jfs/t22300/31/1505958241/171936/9e201a89/5b2b12ffNe6dbb594.jpg!q90.jpg',
-							title: '娉曞浗杩涘彛绾㈤厭 鎷夎彶锛圠AFITE锛変紶濂囨尝灏斿骞茬孩钁¤悇閰�750ml*6鏁寸瑁�',
-							type: '4K锛屽箍鑹插煙',
-							deliveryTime: '鐝嶈棌10骞村ソ閰�',
-							price: '1543',
-							number: 3
-						},
-						{
-							goodsUrl: '//img10.360buyimg.com/n7/jfs/t1/107598/17/3766/525060/5e143aacE9a94d43c/03573ae60b8bf0ee.jpg',
-							title: '钃濆锛圔LUE GIRL锛夐叿鐖藉暏閰� 娓呭暏 鍘熻杩涘彛鍟ら厭 缃愯 500ml*9鍚� 鏁寸瑁�',
-							type: '涓�鎵�',
-							deliveryTime: '鍙f劅濂�',
-							price: '120',
-							number: 1
-						}
-					]
-				},
-				{
-					id: 5,
-					store: '涓夋槦鏃楄埌搴�',
-					deal: '浜ゆ槗鎴愬姛',
-					goodsList: [
-						{
-							goodsUrl: '//img12.360buyimg.com/n7/jfs/t1/52408/35/3554/78293/5d12e9cfEfd118ba1/ba5995e62cbd747f.jpg!q90.jpg',
-							title: '浼佷笟寰俊 涓帶浜鸿劯鎸囩汗璇嗗埆鑰冨嫟鏈哄埛鑴告満 鏃犵嚎绛惧埌寮傚湴澶氬簵鎵撳崱鏈篧X108',
-							type: '璇嗗埆鏁堢巼楂�',
-							deliveryTime: '浣跨敤鏂逛究',
-							price: '451',
-							number: 9
-						}
-					]
-				}
-			],
-			list: [
-				{
-					name: '寰呬粯娆�'
-				},
-				{
-					name: '寰呭彂璐�'
-				},
-				{
-					name: '寰呮敹璐�'
-				},
-				{
-					name: '寰呰瘎浠�',
-					count: 12
-				}
-			],
-			current: 0,
-			swiperCurrent: 0,
-			tabsHeight: 0,
-			dx: 0,
-			loadStatus: ['loadmore','loadmore','loadmore','loadmore'],
-		};
-	},
-	onLoad() {
-		this.getOrderList(0);
-		this.getOrderList(1);
-		this.getOrderList(3);
-	},
-	computed: {
-		// 浠锋牸灏忔暟
-		priceDecimal() {
-			return val => {
-				if (val !== parseInt(val)) return val.slice(-2);
-				else return '00';
-			};
-		},
-		// 浠锋牸鏁存暟
-		priceInt() {
-			return val => {
-				if (val !== parseInt(val)) return val.split('.')[0];
-				else return val;
-			};
-		}
-	},
-	methods: {
-		reachBottom() {
-			// 姝ab涓虹┖鏁版嵁
-			if(this.current != 2) {
-				this.loadStatus.splice(this.current,1,"loading")
-				setTimeout(() => {
-					this.getOrderList(this.current);
-				}, 1200);
-			}
-		},
-		// 椤甸潰鏁版嵁
-		getOrderList(idx) {
-			for(let i = 0; i < 5; i++) {
-				let index = this.$u.random(0, this.dataList.length - 1);
-				let data = JSON.parse(JSON.stringify(this.dataList[index]));
-				data.id = this.$u.guid();
-				this.orderList[idx].push(data);
-			}
-			this.loadStatus.splice(this.current,1,"loadmore")
-		},
-		// 鎬讳环
-		totalPrice(item) {
-			let price = 0;
-			item.map(val => {
-				price += parseFloat(val.price);
-			});
-			return price.toFixed(2);
-		},
-		// 鎬讳欢鏁�
-		totalNum(item) {
-			let num = 0;
-			item.map(val => {
-				num += val.number;
-			});
-			return num;
-		},
-		// tab鏍忓垏鎹�
-		change(e) {
-			this.swiperCurrent = e.index;
-			this.getOrderList(e.index);
-		},
-		transition({ detail: { dx } }) {
-			// this.$refs.tabs.setDx(dx);
-		},
-		animationfinish({ detail: { current } }) {
-			this.swiperCurrent = current;
-			this.current = current;
-		}
-	}
-};
-</script>
-
-<style>
-/* #ifndef H5 */
-page {
-	height: 100%;
-	background-color: #f2f2f2;
-}
-/* #endif */
-</style>
-
-<style lang="scss" scoped>
-.order {
-	width: 710rpx;
-	background-color: #ffffff;
-	margin: 20rpx auto;
-	border-radius: 20rpx;
-	box-sizing: border-box;
-	padding: 20rpx;
-	font-size: 28rpx;
-	.top {
-		display: flex;
-		justify-content: space-between;
-		.left {
-			display: flex;
-			align-items: center;
-			.store {
-				margin: 0 10rpx;
-				font-size: 32rpx;
-				font-weight: bold;
-			}
-		}
-		.right {
-			color: $u-warning-dark;
-		}
-	}
-	.item {
-		display: flex;
-		margin: 20rpx 0 0;
-		.left {
-			margin-right: 20rpx;
-			image {
-				width: 200rpx;
-				height: 200rpx;
-				border-radius: 10rpx;
-			}
-		}
-		.content {
-			.title {
-				font-size: 28rpx;
-				line-height: 50rpx;
-			}
-			.type {
-				margin: 10rpx 0;
-				font-size: 24rpx;
-				color: $u-tips-color;
-			}
-			.delivery-time {
-				color: #e5d001;
-				font-size: 24rpx;
-			}
-		}
-		.right {
-			margin-left: 10rpx;
-			padding-top: 20rpx;
-			text-align: right;
-			.decimal {
-				font-size: 24rpx;
-				margin-top: 4rpx;
-			}
-			.number {
-				color: $u-tips-color;
-				font-size: 24rpx;
-			}
-		}
-	}
-	.total {
-		margin-top: 20rpx;
-		text-align: right;
-		font-size: 24rpx;
-		.total-price {
-			font-size: 32rpx;
-		}
-	}
-	.bottom {
-		display: flex;
-		margin-top: 40rpx;
-		padding: 0 10rpx;
-		justify-content: space-between;
-		align-items: center;
-		.btn {
-			line-height: 52rpx;
-			width: 160rpx;
-			border-radius: 26rpx;
-			border: 2rpx solid $u-border-color;
-			font-size: 26rpx;
-			text-align: center;
-			color: $u-info-dark;
-		}
-		.evaluate {
-			color: $u-warning-dark;
-			border-color: $u-warning-dark;
-		}
-	}
-}
-.centre {
-	text-align: center;
-	margin: 200rpx auto;
-	font-size: 32rpx;
-	image {
-		width: 164rpx;
-		height: 164rpx;
-		border-radius: 50%;
-		margin-bottom: 20rpx;
-	}
-	.tips {
-		font-size: 24rpx;
-		color: #999999;
-		margin-top: 20rpx;
-	}
-	.btn {
-		margin: 80rpx auto;
-		width: 200rpx;
-		border-radius: 32rpx;
-		line-height: 64rpx;
-		color: #ffffff;
-		font-size: 26rpx;
-		background: linear-gradient(270deg, rgba(249, 116, 90, 1) 0%, rgba(255, 158, 1, 1) 100%);
-	}
-}
-.wrap {
-	display: flex;
-	flex-direction: column;
-	height: calc(100vh - var(--window-top));
-	width: 100%;
-}
-.swiper-box {
-	flex: 1;
-}
-.swiper-item {
-	height: 100%;
-}
-</style>
diff --git a/src/pages/template/submitBar/index.vue b/src/pages/template/submitBar/index.vue
deleted file mode 100644
index ae28957..0000000
--- a/src/pages/template/submitBar/index.vue
+++ /dev/null
@@ -1,73 +0,0 @@
-<template>
-	<view class="navigation">
-		<view class="left">
-			<view class="item">
-				<up-icon name="server-fill" :size="20" :color="$u.color['contentColor']"></up-icon>
-				<view class="text u-line-1">瀹㈡湇</view>
-			</view>
-			<view class="item">
-				<up-icon name="home" :size="20" :color="$u.color['contentColor']"></up-icon>
-				<view class="text u-line-1">搴楅摵</view>
-			</view>
-			<view class="item car">
-				<up-badge class="car-num" :count="9" type="error" :offset="[-3, -6]"></up-badge>
-				<up-icon name="shopping-cart" :size="20" :color="$u.color['contentColor']"></up-icon>
-				<view class="text u-line-1">璐墿杞�</view>
-			</view>
-		</view>
-		<view class="right">
-			<view class="cart btn u-line-1">鍔犲叆璐墿杞�</view>
-			<view class="buy btn u-line-1">绔嬪嵆璐拱</view>
-		</view>
-	</view>
-</template>
-
-<script>
-export default {
-	
-};
-</script>
-
-<style lang="scss" scoped>
-.navigation {
-	display: flex;
-	margin-top: 100rpx;
-	border: solid 2rpx #f2f2f2;
-	background-color: #ffffff;
-	padding: 16rpx 0;
-	.left {
-		display: flex;
-		font-size: 20rpx;
-		.item {
-			margin: 0 20rpx;
-			&.car {
-				text-align: center;
-				position: relative;
-				.car-num {
-					position: absolute;
-					top: -10rpx;
-					right: -10rpx;
-				}
-			}
-		}
-	}
-	.right {
-		display: flex;
-		font-size: 28rpx;
-		align-items: center;
-		.btn {
-			line-height: 66rpx;
-			padding: 0 30rpx;
-			border-radius: 36rpx;
-			color: #ffffff;
-		}
-		.cart {
-			background-color: #ed3f14;
-			margin-right: 30rpx;
-		}
-		.buy {
-			background-color: #ff7900;
-		}
-	}
-}
-</style>
diff --git a/src/pages/template/wxCenter/index.vue b/src/pages/template/wxCenter/index.vue
deleted file mode 100644
index 9fc60f4..0000000
--- a/src/pages/template/wxCenter/index.vue
+++ /dev/null
@@ -1,85 +0,0 @@
-<template>
-	<view>
-		<up-navbar :fixed="false" :is-back="true" title="銆�" :border-bottom="false">
-			<view class="u-flex u-row-right" style="width: 100%;">
-				<view class="camera u-flex u-row-center">
-					<up-icon name="camera-fill" color="#000000" size="48"></up-icon>
-				</view>
-			</view>
-		</up-navbar>
-		<view class="u-flex u-flex-y-center u-flex-around user-box u-p-l-30 u-p-r-20 u-p-b-30">
-			<view class="u-m-r-10">
-				<up-avatar :src="pic" size="140"></up-avatar>
-			</view>
-			<view class="u-flex-1">
-				<view class="u-font-18 u-p-b-20">uview plus</view>
-				<view class="u-font-14 u-tips-color">寰俊鍙�:test</view>
-			</view>
-			<view class="u-m-l-10 u-p-10">
-				<up-icon name="scan" color="#969799" size="28"></up-icon>
-			</view>
-			<view class="u-m-l-10 u-p-10">
-				<up-icon name="arrow-right" color="#969799" size="28"></up-icon>
-			</view>
-		</view>
-		
-		<view class="u-m-t-20">
-			<up-cell-group>
-				<up-cell icon="rmb-circle" title="鏀粯"></up-cell>
-			</up-cell-group>
-		</view>
-		
-		<view class="u-m-t-20">
-			<up-cell-group>
-				<up-cell icon="star" title="鏀惰棌"></up-cell>
-				<up-cell icon="photo" title="鐩稿唽"></up-cell>
-				<up-cell icon="coupon" title="鍗″埜"></up-cell>
-				<up-cell icon="heart" title="鍏虫敞"></up-cell>
-			</up-cell-group>
-		</view>
-		
-		<view class="u-m-t-20">
-			<up-cell-group>
-				<up-cell icon="setting" title="璁剧疆"></up-cell>
-			</up-cell-group>
-		</view>
-	</view>
-</template>
-
-<script>
-	export default {
-		data() {
-			return {
-				pic:'https://uviewui.com/common/logo.png',
-				show:true
-			}
-		},
-		onLoad() {
-			
-		},
-		methods: {
-			
-		}
-	}
-</script>
-
-<style lang="scss">
-page{
-	background-color: #ededed;
-}
-
-.camera{
-	width: 54px;
-	height: 44px;
-	
-	&:active{
-		background-color: #ededed;
-	}
-}
-.user-box{
-	background-color: #fff;
-}
-.u-cell-group {
-	background-color: #fff;
-}
-</style>
diff --git a/src/pages/wallet/index.vue b/src/pages/wallet/index.vue
index 770b8f7..968d9c2 100644
--- a/src/pages/wallet/index.vue
+++ b/src/pages/wallet/index.vue
@@ -7,26 +7,32 @@
 						<view class="c-p-b-16">
 							{{identity=='enterprise'?"浼佷笟浣欓锛堝厓锛�":'鏀跺叆浣欓锛堝厓锛�'}}
 						</view>
-						<text class="chuany-font50 fs-weight__500">12.88</text>
+						<text class="chuany-font50 fs-weight__500">{{balance}}</text>
 					</view>
 					<view class="right">
-						<up-button type="warning" size="small" shape="circle" :text="identity=='enterprise'?'鍏呭��':'鎻愮幇'"></up-button>
+						<up-button type="warning" size="small" shape="circle" @click="goMoney"
+							:text="identity=='enterprise'?'鍏呭��':'鎻愮幇'"></up-button>
 					</view>
 				</view>
 			</view>
 
-			<view class="money_bag">
+			<view class="money_bag" v-if="identity=='worker'">
 				<view class="tool_wrap">
 					<view class="tool_title chuany-flex chuany-justify-between">
 						<view class="title">
 							<text>鏀跺叆鏄庣粏</text>
 						</view>
-						<view class="chuany-flex title_right">
+						<view class="chuany-flex title_right" @click="toIncome">
 							<text class="c-m-r-10">鍏ㄩ儴</text>
 							<up-icon name="arrow-right"></up-icon>
 						</view>
 					</view>
-					<view class="tool_content">
+					<view class="" v-if="imcomeInfo&&imcomeInfo.length>0">
+						<up-cell :value="`${item.yiTiXianJine} 鍏僠" :title="item.zhiChuShouRuName" :label="item.remark"
+							:key="index" v-for="(item,index) in imcomeInfo"></up-cell>
+					</view>
+
+					<view class="tool_content" v-else>
 						<up-empty mode="list" icon="http://cdn.uviewui.com/uview/empty/list.png">
 						</up-empty>
 					</view>
@@ -44,11 +50,60 @@
 		},
 		data() {
 			return {
-				identity: ''
+				identity: '',
+				imcomeInfo: null,
+				pageIndex: 1,
+				pageSize: 20,
+				balance: '0.00'
 			}
 		},
+		onLoad() {
+			let that = this
+			this.userInfo = this.$db.get('userInfo') ? JSON.parse(this.$db.get('userInfo')) : {}
+			uni.getStorage({
+				key: 'identity',
+				success: function(res) {
+					that.identity = res.data
+					if (res.data == 'worker') {
+						that.balance = that.$common.moneySub(that.userInfo.userWorker.tiXianZonge, that
+							.userInfo.userWorker.yiTiXianJine)
+					} else {
+						console.log(that.identity, that.userInfo.userWorker.tiXianZonge,
+							'userInfo.userWorker.tiXianZonge');
+						that.balance = that.userInfo.userCompany.chongZhiYue ? that.userInfo.userCompany
+							.chongZhiYue : '0.00'
+					}
+				}
+			});
+			this.PostMyTiXianDetailListPage()
+		},
 		methods: {
-
+			PostMyTiXianDetailListPage() {
+				let obj = {
+					pageIndex: this.pageIndex,
+					pageSize: this.pageSize
+				}
+				this.$api.PostMyTiXianDetailListPage(obj).then(res => {
+					this.imcomeInfo = res.data.items
+					console.log(res, this.imcomeInfo, '==============');
+				})
+			},
+			toIncome() {
+				uni.navigateTo({
+					url: '/pages/income/income'
+				})
+			},
+			goMoney() {
+				if (this.identity == 'enterprise') {
+					uni.navigateTo({
+						url: '/pages/wallet/withdrawal'
+					})
+				} else {
+					uni.navigateTo({
+						url: '/pages/wallet/recharge'
+					})
+				}
+			}
 		}
 	}
 </script>
@@ -103,13 +158,15 @@
 		.tool_title {
 			padding: 30rpx;
 			border-bottom: 2rpx solid #eee;
+
 			.title {
 				color: #333;
 				font-size: 32rpx;
 				font-weight: 700;
 			}
-			.title_right{
-				color:#939499;
+
+			.title_right {
+				color: #939499;
 			}
 		}
 
diff --git a/src/pages/wallet/recharge.vue b/src/pages/wallet/recharge.vue
new file mode 100644
index 0000000..b15b488
--- /dev/null
+++ b/src/pages/wallet/recharge.vue
@@ -0,0 +1,64 @@
+<template>
+	<view class="full-page">
+		<view class="content">
+			<view class="balance">
+				<view class="header chuany-flex chuany-justify-between chuany-align-center">
+					<view class="left chuany-align-center">
+						<text class="chuany-font40 c-p-r-10">锟�</text>
+						<up-input border="surround" v-model="money"></up-input>
+					</view>
+					<view class="right">
+						<up-button type="warning" size="small" shape="circle" text='鎻愮幇'></up-button>
+					</view>
+				</view>
+			</view>
+		</view>
+	</view>
+</template>
+
+<script>
+	export default {
+		data() {
+			return {
+				money: null
+			}
+		}
+	}
+</script>
+
+<style lang="scss">
+	.content {
+		width: 100%;
+		height: 390rpx;
+		background-color: #fed244;
+		box-sizing: border-box;
+		padding: 32rpx;
+
+		.balance {
+			width: 100%;
+			height: 100%;
+			box-sizing: border-box;
+			background-color: #fff;
+			border-radius: 20rpx;
+			padding: 30rpx;
+
+			.header {
+				width: 100%;
+				height: 100%;
+				box-sizing: border-box;
+				border: 1px solid #eeeff4;
+				border-radius: 15rpx;
+				padding: 25rpx;
+				background-image: linear-gradient(to bottom, #f4f5fc, #ffffff);
+
+				.left {
+					display: flex;
+				}
+
+				.right {
+					width: 130rpx;
+				}
+			}
+		}
+	}
+</style>
\ No newline at end of file
diff --git a/src/pages/wallet/withdrawal.vue b/src/pages/wallet/withdrawal.vue
new file mode 100644
index 0000000..63d788d
--- /dev/null
+++ b/src/pages/wallet/withdrawal.vue
@@ -0,0 +1,64 @@
+<template>
+	<view class="full-page">
+		<view class="content">
+			<view class="balance">
+				<view class="header chuany-flex chuany-justify-between chuany-align-center">
+					<view class="left chuany-align-center">
+						<text class="chuany-font40 c-p-r-10">锟�</text>
+						<up-input border="surround" v-model="money"></up-input>
+					</view>
+					<view class="right">
+						<up-button type="warning" size="small" shape="circle" text='鍏呭��'></up-button>
+					</view>
+				</view>
+			</view>
+		</view>
+	</view>
+</template>
+
+<script>
+	export default {
+		data() {
+			return {
+				money: null
+			}
+		}
+	}
+</script>
+
+<style lang="scss">
+	.content {
+		width: 100%;
+		height: 390rpx;
+		background-color: #fed244;
+		box-sizing: border-box;
+		padding: 32rpx;
+
+		.balance {
+			width: 100%;
+			height: 100%;
+			box-sizing: border-box;
+			background-color: #fff;
+			border-radius: 20rpx;
+			padding: 30rpx;
+
+			.header {
+				width: 100%;
+				height: 100%;
+				box-sizing: border-box;
+				border: 1px solid #eeeff4;
+				border-radius: 15rpx;
+				padding: 25rpx;
+				background-image: linear-gradient(to bottom, #f4f5fc, #ffffff);
+
+				.left {
+					display: flex;
+				}
+
+				.right {
+					width: 130rpx;
+				}
+			}
+		}
+	}
+</style>
\ No newline at end of file
diff --git a/src/pages/worker/worker.vue b/src/pages/worker/worker.vue
new file mode 100644
index 0000000..7bf0cc8
--- /dev/null
+++ b/src/pages/worker/worker.vue
@@ -0,0 +1,35 @@
+<template>
+	<view>
+
+	</view>
+</template>
+
+<script>
+	export default {
+		data() {
+			return {
+				workerId: '',
+				workerInfo: null
+			}
+		},
+		onLoad(option) {
+			let {
+				workerid
+			} = option
+			this.workerId = workerid
+			console.log(this.workerId,workerid,option);
+			this.getWorkerInfo(this.workerId)
+		},
+		methods: {
+			getWorkerInfo(id) {
+				this.$api.getUserId(id).then(res => {
+					this.workerInfo = res.data
+				})
+			},
+		}
+	}
+</script>
+
+<style>
+
+</style>
\ No newline at end of file
diff --git a/src/static/image/record.png b/src/static/image/record.png
new file mode 100644
index 0000000..b9f0434
--- /dev/null
+++ b/src/static/image/record.png
Binary files differ
diff --git a/stats.html b/stats.html
index 298d669..7077478 100644
--- a/stats.html
+++ b/stats.html
@@ -4822,7 +4822,7 @@
   </script>
   <script>
     /*<!--*/
-    const data = {"version":2,"tree":{"name":"root","children":[{"name":"app.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src","children":[{"uid":"9d1b56c3-1","name":"pages-json-js"},{"uid":"9d1b56c3-3","name":"App.vue?vue&type=style&index=0&lang.scss"},{"uid":"9d1b56c3-5","name":"App.vue"},{"uid":"9d1b56c3-7","name":"main.ts"}]}]},{"name":"common/assets.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/static","children":[{"uid":"9d1b56c3-9","name":"logo.png"},{"name":"image","children":[{"uid":"9d1b56c3-11","name":"fabu.png"},{"uid":"9d1b56c3-13","name":"guanli.png"},{"uid":"9d1b56c3-15","name":"qiye.png"},{"uid":"9d1b56c3-17","name":"server.png"},{"uid":"9d1b56c3-19","name":"dingwei.png"}]}]}]},{"name":"common/locales/en.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/common/locales/en.js","uid":"9d1b56c3-21"}]},{"name":"common/locales/zh.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/common/locales/zh.js","uid":"9d1b56c3-23"}]},{"name":"common/mixin.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/common/mixin.js","uid":"9d1b56c3-25"}]},{"name":"common/request/http.api.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/common/request/http.api.js","uid":"9d1b56c3-27"}]},{"name":"uni_modules/uview-plus/index.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/index.js","uid":"9d1b56c3-29"}]},{"name":"common/request/request.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/common/request/request.js","uid":"9d1b56c3-31"}]},{"name":"common/vendor.js","children":[{"name":"node_modules","children":[{"name":"@vue/shared/dist/shared.esm-bundler.js","uid":"9d1b56c3-33"},{"name":"@dcloudio","children":[{"name":"uni-i18n/dist/uni-i18n.es.js","uid":"9d1b56c3-35"},{"name":"uni-shared/dist/uni-shared.es.js","uid":"9d1b56c3-37"},{"name":"uni-app/dist/uni-app.es.js","uid":"9d1b56c3-65"}]},{"name":"vuex/dist/vuex.esm-bundler.js","uid":"9d1b56c3-47"}]},{"name":"D:/zcweb/uniapp/temporaryworker/node_modules","children":[{"name":"@dcloudio","children":[{"name":"uni-mp-weixin/dist","children":[{"uid":"9d1b56c3-39","name":"uni.api.esm.js"},{"uid":"9d1b56c3-45","name":"uni.mp.esm.js"}]},{"name":"uni-mp-vue/dist/vue.runtime.esm.js","uid":"9d1b56c3-43"},{"name":"uni-cli-shared/lib/vue-i18n/dist/vue-i18n.runtime.esm-bundler.js","uid":"9d1b56c3-63"}]},{"name":"@intlify","children":[{"name":"shared/dist/shared.esm-bundler.js","uid":"9d1b56c3-49"},{"name":"message-resolver/dist/message-resolver.esm-bundler.js","uid":"9d1b56c3-51"},{"name":"runtime/dist/runtime.esm-bundler.js","uid":"9d1b56c3-53"},{"name":"message-compiler/dist/message-compiler.esm-bundler.js","uid":"9d1b56c3-55"},{"name":"devtools-if/dist/devtools-if.esm-bundler.js","uid":"9d1b56c3-57"},{"name":"core-base/dist/core-base.esm-bundler.js","uid":"9d1b56c3-59"},{"name":"vue-devtools/dist/vue-devtools.esm-bundler.js","uid":"9d1b56c3-61"}]}]},{"uid":"9d1b56c3-41","name":"\u0000plugin-vue:export-helper"}]},{"name":"common/setting/constVarsHelper.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/common/setting/constVarsHelper.js","uid":"9d1b56c3-67"}]},{"name":"common/utils/dbHelper.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/common/utils/dbHelper.js","uid":"9d1b56c3-69"}]},{"name":"common/utils/commonHelper.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/common/utils/commonHelper.js","uid":"9d1b56c3-71"}]},{"name":"common/utils/uploadHelper.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/common/utils/uploadHelper.js","uid":"9d1b56c3-73"}]},{"name":"common/utils/util.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/common/utils/util.js","uid":"9d1b56c3-75"}]},{"name":"store/index.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/store/index.js","uid":"9d1b56c3-77"}]},{"name":"uni_modules/uni-transition/components/uni-transition/createAnimation.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uni-transition/components/uni-transition/createAnimation.js","uid":"9d1b56c3-79"}]},{"name":"uni_modules/uview-plus/components/u-avatar/props.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-avatar/props.js","uid":"9d1b56c3-81"}]},{"name":"uni_modules/uview-plus/libs/vue.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/vue.js","uid":"9d1b56c3-83"}]},{"name":"uni_modules/uview-plus/libs/config/props.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props.js","uid":"9d1b56c3-85"}]},{"name":"uni_modules/uview-plus/libs/function/test.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/function/test.js","uid":"9d1b56c3-87"}]},{"name":"uni_modules/uview-plus/components/u-button/props.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-button/props.js","uid":"9d1b56c3-89"}]},{"name":"uni_modules/uview-plus/components/u-cell/props.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-cell/props.js","uid":"9d1b56c3-91"}]},{"name":"uni_modules/uview-plus/components/u-empty/props.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-empty/props.js","uid":"9d1b56c3-93"}]},{"name":"uni_modules/uview-plus/components/u-form-item/props.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-form-item/props.js","uid":"9d1b56c3-95"}]},{"name":"uni_modules/uview-plus/components/u-form/props.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-form/props.js","uid":"9d1b56c3-97"}]},{"name":"uni_modules/uview-plus/components/u-icon/icons.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-icon/icons.js","uid":"9d1b56c3-99"}]},{"name":"uni_modules/uview-plus/components/u-icon/props.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-icon/props.js","uid":"9d1b56c3-101"}]},{"name":"uni_modules/uview-plus/components/u-input/props.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-input/props.js","uid":"9d1b56c3-103"}]},{"name":"uni_modules/uview-plus/components/u-line/props.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-line/props.js","uid":"9d1b56c3-105"}]},{"name":"uni_modules/uview-plus/components/u-link/props.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-link/props.js","uid":"9d1b56c3-107"}]},{"name":"uni_modules/uview-plus/components/u-list-item/props.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-list-item/props.js","uid":"9d1b56c3-109"}]},{"name":"uni_modules/uview-plus/components/u-list/props.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-list/props.js","uid":"9d1b56c3-111"}]},{"name":"uni_modules/uview-plus/components/u-loading-icon/props.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-loading-icon/props.js","uid":"9d1b56c3-113"}]},{"name":"uni_modules/uview-plus/components/u-loadmore/props.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-loadmore/props.js","uid":"9d1b56c3-115"}]},{"name":"uni_modules/uview-plus/components/u-number-box/props.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-number-box/props.js","uid":"9d1b56c3-117"}]},{"name":"uni_modules/uview-plus/components/u-search/props.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-search/props.js","uid":"9d1b56c3-119"}]},{"name":"uni_modules/uview-plus/components/u-sticky/props.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-sticky/props.js","uid":"9d1b56c3-121"}]},{"name":"uni_modules/uview-plus/components/u-subsection/props.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-subsection/props.js","uid":"9d1b56c3-123"}]},{"name":"uni_modules/uview-plus/components/u-tag/props.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-tag/props.js","uid":"9d1b56c3-125"}]},{"name":"uni_modules/uview-plus/components/u-text/props.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-text/props.js","uid":"9d1b56c3-127"}]},{"name":"uni_modules/uview-plus/components/u-text/value.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-text/value.js","uid":"9d1b56c3-129"}]},{"name":"uni_modules/uview-plus/libs/function/index.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/function/index.js","uid":"9d1b56c3-131"}]},{"name":"uni_modules/uview-plus/components/u-textarea/props.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-textarea/props.js","uid":"9d1b56c3-133"}]},{"name":"uni_modules/uview-plus/components/u-transition/props.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-transition/props.js","uid":"9d1b56c3-135"}]},{"name":"uni_modules/uview-plus/components/u-transition/transition.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-transition/transition.js","uid":"9d1b56c3-137"}]},{"name":"uni_modules/uview-plus/libs/mixin/mixin.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/mixin/mixin.js","uid":"9d1b56c3-139"}]},{"name":"uni_modules/uview-plus/libs/mixin/mpMixin.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/mixin/mpMixin.js","uid":"9d1b56c3-141"}]},{"name":"uni_modules/uview-plus/libs/luch-request/core/Request.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/luch-request/core/Request.js","uid":"9d1b56c3-143"}]},{"name":"uni_modules/uview-plus/libs/util/route.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/util/route.js","uid":"9d1b56c3-145"}]},{"name":"uni_modules/uview-plus/libs/function/colorGradient.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/function/colorGradient.js","uid":"9d1b56c3-147"}]},{"name":"uni_modules/uview-plus/libs/function/debounce.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/function/debounce.js","uid":"9d1b56c3-149"}]},{"name":"uni_modules/uview-plus/libs/function/throttle.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/function/throttle.js","uid":"9d1b56c3-151"}]},{"name":"uni_modules/uview-plus/libs/config/config.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/config.js","uid":"9d1b56c3-153"}]},{"name":"uni_modules/uview-plus/libs/config/zIndex.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/zIndex.js","uid":"9d1b56c3-155"}]},{"name":"uni_modules/uview-plus/libs/config/color.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/color.js","uid":"9d1b56c3-157"}]},{"name":"uni_modules/uview-plus/libs/function/platform.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/function/platform.js","uid":"9d1b56c3-159"}]},{"name":"uni_modules/uview-plus/libs/config/props/actionSheet.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/actionSheet.js","uid":"9d1b56c3-161"}]},{"name":"uni_modules/uview-plus/libs/config/props/album.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/album.js","uid":"9d1b56c3-163"}]},{"name":"uni_modules/uview-plus/libs/config/props/alert.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/alert.js","uid":"9d1b56c3-165"}]},{"name":"uni_modules/uview-plus/libs/config/props/avatar.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/avatar.js","uid":"9d1b56c3-167"}]},{"name":"uni_modules/uview-plus/libs/config/props/avatarGroup.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/avatarGroup.js","uid":"9d1b56c3-169"}]},{"name":"uni_modules/uview-plus/libs/config/props/backtop.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/backtop.js","uid":"9d1b56c3-171"}]},{"name":"uni_modules/uview-plus/libs/config/props/badge.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/badge.js","uid":"9d1b56c3-173"}]},{"name":"uni_modules/uview-plus/libs/config/props/button.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/button.js","uid":"9d1b56c3-175"}]},{"name":"uni_modules/uview-plus/libs/config/props/calendar.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/calendar.js","uid":"9d1b56c3-177"}]},{"name":"uni_modules/uview-plus/libs/config/props/carKeyboard.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/carKeyboard.js","uid":"9d1b56c3-179"}]},{"name":"uni_modules/uview-plus/libs/config/props/cell.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/cell.js","uid":"9d1b56c3-181"}]},{"name":"uni_modules/uview-plus/libs/config/props/cellGroup.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/cellGroup.js","uid":"9d1b56c3-183"}]},{"name":"uni_modules/uview-plus/libs/config/props/checkbox.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/checkbox.js","uid":"9d1b56c3-185"}]},{"name":"uni_modules/uview-plus/libs/config/props/checkboxGroup.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/checkboxGroup.js","uid":"9d1b56c3-187"}]},{"name":"uni_modules/uview-plus/libs/config/props/circleProgress.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/circleProgress.js","uid":"9d1b56c3-189"}]},{"name":"uni_modules/uview-plus/libs/config/props/code.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/code.js","uid":"9d1b56c3-191"}]},{"name":"uni_modules/uview-plus/libs/config/props/codeInput.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/codeInput.js","uid":"9d1b56c3-193"}]},{"name":"uni_modules/uview-plus/libs/config/props/col.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/col.js","uid":"9d1b56c3-195"}]},{"name":"uni_modules/uview-plus/libs/config/props/collapse.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/collapse.js","uid":"9d1b56c3-197"}]},{"name":"uni_modules/uview-plus/libs/config/props/collapseItem.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/collapseItem.js","uid":"9d1b56c3-199"}]},{"name":"uni_modules/uview-plus/libs/config/props/columnNotice.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/columnNotice.js","uid":"9d1b56c3-201"}]},{"name":"uni_modules/uview-plus/libs/config/props/countDown.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/countDown.js","uid":"9d1b56c3-203"}]},{"name":"uni_modules/uview-plus/libs/config/props/countTo.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/countTo.js","uid":"9d1b56c3-205"}]},{"name":"uni_modules/uview-plus/libs/config/props/datetimePicker.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/datetimePicker.js","uid":"9d1b56c3-207"}]},{"name":"uni_modules/uview-plus/libs/config/props/divider.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/divider.js","uid":"9d1b56c3-209"}]},{"name":"uni_modules/uview-plus/libs/config/props/empty.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/empty.js","uid":"9d1b56c3-211"}]},{"name":"uni_modules/uview-plus/libs/config/props/form.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/form.js","uid":"9d1b56c3-213"}]},{"name":"uni_modules/uview-plus/libs/config/props/formItem.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/formItem.js","uid":"9d1b56c3-215"}]},{"name":"uni_modules/uview-plus/libs/config/props/gap.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/gap.js","uid":"9d1b56c3-217"}]},{"name":"uni_modules/uview-plus/libs/config/props/grid.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/grid.js","uid":"9d1b56c3-219"}]},{"name":"uni_modules/uview-plus/libs/config/props/gridItem.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/gridItem.js","uid":"9d1b56c3-221"}]},{"name":"uni_modules/uview-plus/libs/config/props/icon.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/icon.js","uid":"9d1b56c3-223"}]},{"name":"uni_modules/uview-plus/libs/config/props/image.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/image.js","uid":"9d1b56c3-225"}]},{"name":"uni_modules/uview-plus/libs/config/props/indexAnchor.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/indexAnchor.js","uid":"9d1b56c3-227"}]},{"name":"uni_modules/uview-plus/libs/config/props/indexList.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/indexList.js","uid":"9d1b56c3-229"}]},{"name":"uni_modules/uview-plus/libs/config/props/input.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/input.js","uid":"9d1b56c3-231"}]},{"name":"uni_modules/uview-plus/libs/config/props/keyboard.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/keyboard.js","uid":"9d1b56c3-233"}]},{"name":"uni_modules/uview-plus/libs/config/props/line.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/line.js","uid":"9d1b56c3-235"}]},{"name":"uni_modules/uview-plus/libs/config/props/lineProgress.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/lineProgress.js","uid":"9d1b56c3-237"}]},{"name":"uni_modules/uview-plus/libs/config/props/link.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/link.js","uid":"9d1b56c3-239"}]},{"name":"uni_modules/uview-plus/libs/config/props/list.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/list.js","uid":"9d1b56c3-241"}]},{"name":"uni_modules/uview-plus/libs/config/props/listItem.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/listItem.js","uid":"9d1b56c3-243"}]},{"name":"uni_modules/uview-plus/libs/config/props/loadingIcon.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/loadingIcon.js","uid":"9d1b56c3-245"}]},{"name":"uni_modules/uview-plus/libs/config/props/loadingPage.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/loadingPage.js","uid":"9d1b56c3-247"}]},{"name":"uni_modules/uview-plus/libs/config/props/loadmore.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/loadmore.js","uid":"9d1b56c3-249"}]},{"name":"uni_modules/uview-plus/libs/config/props/modal.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/modal.js","uid":"9d1b56c3-251"}]},{"name":"uni_modules/uview-plus/libs/config/props/navbar.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/navbar.js","uid":"9d1b56c3-253"}]},{"name":"uni_modules/uview-plus/libs/config/props/noNetwork.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/noNetwork.js","uid":"9d1b56c3-255"}]},{"name":"uni_modules/uview-plus/libs/config/props/noticeBar.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/noticeBar.js","uid":"9d1b56c3-257"}]},{"name":"uni_modules/uview-plus/libs/config/props/notify.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/notify.js","uid":"9d1b56c3-259"}]},{"name":"uni_modules/uview-plus/libs/config/props/numberBox.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/numberBox.js","uid":"9d1b56c3-261"}]},{"name":"uni_modules/uview-plus/libs/config/props/numberKeyboard.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/numberKeyboard.js","uid":"9d1b56c3-263"}]},{"name":"uni_modules/uview-plus/libs/config/props/overlay.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/overlay.js","uid":"9d1b56c3-265"}]},{"name":"uni_modules/uview-plus/libs/config/props/parse.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/parse.js","uid":"9d1b56c3-267"}]},{"name":"uni_modules/uview-plus/libs/config/props/picker.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/picker.js","uid":"9d1b56c3-269"}]},{"name":"uni_modules/uview-plus/libs/config/props/popup.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/popup.js","uid":"9d1b56c3-271"}]},{"name":"uni_modules/uview-plus/libs/config/props/radio.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/radio.js","uid":"9d1b56c3-273"}]},{"name":"uni_modules/uview-plus/libs/config/props/radioGroup.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/radioGroup.js","uid":"9d1b56c3-275"}]},{"name":"uni_modules/uview-plus/libs/config/props/rate.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/rate.js","uid":"9d1b56c3-277"}]},{"name":"uni_modules/uview-plus/libs/config/props/readMore.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/readMore.js","uid":"9d1b56c3-279"}]},{"name":"uni_modules/uview-plus/libs/config/props/row.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/row.js","uid":"9d1b56c3-281"}]},{"name":"uni_modules/uview-plus/libs/config/props/rowNotice.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/rowNotice.js","uid":"9d1b56c3-283"}]},{"name":"uni_modules/uview-plus/libs/config/props/scrollList.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/scrollList.js","uid":"9d1b56c3-285"}]},{"name":"uni_modules/uview-plus/libs/config/props/search.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/search.js","uid":"9d1b56c3-287"}]},{"name":"uni_modules/uview-plus/libs/config/props/section.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/section.js","uid":"9d1b56c3-289"}]},{"name":"uni_modules/uview-plus/libs/config/props/skeleton.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/skeleton.js","uid":"9d1b56c3-291"}]},{"name":"uni_modules/uview-plus/libs/config/props/slider.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/slider.js","uid":"9d1b56c3-293"}]},{"name":"uni_modules/uview-plus/libs/config/props/statusBar.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/statusBar.js","uid":"9d1b56c3-295"}]},{"name":"uni_modules/uview-plus/libs/config/props/steps.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/steps.js","uid":"9d1b56c3-297"}]},{"name":"uni_modules/uview-plus/libs/config/props/stepsItem.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/stepsItem.js","uid":"9d1b56c3-299"}]},{"name":"uni_modules/uview-plus/libs/config/props/sticky.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/sticky.js","uid":"9d1b56c3-301"}]},{"name":"uni_modules/uview-plus/libs/config/props/subsection.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/subsection.js","uid":"9d1b56c3-303"}]},{"name":"uni_modules/uview-plus/libs/config/props/swipeAction.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/swipeAction.js","uid":"9d1b56c3-305"}]},{"name":"uni_modules/uview-plus/libs/config/props/swipeActionItem.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/swipeActionItem.js","uid":"9d1b56c3-307"}]},{"name":"uni_modules/uview-plus/libs/config/props/swiper.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/swiper.js","uid":"9d1b56c3-309"}]},{"name":"uni_modules/uview-plus/libs/config/props/swipterIndicator.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/swipterIndicator.js","uid":"9d1b56c3-311"}]},{"name":"uni_modules/uview-plus/libs/config/props/switch.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/switch.js","uid":"9d1b56c3-313"}]},{"name":"uni_modules/uview-plus/libs/config/props/tabbar.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/tabbar.js","uid":"9d1b56c3-315"}]},{"name":"uni_modules/uview-plus/libs/config/props/tabbarItem.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/tabbarItem.js","uid":"9d1b56c3-317"}]},{"name":"uni_modules/uview-plus/libs/config/props/tabs.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/tabs.js","uid":"9d1b56c3-319"}]},{"name":"uni_modules/uview-plus/libs/config/props/tag.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/tag.js","uid":"9d1b56c3-321"}]},{"name":"uni_modules/uview-plus/libs/config/props/text.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/text.js","uid":"9d1b56c3-323"}]},{"name":"uni_modules/uview-plus/libs/config/props/textarea.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/textarea.js","uid":"9d1b56c3-325"}]},{"name":"uni_modules/uview-plus/libs/config/props/toast.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/toast.js","uid":"9d1b56c3-327"}]},{"name":"uni_modules/uview-plus/libs/config/props/toolbar.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/toolbar.js","uid":"9d1b56c3-329"}]},{"name":"uni_modules/uview-plus/libs/config/props/tooltip.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/tooltip.js","uid":"9d1b56c3-331"}]},{"name":"uni_modules/uview-plus/libs/config/props/transition.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/transition.js","uid":"9d1b56c3-333"}]},{"name":"uni_modules/uview-plus/libs/config/props/upload.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/upload.js","uid":"9d1b56c3-335"}]},{"name":"uni_modules/uview-plus/libs/function/digit.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/function/digit.js","uid":"9d1b56c3-337"}]},{"name":"uni_modules/uview-plus/libs/luch-request/adapters/index.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/luch-request/adapters/index.js","uid":"9d1b56c3-339"}]},{"name":"uni_modules/uview-plus/libs/luch-request/helpers/buildURL.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/luch-request/helpers/buildURL.js","uid":"9d1b56c3-341"}]},{"name":"uni_modules/uview-plus/libs/luch-request/core/buildFullPath.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/luch-request/core/buildFullPath.js","uid":"9d1b56c3-343"}]},{"name":"uni_modules/uview-plus/libs/luch-request/core/settle.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/luch-request/core/settle.js","uid":"9d1b56c3-345"}]},{"name":"uni_modules/uview-plus/libs/luch-request/utils.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/luch-request/utils.js","uid":"9d1b56c3-347"}]},{"name":"uni_modules/uview-plus/libs/luch-request/core/InterceptorManager.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/luch-request/core/InterceptorManager.js","uid":"9d1b56c3-349"}]},{"name":"uni_modules/uview-plus/libs/luch-request/core/dispatchRequest.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/luch-request/core/dispatchRequest.js","uid":"9d1b56c3-351"}]},{"name":"uni_modules/uview-plus/libs/luch-request/core/mergeConfig.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/luch-request/core/mergeConfig.js","uid":"9d1b56c3-353"}]},{"name":"uni_modules/uview-plus/libs/luch-request/core/defaults.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/luch-request/core/defaults.js","uid":"9d1b56c3-355"}]},{"name":"uni_modules/uview-plus/libs/luch-request/utils/clone.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/luch-request/utils/clone.js","uid":"9d1b56c3-357"}]},{"name":"uni_modules/uview-plus/libs/luch-request/helpers/isAbsoluteURL.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/luch-request/helpers/isAbsoluteURL.js","uid":"9d1b56c3-359"}]},{"name":"uni_modules/uview-plus/libs/luch-request/helpers/combineURLs.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/luch-request/helpers/combineURLs.js","uid":"9d1b56c3-361"}]},{"name":"uni_modules/uview-plus/libs/luch-request/index.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/luch-request/index.js","uid":"9d1b56c3-363"}]},{"name":"uni_modules/uview-plus/libs/mixin/button.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/mixin/button.js","uid":"9d1b56c3-365"}]},{"name":"uni_modules/uview-plus/libs/mixin/mpShare.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/mixin/mpShare.js","uid":"9d1b56c3-367"}]},{"name":"uni_modules/uview-plus/libs/mixin/openType.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/mixin/openType.js","uid":"9d1b56c3-369"}]},{"name":"uni_modules/uview-plus/libs/util/async-validator.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/util/async-validator.js","uid":"9d1b56c3-371"}]},{"name":"pages/default/index.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/pages/default","children":[{"uid":"9d1b56c3-373","name":"index.vue?vue&type=style&index=0&lang.scss"},{"uid":"9d1b56c3-375","name":"index.vue"}]},{"name":"uniPage:/cGFnZXMvZGVmYXVsdC9pbmRleC52dWU","uid":"9d1b56c3-377"}]},{"name":"pages/index/index.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/pages/index","children":[{"uid":"9d1b56c3-379","name":"index.vue?vue&type=style&index=0&lang.scss"},{"uid":"9d1b56c3-381","name":"index.vue"}]},{"name":"uniPage:/cGFnZXMvaW5kZXgvaW5kZXgudnVl","uid":"9d1b56c3-383"}]},{"name":"pages/login/index.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/pages/login","children":[{"uid":"9d1b56c3-385","name":"index.vue?vue&type=style&index=0&scoped=45258083&lang.scss"},{"uid":"9d1b56c3-387","name":"index.vue"}]},{"name":"uniPage:/cGFnZXMvbG9naW4vaW5kZXgudnVl","uid":"9d1b56c3-389"}]},{"name":"pages/release/index.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/pages/release","children":[{"uid":"9d1b56c3-391","name":"index.vue?vue&type=style&index=0&lang.css"},{"uid":"9d1b56c3-393","name":"index.vue"}]},{"name":"uniPage:/cGFnZXMvcmVsZWFzZS9pbmRleC52dWU","uid":"9d1b56c3-395"}]},{"name":"pages/wallet/index.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/pages/wallet","children":[{"uid":"9d1b56c3-397","name":"index.vue?vue&type=style&index=0&lang.scss"},{"uid":"9d1b56c3-399","name":"index.vue"}]},{"name":"uniPage:/cGFnZXMvd2FsbGV0L2luZGV4LnZ1ZQ","uid":"9d1b56c3-401"}]},{"name":"pages/mine/index.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/pages/mine","children":[{"uid":"9d1b56c3-403","name":"index.vue?vue&type=style&index=0&lang.scss"},{"uid":"9d1b56c3-405","name":"index.vue"}]},{"name":"uniPage:/cGFnZXMvbWluZS9pbmRleC52dWU","uid":"9d1b56c3-407"}]},{"name":"pages/mine/mine.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/pages/mine","children":[{"uid":"9d1b56c3-409","name":"mine.vue?vue&type=style&index=0&lang.css"},{"uid":"9d1b56c3-411","name":"mine.vue"}]},{"name":"uniPage:/cGFnZXMvbWluZS9taW5lLnZ1ZQ","uid":"9d1b56c3-413"}]},{"name":"pages/mine/apply.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/pages/mine","children":[{"uid":"9d1b56c3-415","name":"apply.vue?vue&type=style&index=0&lang.css"},{"uid":"9d1b56c3-417","name":"apply.vue"}]},{"name":"uniPage:/cGFnZXMvbWluZS9hcHBseS52dWU","uid":"9d1b56c3-419"}]},{"name":"pages/test/test.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/pages/test","children":[{"uid":"9d1b56c3-421","name":"test.vue?vue&type=style&index=0&lang.css"},{"uid":"9d1b56c3-423","name":"test.vue"}]},{"name":"uniPage:/cGFnZXMvdGVzdC90ZXN0LnZ1ZQ","uid":"9d1b56c3-425"}]},{"name":"pages/checkin/index.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/pages/checkin","children":[{"uid":"9d1b56c3-427","name":"index.vue?vue&type=style&index=0&lang.css"},{"uid":"9d1b56c3-429","name":"index.vue"}]},{"name":"uniPage:/cGFnZXNcY2hlY2tpblxpbmRleC52dWU","uid":"9d1b56c3-431"}]},{"name":"pages/checkin/record.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/pages/checkin","children":[{"uid":"9d1b56c3-433","name":"record.vue?vue&type=style&index=0&lang.scss"},{"uid":"9d1b56c3-435","name":"record.vue"}]},{"name":"uniPage:/cGFnZXNcY2hlY2tpblxyZWNvcmQudnVl","uid":"9d1b56c3-437"}]},{"name":"pages/checkin/checkin.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/pages/checkin","children":[{"uid":"9d1b56c3-439","name":"checkin.vue?vue&type=style&index=0&lang.scss"},{"uid":"9d1b56c3-441","name":"checkin.vue"}]},{"name":"uniPage:/cGFnZXNcY2hlY2tpblxjaGVja2luLnZ1ZQ","uid":"9d1b56c3-443"}]},{"name":"pages/checkin/workdetail.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/pages/checkin","children":[{"uid":"9d1b56c3-445","name":"workdetail.vue?vue&type=style&index=0&lang.scss"},{"uid":"9d1b56c3-447","name":"workdetail.vue"}]},{"name":"uniPage:/cGFnZXNcY2hlY2tpblx3b3JrZGV0YWlsLnZ1ZQ","uid":"9d1b56c3-449"}]},{"name":"pages/enterprise/index.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/pages/enterprise","children":[{"uid":"9d1b56c3-451","name":"index.vue?vue&type=style&index=0&lang.css"},{"uid":"9d1b56c3-453","name":"index.vue"}]},{"name":"uniPage:/cGFnZXNcZW50ZXJwcmlzZVxpbmRleC52dWU","uid":"9d1b56c3-455"}]},{"name":"pages/enterprise/enterprise.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/pages/enterprise","children":[{"uid":"9d1b56c3-457","name":"enterprise.vue?vue&type=style&index=0&lang.css"},{"uid":"9d1b56c3-459","name":"enterprise.vue"}]},{"name":"uniPage:/cGFnZXNcZW50ZXJwcmlzZVxlbnRlcnByaXNlLnZ1ZQ","uid":"9d1b56c3-461"}]},{"name":"pages/detail/detail.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/pages/detail","children":[{"uid":"9d1b56c3-463","name":"detail.vue?vue&type=style&index=0&lang.css"},{"uid":"9d1b56c3-465","name":"detail.vue"}]},{"name":"uniPage:/cGFnZXNcZGV0YWlsXGRldGFpbC52dWU","uid":"9d1b56c3-467"}]},{"name":"pages/order/order.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/pages/order","children":[{"uid":"9d1b56c3-469","name":"order.vue?vue&type=style&index=0&lang.css"},{"uid":"9d1b56c3-471","name":"order.vue"}]},{"name":"uniPage:/cGFnZXNcb3JkZXJcb3JkZXIudnVl","uid":"9d1b56c3-473"}]},{"name":"pages/order/detail.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/pages/order","children":[{"uid":"9d1b56c3-475","name":"detail.vue?vue&type=style&index=0&lang.scss"},{"uid":"9d1b56c3-477","name":"detail.vue"}]},{"name":"uniPage:/cGFnZXNcb3JkZXJcZGV0YWlsLnZ1ZQ","uid":"9d1b56c3-479"}]},{"name":"pages/order/worker.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/pages/order","children":[{"uid":"9d1b56c3-481","name":"worker.vue?vue&type=style&index=0&lang.scss"},{"uid":"9d1b56c3-483","name":"worker.vue"}]},{"name":"uniPage:/cGFnZXNcb3JkZXJcd29ya2VyLnZ1ZQ","uid":"9d1b56c3-485"}]},{"name":"pages/order/myorder.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/pages/order","children":[{"uid":"9d1b56c3-487","name":"myorder.vue?vue&type=style&index=0&lang.css"},{"uid":"9d1b56c3-489","name":"myorder.vue"}]},{"name":"uniPage:/cGFnZXNcb3JkZXJcbXlvcmRlci52dWU","uid":"9d1b56c3-491"}]},{"name":"pages/company/index.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/pages/company","children":[{"uid":"9d1b56c3-493","name":"index.vue?vue&type=style&index=0&lang.css"},{"uid":"9d1b56c3-495","name":"index.vue"}]},{"name":"uniPage:/cGFnZXNcY29tcGFueVxpbmRleC52dWU","uid":"9d1b56c3-497"}]},{"name":"uni_modules/uview-plus/components/u-icon/u-icon.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-icon","children":[{"uid":"9d1b56c3-499","name":"u-icon.vue?vue&type=style&index=0&scoped=bc34bf57&lang.scss"},{"uid":"9d1b56c3-501","name":"u-icon.vue"}]},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtaWNvbi91LWljb24udnVl","uid":"9d1b56c3-503"}]},{"name":"uni_modules/uview-plus/components/u-search/u-search.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-search","children":[{"uid":"9d1b56c3-505","name":"u-search.vue?vue&type=style&index=0&scoped=db25ac38&lang.scss"},{"uid":"9d1b56c3-507","name":"u-search.vue"}]},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3Utc2VhcmNoL3Utc2VhcmNoLnZ1ZQ","uid":"9d1b56c3-509"}]},{"name":"uni_modules/uview-plus/components/u-sticky/u-sticky.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-sticky","children":[{"uid":"9d1b56c3-511","name":"u-sticky.vue?vue&type=style&index=0&scoped=442db378&lang.scss"},{"uid":"9d1b56c3-513","name":"u-sticky.vue"}]},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3Utc3RpY2t5L3Utc3RpY2t5LnZ1ZQ","uid":"9d1b56c3-515"}]},{"name":"uni_modules/uview-plus/components/u-tag/u-tag.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-tag","children":[{"uid":"9d1b56c3-517","name":"u-tag.vue?vue&type=style&index=0&scoped=90ff8a51&lang.scss"},{"uid":"9d1b56c3-519","name":"u-tag.vue"}]},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtdGFnL3UtdGFnLnZ1ZQ","uid":"9d1b56c3-521"}]},{"name":"uni_modules/uview-plus/components/u-loadmore/u-loadmore.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-loadmore","children":[{"uid":"9d1b56c3-523","name":"u-loadmore.vue?vue&type=style&index=0&scoped=80ed34f9&lang.scss"},{"uid":"9d1b56c3-525","name":"u-loadmore.vue"}]},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtbG9hZG1vcmUvdS1sb2FkbW9yZS52dWU","uid":"9d1b56c3-527"}]},{"name":"uni_modules/uview-plus/components/u-empty/u-empty.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-empty","children":[{"uid":"9d1b56c3-529","name":"u-empty.vue?vue&type=style&index=0&scoped=2eac7384&lang.scss"},{"uid":"9d1b56c3-531","name":"u-empty.vue"}]},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtZW1wdHkvdS1lbXB0eS52dWU","uid":"9d1b56c3-533"}]},{"name":"components/firstui/fui-date-picker/fui-date-picker.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/components/firstui/fui-date-picker","children":[{"uid":"9d1b56c3-535","name":"fui-date-picker.vue?vue&type=style&index=0&scoped=42055a14&lang.css"},{"uid":"9d1b56c3-537","name":"fui-date-picker.vue"}]},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvY29tcG9uZW50cy9maXJzdHVpL2Z1aS1kYXRlLXBpY2tlci9mdWktZGF0ZS1waWNrZXIudnVl","uid":"9d1b56c3-539"}]},{"name":"uni_modules/uni-popup/components/uni-popup/uni-popup.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uni-popup/components/uni-popup","children":[{"uid":"9d1b56c3-541","name":"uni-popup.vue?vue&type=style&index=0&lang.scss"},{"uid":"9d1b56c3-543","name":"uni-popup.vue"}]},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdW5pLXBvcHVwL2NvbXBvbmVudHMvdW5pLXBvcHVwL3VuaS1wb3B1cC52dWU","uid":"9d1b56c3-545"}]},{"name":"uni_modules/uview-plus/components/u-input/u-input.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-input","children":[{"uid":"9d1b56c3-547","name":"u-input.vue?vue&type=style&index=0&scoped=a5e5d5c3&lang.scss"},{"uid":"9d1b56c3-549","name":"u-input.vue"}]},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtaW5wdXQvdS1pbnB1dC52dWU","uid":"9d1b56c3-551"}]},{"name":"uni_modules/uview-plus/components/u-form-item/u-form-item.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-form-item","children":[{"uid":"9d1b56c3-553","name":"u-form-item.vue?vue&type=style&index=0&scoped=98223e3d&lang.scss"},{"uid":"9d1b56c3-555","name":"u-form-item.vue"}]},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtZm9ybS1pdGVtL3UtZm9ybS1pdGVtLnZ1ZQ","uid":"9d1b56c3-557"}]},{"name":"uni_modules/uview-plus/components/u-textarea/u-textarea.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-textarea","children":[{"uid":"9d1b56c3-559","name":"u-textarea.vue?vue&type=style&index=0&scoped=574e2c9d&lang.scss"},{"uid":"9d1b56c3-561","name":"u-textarea.vue"}]},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtdGV4dGFyZWEvdS10ZXh0YXJlYS52dWU","uid":"9d1b56c3-563"}]},{"name":"uni_modules/uview-plus/components/u-number-box/u-number-box.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-number-box","children":[{"uid":"9d1b56c3-565","name":"u-number-box.vue?vue&type=style&index=0&scoped=ff7ec725&lang.scss"},{"uid":"9d1b56c3-567","name":"u-number-box.vue"}]},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtbnVtYmVyLWJveC91LW51bWJlci1ib3gudnVl","uid":"9d1b56c3-569"}]},{"name":"uni_modules/uview-plus/components/u-form/u-form.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-form/u-form.vue","uid":"9d1b56c3-571"},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtZm9ybS91LWZvcm0udnVl","uid":"9d1b56c3-573"}]},{"name":"uni_modules/uview-plus/components/u-button/u-button.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-button","children":[{"uid":"9d1b56c3-575","name":"u-button.vue?vue&type=script&lang.ts"},{"uid":"9d1b56c3-577","name":"u-button.vue?vue&type=style&index=0&scoped=52094d52&lang.scss"},{"uid":"9d1b56c3-579","name":"u-button.vue"}]},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtYnV0dG9uL3UtYnV0dG9uLnZ1ZQ","uid":"9d1b56c3-581"}]},{"name":"uni_modules/uview-plus/components/u-avatar/u-avatar.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-avatar","children":[{"uid":"9d1b56c3-583","name":"u-avatar.vue?vue&type=style&index=0&scoped=4139b3f3&lang.scss"},{"uid":"9d1b56c3-585","name":"u-avatar.vue"}]},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtYXZhdGFyL3UtYXZhdGFyLnZ1ZQ","uid":"9d1b56c3-587"}]},{"name":"components/firstui/fui-list-cell/fui-list-cell.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/components/firstui/fui-list-cell","children":[{"uid":"9d1b56c3-589","name":"fui-list-cell.vue?vue&type=style&index=0&scoped=77eef2c9&lang.css"},{"uid":"9d1b56c3-591","name":"fui-list-cell.vue"}]},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvY29tcG9uZW50cy9maXJzdHVpL2Z1aS1saXN0LWNlbGwvZnVpLWxpc3QtY2VsbC52dWU","uid":"9d1b56c3-593"}]},{"name":"components/firstui/fui-list/fui-list.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/components/firstui/fui-list","children":[{"uid":"9d1b56c3-595","name":"fui-list.vue?vue&type=style&index=0&scoped=61b84bd4&lang.css"},{"uid":"9d1b56c3-597","name":"fui-list.vue"}]},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvY29tcG9uZW50cy9maXJzdHVpL2Z1aS1saXN0L2Z1aS1saXN0LnZ1ZQ","uid":"9d1b56c3-599"}]},{"name":"components/firstui/fui-upload/fui-upload.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/components/firstui/fui-upload","children":[{"uid":"9d1b56c3-601","name":"fui-upload.vue?vue&type=style&index=0&scoped=2d5d0fa0&lang.css"},{"uid":"9d1b56c3-603","name":"fui-upload.vue"}]},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvY29tcG9uZW50cy9maXJzdHVpL2Z1aS11cGxvYWQvZnVpLXVwbG9hZC52dWU","uid":"9d1b56c3-605"}]},{"name":"uni_modules/uview-plus/components/u-subsection/u-subsection.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-subsection","children":[{"uid":"9d1b56c3-607","name":"u-subsection.vue?vue&type=style&index=0&scoped=bb8563b6&lang.scss"},{"uid":"9d1b56c3-609","name":"u-subsection.vue"}]},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3Utc3Vic2VjdGlvbi91LXN1YnNlY3Rpb24udnVl","uid":"9d1b56c3-611"}]},{"name":"uni_modules/uview-plus/components/u-cell/u-cell.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-cell","children":[{"uid":"9d1b56c3-613","name":"u-cell.vue?vue&type=style&index=0&scoped=3b946341&lang.scss"},{"uid":"9d1b56c3-615","name":"u-cell.vue"}]},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtY2VsbC91LWNlbGwudnVl","uid":"9d1b56c3-617"}]},{"name":"uni_modules/uview-plus/components/u-list-item/u-list-item.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-list-item","children":[{"uid":"9d1b56c3-619","name":"u-list-item.vue?vue&type=style&index=0&scoped=f5ff7ac7&lang.scss"},{"uid":"9d1b56c3-621","name":"u-list-item.vue"}]},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtbGlzdC1pdGVtL3UtbGlzdC1pdGVtLnZ1ZQ","uid":"9d1b56c3-623"}]},{"name":"components/tem/tem-steps.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/components/tem","children":[{"uid":"9d1b56c3-625","name":"tem-steps.vue?vue&type=style&index=0&scoped=746e3803&lang.scss"},{"uid":"9d1b56c3-627","name":"tem-steps.vue"}]},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvY29tcG9uZW50cy90ZW0vdGVtLXN0ZXBzLnZ1ZQ","uid":"9d1b56c3-629"}]},{"name":"uni_modules/uview-plus/components/u-list/u-list.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-list","children":[{"uid":"9d1b56c3-631","name":"u-list.vue?vue&type=style&index=0&scoped=e8455553&lang.scss"},{"uid":"9d1b56c3-633","name":"u-list.vue"}]},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtbGlzdC91LWxpc3QudnVl","uid":"9d1b56c3-635"}]},{"name":"components/firstui/fui-icon/fui-icon.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/components/firstui/fui-icon","children":[{"uid":"9d1b56c3-637","name":"fui-icon.js"},{"uid":"9d1b56c3-639","name":"fui-icon.vue?vue&type=style&index=0&scoped=2cb4dbf4&lang.css"},{"uid":"9d1b56c3-641","name":"fui-icon.vue"}]},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvY29tcG9uZW50cy9maXJzdHVpL2Z1aS1pY29uL2Z1aS1pY29uLnZ1ZQ","uid":"9d1b56c3-643"}]},{"name":"uni_modules/uview-plus/components/u-transition/u-transition.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-transition","children":[{"uid":"9d1b56c3-645","name":"u-transition.vue?vue&type=style&index=0&scoped=69991aca&lang.scss"},{"uid":"9d1b56c3-647","name":"u-transition.vue"}]},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtdHJhbnNpdGlvbi91LXRyYW5zaXRpb24udnVl","uid":"9d1b56c3-649"}]},{"name":"uni_modules/uview-plus/components/u-line/u-line.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-line","children":[{"uid":"9d1b56c3-651","name":"u-line.vue?vue&type=style&index=0&scoped=18143249&lang.scss"},{"uid":"9d1b56c3-653","name":"u-line.vue"}]},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtbGluZS91LWxpbmUudnVl","uid":"9d1b56c3-655"}]},{"name":"uni_modules/uview-plus/components/u-loading-icon/u-loading-icon.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-loading-icon","children":[{"uid":"9d1b56c3-657","name":"u-loading-icon.vue?vue&type=style&index=0&scoped=bfe4499f&lang.scss"},{"uid":"9d1b56c3-659","name":"u-loading-icon.vue"}]},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtbG9hZGluZy1pY29uL3UtbG9hZGluZy1pY29uLnZ1ZQ","uid":"9d1b56c3-661"}]},{"name":"uni_modules/uni-transition/components/uni-transition/uni-transition.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uni-transition/components/uni-transition/uni-transition.vue","uid":"9d1b56c3-663"},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdW5pLXRyYW5zaXRpb24vY29tcG9uZW50cy91bmktdHJhbnNpdGlvbi91bmktdHJhbnNpdGlvbi52dWU","uid":"9d1b56c3-665"}]},{"name":"uni_modules/uview-plus/components/u-text/u-text.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-text","children":[{"uid":"9d1b56c3-667","name":"u-text.vue?vue&type=style&index=0&scoped=8194d41c&lang.scss"},{"uid":"9d1b56c3-669","name":"u-text.vue"}]},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtdGV4dC91LXRleHQudnVl","uid":"9d1b56c3-671"}]},{"name":"uni_modules/uview-plus/components/u-link/u-link.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-link","children":[{"uid":"9d1b56c3-673","name":"u-link.vue?vue&type=style&index=0&scoped=d6e711cb&lang.scss"},{"uid":"9d1b56c3-675","name":"u-link.vue"}]},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtbGluay91LWxpbmsudnVl","uid":"9d1b56c3-677"}]}],"isRoot":true},"nodeParts":{"9d1b56c3-1":{"renderedLength":638,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-0"},"9d1b56c3-3":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-2"},"9d1b56c3-5":{"renderedLength":394,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-4"},"9d1b56c3-7":{"renderedLength":1450,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-6"},"9d1b56c3-9":{"renderedLength":48,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-8"},"9d1b56c3-11":{"renderedLength":48,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-10"},"9d1b56c3-13":{"renderedLength":46,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-12"},"9d1b56c3-15":{"renderedLength":46,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-14"},"9d1b56c3-17":{"renderedLength":46,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-16"},"9d1b56c3-19":{"renderedLength":46,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-18"},"9d1b56c3-21":{"renderedLength":957,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-20"},"9d1b56c3-23":{"renderedLength":721,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-22"},"9d1b56c3-25":{"renderedLength":82,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-24"},"9d1b56c3-27":{"renderedLength":5754,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-26"},"9d1b56c3-29":{"renderedLength":2717,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-28"},"9d1b56c3-31":{"renderedLength":3781,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-30"},"9d1b56c3-33":{"renderedLength":5863,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-32"},"9d1b56c3-35":{"renderedLength":982,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-34"},"9d1b56c3-37":{"renderedLength":6055,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-36"},"9d1b56c3-39":{"renderedLength":32368,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-38"},"9d1b56c3-41":{"renderedLength":159,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-40"},"9d1b56c3-43":{"renderedLength":150964,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-42"},"9d1b56c3-45":{"renderedLength":23003,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-44"},"9d1b56c3-47":{"renderedLength":20355,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-46"},"9d1b56c3-49":{"renderedLength":4688,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-48"},"9d1b56c3-51":{"renderedLength":6952,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-50"},"9d1b56c3-53":{"renderedLength":3962,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-52"},"9d1b56c3-55":{"renderedLength":1681,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-54"},"9d1b56c3-57":{"renderedLength":214,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-56"},"9d1b56c3-59":{"renderedLength":24721,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-58"},"9d1b56c3-61":{"renderedLength":562,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-60"},"9d1b56c3-63":{"renderedLength":54238,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-62"},"9d1b56c3-65":{"renderedLength":654,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-64"},"9d1b56c3-67":{"renderedLength":1858,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-66"},"9d1b56c3-69":{"renderedLength":1310,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-68"},"9d1b56c3-71":{"renderedLength":2078,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-70"},"9d1b56c3-73":{"renderedLength":7307,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-72"},"9d1b56c3-75":{"renderedLength":16892,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-74"},"9d1b56c3-77":{"renderedLength":1998,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-76"},"9d1b56c3-79":{"renderedLength":2630,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-78"},"9d1b56c3-81":{"renderedLength":2993,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-80"},"9d1b56c3-83":{"renderedLength":54,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-82"},"9d1b56c3-85":{"renderedLength":5935,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-84"},"9d1b56c3-87":{"renderedLength":6180,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-86"},"9d1b56c3-89":{"renderedLength":6727,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-88"},"9d1b56c3-91":{"renderedLength":4122,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-90"},"9d1b56c3-93":{"renderedLength":2129,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-92"},"9d1b56c3-95":{"renderedLength":2026,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-94"},"9d1b56c3-97":{"renderedLength":1754,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-96"},"9d1b56c3-99":{"renderedLength":7521,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-98"},"9d1b56c3-101":{"renderedLength":3376,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-100"},"9d1b56c3-103":{"renderedLength":7077,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-102"},"9d1b56c3-105":{"renderedLength":1312,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-104"},"9d1b56c3-107":{"renderedLength":1396,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-106"},"9d1b56c3-109":{"renderedLength":274,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-108"},"9d1b56c3-111":{"renderedLength":4155,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-110"},"9d1b56c3-113":{"renderedLength":2256,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-112"},"9d1b56c3-115":{"renderedLength":3587,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-114"},"9d1b56c3-117":{"renderedLength":4420,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-116"},"9d1b56c3-119":{"renderedLength":5171,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-118"},"9d1b56c3-121":{"renderedLength":1300,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-120"},"9d1b56c3-123":{"renderedLength":1799,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-122"},"9d1b56c3-125":{"renderedLength":3233,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-124"},"9d1b56c3-127":{"renderedLength":4129,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-126"},"9d1b56c3-129":{"renderedLength":4427,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-128"},"9d1b56c3-131":{"renderedLength":13491,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-130"},"9d1b56c3-133":{"renderedLength":4447,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-132"},"9d1b56c3-135":{"renderedLength":845,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-134"},"9d1b56c3-137":{"renderedLength":3135,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-136"},"9d1b56c3-139":{"renderedLength":7509,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-138"},"9d1b56c3-141":{"renderedLength":221,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-140"},"9d1b56c3-143":{"renderedLength":5812,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-142"},"9d1b56c3-145":{"renderedLength":4675,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-144"},"9d1b56c3-147":{"renderedLength":4601,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-146"},"9d1b56c3-149":{"renderedLength":948,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-148"},"9d1b56c3-151":{"renderedLength":851,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-150"},"9d1b56c3-153":{"renderedLength":873,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-152"},"9d1b56c3-155":{"renderedLength":389,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-154"},"9d1b56c3-157":{"renderedLength":488,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-156"},"9d1b56c3-159":{"renderedLength":358,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-158"},"9d1b56c3-161":{"renderedLength":622,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-160"},"9d1b56c3-163":{"renderedLength":615,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-162"},"9d1b56c3-165":{"renderedLength":487,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-164"},"9d1b56c3-167":{"renderedLength":619,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-166"},"9d1b56c3-169":{"renderedLength":508,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-168"},"9d1b56c3-171":{"renderedLength":585,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-170"},"9d1b56c3-173":{"renderedLength":594,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-172"},"9d1b56c3-175":{"renderedLength":995,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-174"},"9d1b56c3-177":{"renderedLength":1126,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-176"},"9d1b56c3-179":{"renderedLength":337,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-178"},"9d1b56c3-181":{"renderedLength":647,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-180"},"9d1b56c3-183":{"renderedLength":383,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-182"},"9d1b56c3-185":{"renderedLength":596,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-184"},"9d1b56c3-187":{"renderedLength":718,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-186"},"9d1b56c3-189":{"renderedLength":353,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-188"},"9d1b56c3-191":{"renderedLength":473,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-190"},"9d1b56c3-193":{"renderedLength":654,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-192"},"9d1b56c3-195":{"renderedLength":401,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-194"},"9d1b56c3-197":{"renderedLength":374,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-196"},"9d1b56c3-199":{"renderedLength":579,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-198"},"9d1b56c3-201":{"renderedLength":549,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-200"},"9d1b56c3-203":{"renderedLength":419,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-202"},"9d1b56c3-205":{"renderedLength":549,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-204"},"9d1b56c3-207":{"renderedLength":1010,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-206"},"9d1b56c3-209":{"renderedLength":500,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-208"},"9d1b56c3-211":{"renderedLength":538,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-210"},"9d1b56c3-213":{"renderedLength":492,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-212"},"9d1b56c3-215":{"renderedLength":536,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-214"},"9d1b56c3-217":{"renderedLength":408,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-216"},"9d1b56c3-219":{"renderedLength":350,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-218"},"9d1b56c3-221":{"renderedLength":357,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-220"},"9d1b56c3-223":{"renderedLength":774,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-222"},"9d1b56c3-225":{"renderedLength":694,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-224"},"9d1b56c3-227":{"renderedLength":427,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-226"},"9d1b56c3-229":{"renderedLength":478,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-228"},"9d1b56c3-231":{"renderedLength":1016,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-230"},"9d1b56c3-233":{"renderedLength":720,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-232"},"9d1b56c3-235":{"renderedLength":430,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-234"},"9d1b56c3-237":{"renderedLength":454,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-236"},"9d1b56c3-239":{"renderedLength":581,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-238"},"9d1b56c3-241":{"renderedLength":666,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-240"},"9d1b56c3-243":{"renderedLength":325,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-242"},"9d1b56c3-245":{"renderedLength":702,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-244"},"9d1b56c3-247":{"renderedLength":579,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-246"},"9d1b56c3-249":{"renderedLength":786,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-248"},"9d1b56c3-251":{"renderedLength":774,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-250"},"9d1b56c3-253":{"renderedLength":734,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-252"},"9d1b56c3-255":{"renderedLength":28917,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-254"},"9d1b56c3-257":{"renderedLength":605,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-256"},"9d1b56c3-259":{"renderedLength":484,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-258"},"9d1b56c3-261":{"renderedLength":835,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-260"},"9d1b56c3-263":{"renderedLength":395,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-262"},"9d1b56c3-265":{"renderedLength":389,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-264"},"9d1b56c3-267":{"renderedLength":484,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-266"},"9d1b56c3-269":{"renderedLength":716,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-268"},"9d1b56c3-271":{"renderedLength":684,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-270"},"9d1b56c3-273":{"renderedLength":582,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-272"},"9d1b56c3-275":{"renderedLength":725,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-274"},"9d1b56c3-277":{"renderedLength":587,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-276"},"9d1b56c3-279":{"renderedLength":508,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-278"},"9d1b56c3-281":{"renderedLength":348,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-280"},"9d1b56c3-283":{"renderedLength":457,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-282"},"9d1b56c3-285":{"renderedLength":494,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-284"},"9d1b56c3-287":{"renderedLength":916,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-286"},"9d1b56c3-289":{"renderedLength":535,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-288"},"9d1b56c3-291":{"renderedLength":563,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-290"},"9d1b56c3-293":{"renderedLength":602,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-292"},"9d1b56c3-295":{"renderedLength":334,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-294"},"9d1b56c3-297":{"renderedLength":474,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-296"},"9d1b56c3-299":{"renderedLength":390,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-298"},"9d1b56c3-301":{"renderedLength":442,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-300"},"9d1b56c3-303":{"renderedLength":529,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-302"},"9d1b56c3-305":{"renderedLength":342,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-304"},"9d1b56c3-307":{"renderedLength":489,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-306"},"9d1b56c3-309":{"renderedLength":966,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-308"},"9d1b56c3-311":{"renderedLength":468,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-310"},"9d1b56c3-313":{"renderedLength":548,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-312"},"9d1b56c3-315":{"renderedLength":501,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-314"},"9d1b56c3-317":{"renderedLength":435,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-316"},"9d1b56c3-319":{"renderedLength":700,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-318"},"9d1b56c3-321":{"renderedLength":574,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-320"},"9d1b56c3-323":{"renderedLength":782,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-322"},"9d1b56c3-325":{"renderedLength":773,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-324"},"9d1b56c3-327":{"renderedLength":617,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-326"},"9d1b56c3-329":{"renderedLength":467,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-328"},"9d1b56c3-331":{"renderedLength":559,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-330"},"9d1b56c3-333":{"renderedLength":430,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-332"},"9d1b56c3-335":{"renderedLength":785,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-334"},"9d1b56c3-337":{"renderedLength":2672,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-336"},"9d1b56c3-339":{"renderedLength":2342,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-338"},"9d1b56c3-341":{"renderedLength":1984,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-340"},"9d1b56c3-343":{"renderedLength":692,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-342"},"9d1b56c3-345":{"renderedLength":528,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-344"},"9d1b56c3-347":{"renderedLength":3369,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-346"},"9d1b56c3-349":{"renderedLength":1199,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-348"},"9d1b56c3-351":{"renderedLength":106,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-350"},"9d1b56c3-353":{"renderedLength":2368,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-352"},"9d1b56c3-355":{"renderedLength":337,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-354"},"9d1b56c3-357":{"renderedLength":8405,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-356"},"9d1b56c3-359":{"renderedLength":545,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-358"},"9d1b56c3-361":{"renderedLength":366,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-360"},"9d1b56c3-363":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-362"},"9d1b56c3-365":{"renderedLength":364,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-364"},"9d1b56c3-367":{"renderedLength":725,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-366"},"9d1b56c3-369":{"renderedLength":706,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-368"},"9d1b56c3-371":{"renderedLength":27130,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-370"},"9d1b56c3-373":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-372"},"9d1b56c3-375":{"renderedLength":1687,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-374"},"9d1b56c3-377":{"renderedLength":31,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-376"},"9d1b56c3-379":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-378"},"9d1b56c3-381":{"renderedLength":6629,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-380"},"9d1b56c3-383":{"renderedLength":31,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-382"},"9d1b56c3-385":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-384"},"9d1b56c3-387":{"renderedLength":7246,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-386"},"9d1b56c3-389":{"renderedLength":31,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-388"},"9d1b56c3-391":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-390"},"9d1b56c3-393":{"renderedLength":10950,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-392"},"9d1b56c3-395":{"renderedLength":31,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-394"},"9d1b56c3-397":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-396"},"9d1b56c3-399":{"renderedLength":1495,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-398"},"9d1b56c3-401":{"renderedLength":31,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-400"},"9d1b56c3-403":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-402"},"9d1b56c3-405":{"renderedLength":38990,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-404"},"9d1b56c3-407":{"renderedLength":31,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-406"},"9d1b56c3-409":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-408"},"9d1b56c3-411":{"renderedLength":3242,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-410"},"9d1b56c3-413":{"renderedLength":31,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-412"},"9d1b56c3-415":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-414"},"9d1b56c3-417":{"renderedLength":11345,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-416"},"9d1b56c3-419":{"renderedLength":31,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-418"},"9d1b56c3-421":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-420"},"9d1b56c3-423":{"renderedLength":7809,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-422"},"9d1b56c3-425":{"renderedLength":31,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-424"},"9d1b56c3-427":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-426"},"9d1b56c3-429":{"renderedLength":7524,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-428"},"9d1b56c3-431":{"renderedLength":31,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-430"},"9d1b56c3-433":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-432"},"9d1b56c3-435":{"renderedLength":3765,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-434"},"9d1b56c3-437":{"renderedLength":31,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-436"},"9d1b56c3-439":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-438"},"9d1b56c3-441":{"renderedLength":6434,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-440"},"9d1b56c3-443":{"renderedLength":31,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-442"},"9d1b56c3-445":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-444"},"9d1b56c3-447":{"renderedLength":5193,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-446"},"9d1b56c3-449":{"renderedLength":31,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-448"},"9d1b56c3-451":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-450"},"9d1b56c3-453":{"renderedLength":3468,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-452"},"9d1b56c3-455":{"renderedLength":31,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-454"},"9d1b56c3-457":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-456"},"9d1b56c3-459":{"renderedLength":9997,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-458"},"9d1b56c3-461":{"renderedLength":31,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-460"},"9d1b56c3-463":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-462"},"9d1b56c3-465":{"renderedLength":2534,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-464"},"9d1b56c3-467":{"renderedLength":31,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-466"},"9d1b56c3-469":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-468"},"9d1b56c3-471":{"renderedLength":6897,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-470"},"9d1b56c3-473":{"renderedLength":31,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-472"},"9d1b56c3-475":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-474"},"9d1b56c3-477":{"renderedLength":5226,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-476"},"9d1b56c3-479":{"renderedLength":31,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-478"},"9d1b56c3-481":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-480"},"9d1b56c3-483":{"renderedLength":2548,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-482"},"9d1b56c3-485":{"renderedLength":31,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-484"},"9d1b56c3-487":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-486"},"9d1b56c3-489":{"renderedLength":7292,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-488"},"9d1b56c3-491":{"renderedLength":31,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-490"},"9d1b56c3-493":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-492"},"9d1b56c3-495":{"renderedLength":7051,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-494"},"9d1b56c3-497":{"renderedLength":31,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-496"},"9d1b56c3-499":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-498"},"9d1b56c3-501":{"renderedLength":6290,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-500"},"9d1b56c3-503":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-502"},"9d1b56c3-505":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-504"},"9d1b56c3-507":{"renderedLength":8529,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-506"},"9d1b56c3-509":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-508"},"9d1b56c3-511":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-510"},"9d1b56c3-513":{"renderedLength":6628,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-512"},"9d1b56c3-515":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-514"},"9d1b56c3-517":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-516"},"9d1b56c3-519":{"renderedLength":5580,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-518"},"9d1b56c3-521":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-520"},"9d1b56c3-523":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-522"},"9d1b56c3-525":{"renderedLength":5084,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-524"},"9d1b56c3-527":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-526"},"9d1b56c3-529":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-528"},"9d1b56c3-531":{"renderedLength":4038,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-530"},"9d1b56c3-533":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-532"},"9d1b56c3-535":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-534"},"9d1b56c3-537":{"renderedLength":26981,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-536"},"9d1b56c3-539":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-538"},"9d1b56c3-541":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-540"},"9d1b56c3-543":{"renderedLength":10850,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-542"},"9d1b56c3-545":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-544"},"9d1b56c3-547":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-546"},"9d1b56c3-549":{"renderedLength":14113,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-548"},"9d1b56c3-551":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-550"},"9d1b56c3-553":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-552"},"9d1b56c3-555":{"renderedLength":5696,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-554"},"9d1b56c3-557":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-556"},"9d1b56c3-559":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-558"},"9d1b56c3-561":{"renderedLength":9049,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-560"},"9d1b56c3-563":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-562"},"9d1b56c3-565":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-564"},"9d1b56c3-567":{"renderedLength":11970,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-566"},"9d1b56c3-569":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-568"},"9d1b56c3-571":{"renderedLength":6533,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-570"},"9d1b56c3-573":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-572"},"9d1b56c3-575":{"renderedLength":3576,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-574"},"9d1b56c3-577":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-576"},"9d1b56c3-579":{"renderedLength":2670,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-578"},"9d1b56c3-581":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-580"},"9d1b56c3-583":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-582"},"9d1b56c3-585":{"renderedLength":9787,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-584"},"9d1b56c3-587":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-586"},"9d1b56c3-589":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-588"},"9d1b56c3-591":{"renderedLength":4058,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-590"},"9d1b56c3-593":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-592"},"9d1b56c3-595":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-594"},"9d1b56c3-597":{"renderedLength":3296,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-596"},"9d1b56c3-599":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-598"},"9d1b56c3-601":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-600"},"9d1b56c3-603":{"renderedLength":12586,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-602"},"9d1b56c3-605":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-604"},"9d1b56c3-607":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-606"},"9d1b56c3-609":{"renderedLength":7128,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-608"},"9d1b56c3-611":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-610"},"9d1b56c3-613":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-612"},"9d1b56c3-615":{"renderedLength":5747,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-614"},"9d1b56c3-617":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-616"},"9d1b56c3-619":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-618"},"9d1b56c3-621":{"renderedLength":2507,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-620"},"9d1b56c3-623":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-622"},"9d1b56c3-625":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-624"},"9d1b56c3-627":{"renderedLength":2509,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-626"},"9d1b56c3-629":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-628"},"9d1b56c3-631":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-630"},"9d1b56c3-633":{"renderedLength":5769,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-632"},"9d1b56c3-635":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-634"},"9d1b56c3-637":{"renderedLength":4098,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-636"},"9d1b56c3-639":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-638"},"9d1b56c3-641":{"renderedLength":2806,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-640"},"9d1b56c3-643":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-642"},"9d1b56c3-645":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-644"},"9d1b56c3-647":{"renderedLength":2815,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-646"},"9d1b56c3-649":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-648"},"9d1b56c3-651":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-650"},"9d1b56c3-653":{"renderedLength":2603,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-652"},"9d1b56c3-655":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-654"},"9d1b56c3-657":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-656"},"9d1b56c3-659":{"renderedLength":5260,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-658"},"9d1b56c3-661":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-660"},"9d1b56c3-663":{"renderedLength":7122,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-662"},"9d1b56c3-665":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-664"},"9d1b56c3-667":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-666"},"9d1b56c3-669":{"renderedLength":7024,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-668"},"9d1b56c3-671":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-670"},"9d1b56c3-673":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-672"},"9d1b56c3-675":{"renderedLength":2880,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-674"},"9d1b56c3-677":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"9d1b56c3-676"}},"nodeMetas":{"9d1b56c3-0":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages-json-js","moduleParts":{"app.js":"9d1b56c3-1"},"imported":[{"uid":"9d1b56c3-678"},{"uid":"9d1b56c3-376","dynamic":true},{"uid":"9d1b56c3-382","dynamic":true},{"uid":"9d1b56c3-388","dynamic":true},{"uid":"9d1b56c3-394","dynamic":true},{"uid":"9d1b56c3-400","dynamic":true},{"uid":"9d1b56c3-406","dynamic":true},{"uid":"9d1b56c3-412","dynamic":true},{"uid":"9d1b56c3-418","dynamic":true},{"uid":"9d1b56c3-424","dynamic":true},{"uid":"9d1b56c3-430","dynamic":true},{"uid":"9d1b56c3-436","dynamic":true},{"uid":"9d1b56c3-442","dynamic":true},{"uid":"9d1b56c3-448","dynamic":true},{"uid":"9d1b56c3-454","dynamic":true},{"uid":"9d1b56c3-460","dynamic":true},{"uid":"9d1b56c3-466","dynamic":true},{"uid":"9d1b56c3-472","dynamic":true},{"uid":"9d1b56c3-478","dynamic":true},{"uid":"9d1b56c3-484","dynamic":true},{"uid":"9d1b56c3-490","dynamic":true},{"uid":"9d1b56c3-496","dynamic":true}],"importedBy":[{"uid":"9d1b56c3-6"}]},"9d1b56c3-2":{"id":"D:/zcweb/uniapp/temporaryworker/src/App.vue?vue&type=style&index=0&lang.scss","moduleParts":{"app.js":"9d1b56c3-3"},"imported":[],"importedBy":[{"uid":"9d1b56c3-4"}]},"9d1b56c3-4":{"id":"D:/zcweb/uniapp/temporaryworker/src/App.vue","moduleParts":{"app.js":"9d1b56c3-5"},"imported":[{"uid":"9d1b56c3-28"},{"uid":"9d1b56c3-2"},{"uid":"9d1b56c3-40"}],"importedBy":[{"uid":"9d1b56c3-6"}]},"9d1b56c3-6":{"id":"D:/zcweb/uniapp/temporaryworker/src/main.ts","moduleParts":{"app.js":"9d1b56c3-7"},"imported":[{"uid":"9d1b56c3-38"},{"uid":"9d1b56c3-40"},{"uid":"9d1b56c3-44"},{"uid":"9d1b56c3-0"},{"uid":"9d1b56c3-4"},{"uid":"9d1b56c3-76"},{"uid":"9d1b56c3-28"},{"uid":"9d1b56c3-72"},{"uid":"9d1b56c3-70"},{"uid":"9d1b56c3-68"},{"uid":"9d1b56c3-74"},{"uid":"9d1b56c3-66"},{"uid":"9d1b56c3-26"},{"uid":"9d1b56c3-22"},{"uid":"9d1b56c3-20"},{"uid":"9d1b56c3-366"},{"uid":"9d1b56c3-24"},{"uid":"9d1b56c3-42"},{"uid":"9d1b56c3-62"},{"uid":"9d1b56c3-30"}],"importedBy":[],"isEntry":true},"9d1b56c3-8":{"id":"D:/zcweb/uniapp/temporaryworker/src/static/logo.png","moduleParts":{"common/assets.js":"9d1b56c3-9"},"imported":[],"importedBy":[{"uid":"9d1b56c3-386"}]},"9d1b56c3-10":{"id":"D:/zcweb/uniapp/temporaryworker/src/static/image/fabu.png","moduleParts":{"common/assets.js":"9d1b56c3-11"},"imported":[],"importedBy":[{"uid":"9d1b56c3-404"}]},"9d1b56c3-12":{"id":"D:/zcweb/uniapp/temporaryworker/src/static/image/guanli.png","moduleParts":{"common/assets.js":"9d1b56c3-13"},"imported":[],"importedBy":[{"uid":"9d1b56c3-404"}]},"9d1b56c3-14":{"id":"D:/zcweb/uniapp/temporaryworker/src/static/image/qiye.png","moduleParts":{"common/assets.js":"9d1b56c3-15"},"imported":[],"importedBy":[{"uid":"9d1b56c3-404"}]},"9d1b56c3-16":{"id":"D:/zcweb/uniapp/temporaryworker/src/static/image/server.png","moduleParts":{"common/assets.js":"9d1b56c3-17"},"imported":[],"importedBy":[{"uid":"9d1b56c3-404"}]},"9d1b56c3-18":{"id":"D:/zcweb/uniapp/temporaryworker/src/static/image/dingwei.png","moduleParts":{"common/assets.js":"9d1b56c3-19"},"imported":[],"importedBy":[{"uid":"9d1b56c3-464"}]},"9d1b56c3-20":{"id":"D:/zcweb/uniapp/temporaryworker/src/common/locales/en.js","moduleParts":{"common/locales/en.js":"9d1b56c3-21"},"imported":[],"importedBy":[{"uid":"9d1b56c3-6"}]},"9d1b56c3-22":{"id":"D:/zcweb/uniapp/temporaryworker/src/common/locales/zh.js","moduleParts":{"common/locales/zh.js":"9d1b56c3-23"},"imported":[],"importedBy":[{"uid":"9d1b56c3-6"}]},"9d1b56c3-24":{"id":"D:/zcweb/uniapp/temporaryworker/src/common/mixin.js","moduleParts":{"common/mixin.js":"9d1b56c3-25"},"imported":[],"importedBy":[{"uid":"9d1b56c3-6"}]},"9d1b56c3-26":{"id":"D:/zcweb/uniapp/temporaryworker/src/common/request/http.api.js","moduleParts":{"common/request/http.api.js":"9d1b56c3-27"},"imported":[{"uid":"9d1b56c3-28"}],"importedBy":[{"uid":"9d1b56c3-6"}]},"9d1b56c3-28":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/index.js","moduleParts":{"uni_modules/uview-plus/index.js":"9d1b56c3-29"},"imported":[{"uid":"9d1b56c3-38"},{"uid":"9d1b56c3-138"},{"uid":"9d1b56c3-140"},{"uid":"9d1b56c3-362"},{"uid":"9d1b56c3-144"},{"uid":"9d1b56c3-146"},{"uid":"9d1b56c3-86"},{"uid":"9d1b56c3-148"},{"uid":"9d1b56c3-150"},{"uid":"9d1b56c3-130"},{"uid":"9d1b56c3-152"},{"uid":"9d1b56c3-84"},{"uid":"9d1b56c3-154"},{"uid":"9d1b56c3-156"},{"uid":"9d1b56c3-158"}],"importedBy":[{"uid":"9d1b56c3-6"},{"uid":"9d1b56c3-4"},{"uid":"9d1b56c3-26"},{"uid":"9d1b56c3-30"}]},"9d1b56c3-30":{"id":"D:/zcweb/uniapp/temporaryworker/src/common/request/request.js","moduleParts":{"common/request/request.js":"9d1b56c3-31"},"imported":[{"uid":"9d1b56c3-38"},{"uid":"9d1b56c3-28"},{"uid":"9d1b56c3-66"},{"uid":"9d1b56c3-68"}],"importedBy":[{"uid":"9d1b56c3-6"}]},"9d1b56c3-32":{"id":"\\node_modules\\@vue\\shared\\dist\\shared.esm-bundler.js","moduleParts":{"common/vendor.js":"9d1b56c3-33"},"imported":[],"importedBy":[{"uid":"9d1b56c3-38"},{"uid":"9d1b56c3-44"},{"uid":"9d1b56c3-42"},{"uid":"9d1b56c3-36"},{"uid":"9d1b56c3-64"}]},"9d1b56c3-34":{"id":"\\node_modules\\@dcloudio\\uni-i18n\\dist\\uni-i18n.es.js","moduleParts":{"common/vendor.js":"9d1b56c3-35"},"imported":[{"uid":"9d1b56c3-38"}],"importedBy":[{"uid":"9d1b56c3-38"},{"uid":"9d1b56c3-44"}]},"9d1b56c3-36":{"id":"\\node_modules\\@dcloudio\\uni-shared\\dist\\uni-shared.es.js","moduleParts":{"common/vendor.js":"9d1b56c3-37"},"imported":[{"uid":"9d1b56c3-32"}],"importedBy":[{"uid":"9d1b56c3-38"},{"uid":"9d1b56c3-44"},{"uid":"9d1b56c3-42"},{"uid":"9d1b56c3-64"}]},"9d1b56c3-38":{"id":"D:/zcweb/uniapp/temporaryworker/node_modules/@dcloudio/uni-mp-weixin/dist/uni.api.esm.js","moduleParts":{"common/vendor.js":"9d1b56c3-39"},"imported":[{"uid":"9d1b56c3-32"},{"uid":"9d1b56c3-34"},{"uid":"9d1b56c3-36"}],"importedBy":[{"uid":"9d1b56c3-6"},{"uid":"9d1b56c3-28"},{"uid":"9d1b56c3-72"},{"uid":"9d1b56c3-70"},{"uid":"9d1b56c3-68"},{"uid":"9d1b56c3-74"},{"uid":"9d1b56c3-42"},{"uid":"9d1b56c3-30"},{"uid":"9d1b56c3-34"},{"uid":"9d1b56c3-138"},{"uid":"9d1b56c3-144"},{"uid":"9d1b56c3-130"},{"uid":"9d1b56c3-374"},{"uid":"9d1b56c3-380"},{"uid":"9d1b56c3-386"},{"uid":"9d1b56c3-392"},{"uid":"9d1b56c3-404"},{"uid":"9d1b56c3-410"},{"uid":"9d1b56c3-416"},{"uid":"9d1b56c3-422"},{"uid":"9d1b56c3-428"},{"uid":"9d1b56c3-434"},{"uid":"9d1b56c3-440"},{"uid":"9d1b56c3-446"},{"uid":"9d1b56c3-452"},{"uid":"9d1b56c3-458"},{"uid":"9d1b56c3-470"},{"uid":"9d1b56c3-476"},{"uid":"9d1b56c3-482"},{"uid":"9d1b56c3-488"},{"uid":"9d1b56c3-494"},{"uid":"9d1b56c3-64"},{"uid":"9d1b56c3-506"},{"uid":"9d1b56c3-512"},{"uid":"9d1b56c3-536"},{"uid":"9d1b56c3-542"},{"uid":"9d1b56c3-590"},{"uid":"9d1b56c3-602"},{"uid":"9d1b56c3-608"},{"uid":"9d1b56c3-626"},{"uid":"9d1b56c3-640"},{"uid":"9d1b56c3-338"},{"uid":"9d1b56c3-668"},{"uid":"9d1b56c3-78"},{"uid":"9d1b56c3-674"}]},"9d1b56c3-40":{"id":"\u0000plugin-vue:export-helper","moduleParts":{"common/vendor.js":"9d1b56c3-41"},"imported":[],"importedBy":[{"uid":"9d1b56c3-6"},{"uid":"9d1b56c3-4"},{"uid":"9d1b56c3-374"},{"uid":"9d1b56c3-380"},{"uid":"9d1b56c3-386"},{"uid":"9d1b56c3-392"},{"uid":"9d1b56c3-398"},{"uid":"9d1b56c3-404"},{"uid":"9d1b56c3-410"},{"uid":"9d1b56c3-416"},{"uid":"9d1b56c3-422"},{"uid":"9d1b56c3-428"},{"uid":"9d1b56c3-434"},{"uid":"9d1b56c3-440"},{"uid":"9d1b56c3-446"},{"uid":"9d1b56c3-452"},{"uid":"9d1b56c3-458"},{"uid":"9d1b56c3-464"},{"uid":"9d1b56c3-470"},{"uid":"9d1b56c3-476"},{"uid":"9d1b56c3-482"},{"uid":"9d1b56c3-488"},{"uid":"9d1b56c3-494"},{"uid":"9d1b56c3-500"},{"uid":"9d1b56c3-506"},{"uid":"9d1b56c3-512"},{"uid":"9d1b56c3-518"},{"uid":"9d1b56c3-524"},{"uid":"9d1b56c3-530"},{"uid":"9d1b56c3-536"},{"uid":"9d1b56c3-542"},{"uid":"9d1b56c3-548"},{"uid":"9d1b56c3-554"},{"uid":"9d1b56c3-560"},{"uid":"9d1b56c3-566"},{"uid":"9d1b56c3-570"},{"uid":"9d1b56c3-578"},{"uid":"9d1b56c3-584"},{"uid":"9d1b56c3-590"},{"uid":"9d1b56c3-596"},{"uid":"9d1b56c3-602"},{"uid":"9d1b56c3-608"},{"uid":"9d1b56c3-614"},{"uid":"9d1b56c3-620"},{"uid":"9d1b56c3-626"},{"uid":"9d1b56c3-632"},{"uid":"9d1b56c3-640"},{"uid":"9d1b56c3-646"},{"uid":"9d1b56c3-652"},{"uid":"9d1b56c3-658"},{"uid":"9d1b56c3-662"},{"uid":"9d1b56c3-668"},{"uid":"9d1b56c3-674"}]},"9d1b56c3-42":{"id":"D:/zcweb/uniapp/temporaryworker/node_modules/@dcloudio/uni-mp-vue/dist/vue.runtime.esm.js","moduleParts":{"common/vendor.js":"9d1b56c3-43"},"imported":[{"uid":"9d1b56c3-38"},{"uid":"9d1b56c3-36"},{"uid":"9d1b56c3-32"}],"importedBy":[{"uid":"9d1b56c3-6"},{"uid":"9d1b56c3-44"},{"uid":"9d1b56c3-62"},{"uid":"9d1b56c3-46"},{"uid":"9d1b56c3-374"},{"uid":"9d1b56c3-380"},{"uid":"9d1b56c3-386"},{"uid":"9d1b56c3-392"},{"uid":"9d1b56c3-398"},{"uid":"9d1b56c3-404"},{"uid":"9d1b56c3-410"},{"uid":"9d1b56c3-416"},{"uid":"9d1b56c3-422"},{"uid":"9d1b56c3-428"},{"uid":"9d1b56c3-434"},{"uid":"9d1b56c3-440"},{"uid":"9d1b56c3-446"},{"uid":"9d1b56c3-452"},{"uid":"9d1b56c3-458"},{"uid":"9d1b56c3-464"},{"uid":"9d1b56c3-470"},{"uid":"9d1b56c3-476"},{"uid":"9d1b56c3-482"},{"uid":"9d1b56c3-488"},{"uid":"9d1b56c3-494"},{"uid":"9d1b56c3-64"},{"uid":"9d1b56c3-500"},{"uid":"9d1b56c3-506"},{"uid":"9d1b56c3-512"},{"uid":"9d1b56c3-518"},{"uid":"9d1b56c3-524"},{"uid":"9d1b56c3-530"},{"uid":"9d1b56c3-536"},{"uid":"9d1b56c3-542"},{"uid":"9d1b56c3-548"},{"uid":"9d1b56c3-554"},{"uid":"9d1b56c3-560"},{"uid":"9d1b56c3-566"},{"uid":"9d1b56c3-578"},{"uid":"9d1b56c3-584"},{"uid":"9d1b56c3-590"},{"uid":"9d1b56c3-596"},{"uid":"9d1b56c3-602"},{"uid":"9d1b56c3-608"},{"uid":"9d1b56c3-614"},{"uid":"9d1b56c3-620"},{"uid":"9d1b56c3-626"},{"uid":"9d1b56c3-632"},{"uid":"9d1b56c3-640"},{"uid":"9d1b56c3-646"},{"uid":"9d1b56c3-652"},{"uid":"9d1b56c3-658"},{"uid":"9d1b56c3-662"},{"uid":"9d1b56c3-668"},{"uid":"9d1b56c3-136"},{"uid":"9d1b56c3-674"}]},"9d1b56c3-44":{"id":"D:/zcweb/uniapp/temporaryworker/node_modules/@dcloudio/uni-mp-weixin/dist/uni.mp.esm.js","moduleParts":{"common/vendor.js":"9d1b56c3-45"},"imported":[{"uid":"9d1b56c3-36"},{"uid":"9d1b56c3-32"},{"uid":"9d1b56c3-42"},{"uid":"9d1b56c3-34"}],"importedBy":[{"uid":"9d1b56c3-6"}]},"9d1b56c3-46":{"id":"\\node_modules\\vuex\\dist\\vuex.esm-bundler.js","moduleParts":{"common/vendor.js":"9d1b56c3-47"},"imported":[{"uid":"9d1b56c3-42"}],"importedBy":[{"uid":"9d1b56c3-76"},{"uid":"9d1b56c3-392"}]},"9d1b56c3-48":{"id":"D:/zcweb/uniapp/temporaryworker/node_modules/@intlify/shared/dist/shared.esm-bundler.js","moduleParts":{"common/vendor.js":"9d1b56c3-49"},"imported":[],"importedBy":[{"uid":"9d1b56c3-62"},{"uid":"9d1b56c3-58"},{"uid":"9d1b56c3-52"},{"uid":"9d1b56c3-54"}]},"9d1b56c3-50":{"id":"D:/zcweb/uniapp/temporaryworker/node_modules/@intlify/message-resolver/dist/message-resolver.esm-bundler.js","moduleParts":{"common/vendor.js":"9d1b56c3-51"},"imported":[],"importedBy":[{"uid":"9d1b56c3-58"}]},"9d1b56c3-52":{"id":"D:/zcweb/uniapp/temporaryworker/node_modules/@intlify/runtime/dist/runtime.esm-bundler.js","moduleParts":{"common/vendor.js":"9d1b56c3-53"},"imported":[{"uid":"9d1b56c3-48"}],"importedBy":[{"uid":"9d1b56c3-58"}]},"9d1b56c3-54":{"id":"D:/zcweb/uniapp/temporaryworker/node_modules/@intlify/message-compiler/dist/message-compiler.esm-bundler.js","moduleParts":{"common/vendor.js":"9d1b56c3-55"},"imported":[{"uid":"9d1b56c3-48"}],"importedBy":[{"uid":"9d1b56c3-58"}]},"9d1b56c3-56":{"id":"D:/zcweb/uniapp/temporaryworker/node_modules/@intlify/devtools-if/dist/devtools-if.esm-bundler.js","moduleParts":{"common/vendor.js":"9d1b56c3-57"},"imported":[],"importedBy":[{"uid":"9d1b56c3-58"}]},"9d1b56c3-58":{"id":"D:/zcweb/uniapp/temporaryworker/node_modules/@intlify/core-base/dist/core-base.esm-bundler.js","moduleParts":{"common/vendor.js":"9d1b56c3-59"},"imported":[{"uid":"9d1b56c3-48"},{"uid":"9d1b56c3-50"},{"uid":"9d1b56c3-52"},{"uid":"9d1b56c3-54"},{"uid":"9d1b56c3-56"}],"importedBy":[{"uid":"9d1b56c3-62"}]},"9d1b56c3-60":{"id":"D:/zcweb/uniapp/temporaryworker/node_modules/@intlify/vue-devtools/dist/vue-devtools.esm-bundler.js","moduleParts":{"common/vendor.js":"9d1b56c3-61"},"imported":[],"importedBy":[{"uid":"9d1b56c3-62"}]},"9d1b56c3-62":{"id":"D:/zcweb/uniapp/temporaryworker/node_modules/@dcloudio/uni-cli-shared/lib/vue-i18n/dist/vue-i18n.runtime.esm-bundler.js","moduleParts":{"common/vendor.js":"9d1b56c3-63"},"imported":[{"uid":"9d1b56c3-48"},{"uid":"9d1b56c3-58"},{"uid":"9d1b56c3-42"},{"uid":"9d1b56c3-60"}],"importedBy":[{"uid":"9d1b56c3-6"}]},"9d1b56c3-64":{"id":"\\node_modules\\@dcloudio\\uni-app\\dist\\uni-app.es.js","moduleParts":{"common/vendor.js":"9d1b56c3-65"},"imported":[{"uid":"9d1b56c3-38"},{"uid":"9d1b56c3-42"},{"uid":"9d1b56c3-32"},{"uid":"9d1b56c3-36"}],"importedBy":[{"uid":"9d1b56c3-380"},{"uid":"9d1b56c3-392"},{"uid":"9d1b56c3-410"},{"uid":"9d1b56c3-416"},{"uid":"9d1b56c3-452"},{"uid":"9d1b56c3-458"},{"uid":"9d1b56c3-470"},{"uid":"9d1b56c3-476"},{"uid":"9d1b56c3-488"}]},"9d1b56c3-66":{"id":"D:/zcweb/uniapp/temporaryworker/src/common/setting/constVarsHelper.js","moduleParts":{"common/setting/constVarsHelper.js":"9d1b56c3-67"},"imported":[],"importedBy":[{"uid":"9d1b56c3-6"},{"uid":"9d1b56c3-72"},{"uid":"9d1b56c3-30"},{"uid":"9d1b56c3-416"},{"uid":"9d1b56c3-440"},{"uid":"9d1b56c3-458"}]},"9d1b56c3-68":{"id":"D:/zcweb/uniapp/temporaryworker/src/common/utils/dbHelper.js","moduleParts":{"common/utils/dbHelper.js":"9d1b56c3-69"},"imported":[{"uid":"9d1b56c3-38"}],"importedBy":[{"uid":"9d1b56c3-6"},{"uid":"9d1b56c3-72"},{"uid":"9d1b56c3-30"}]},"9d1b56c3-70":{"id":"D:/zcweb/uniapp/temporaryworker/src/common/utils/commonHelper.js","moduleParts":{"common/utils/commonHelper.js":"9d1b56c3-71"},"imported":[{"uid":"9d1b56c3-38"}],"importedBy":[{"uid":"9d1b56c3-6"}]},"9d1b56c3-72":{"id":"D:/zcweb/uniapp/temporaryworker/src/common/utils/uploadHelper.js","moduleParts":{"common/utils/uploadHelper.js":"9d1b56c3-73"},"imported":[{"uid":"9d1b56c3-38"},{"uid":"9d1b56c3-66"},{"uid":"9d1b56c3-68"}],"importedBy":[{"uid":"9d1b56c3-6"}]},"9d1b56c3-74":{"id":"D:/zcweb/uniapp/temporaryworker/src/common/utils/util.js","moduleParts":{"common/utils/util.js":"9d1b56c3-75"},"imported":[{"uid":"9d1b56c3-38"}],"importedBy":[{"uid":"9d1b56c3-6"}]},"9d1b56c3-76":{"id":"D:/zcweb/uniapp/temporaryworker/src/store/index.js","moduleParts":{"store/index.js":"9d1b56c3-77"},"imported":[{"uid":"9d1b56c3-46"}],"importedBy":[{"uid":"9d1b56c3-6"}]},"9d1b56c3-78":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uni-transition/components/uni-transition/createAnimation.js","moduleParts":{"uni_modules/uni-transition/components/uni-transition/createAnimation.js":"9d1b56c3-79"},"imported":[{"uid":"9d1b56c3-38"}],"importedBy":[{"uid":"9d1b56c3-662"}]},"9d1b56c3-80":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-avatar/props.js","moduleParts":{"uni_modules/uview-plus/components/u-avatar/props.js":"9d1b56c3-81"},"imported":[{"uid":"9d1b56c3-82"},{"uid":"9d1b56c3-84"},{"uid":"9d1b56c3-86"}],"importedBy":[{"uid":"9d1b56c3-584"}]},"9d1b56c3-82":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/vue.js","moduleParts":{"uni_modules/uview-plus/libs/vue.js":"9d1b56c3-83"},"imported":[],"importedBy":[{"uid":"9d1b56c3-366"},{"uid":"9d1b56c3-138"},{"uid":"9d1b56c3-140"},{"uid":"9d1b56c3-100"},{"uid":"9d1b56c3-118"},{"uid":"9d1b56c3-120"},{"uid":"9d1b56c3-124"},{"uid":"9d1b56c3-114"},{"uid":"9d1b56c3-92"},{"uid":"9d1b56c3-102"},{"uid":"9d1b56c3-94"},{"uid":"9d1b56c3-132"},{"uid":"9d1b56c3-116"},{"uid":"9d1b56c3-96"},{"uid":"9d1b56c3-80"},{"uid":"9d1b56c3-122"},{"uid":"9d1b56c3-90"},{"uid":"9d1b56c3-108"},{"uid":"9d1b56c3-110"},{"uid":"9d1b56c3-364"},{"uid":"9d1b56c3-368"},{"uid":"9d1b56c3-88"},{"uid":"9d1b56c3-134"},{"uid":"9d1b56c3-104"},{"uid":"9d1b56c3-112"},{"uid":"9d1b56c3-126"},{"uid":"9d1b56c3-106"}]},"9d1b56c3-84":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props.js","moduleParts":{"uni_modules/uview-plus/libs/config/props.js":"9d1b56c3-85"},"imported":[{"uid":"9d1b56c3-152"},{"uid":"9d1b56c3-160"},{"uid":"9d1b56c3-162"},{"uid":"9d1b56c3-164"},{"uid":"9d1b56c3-166"},{"uid":"9d1b56c3-168"},{"uid":"9d1b56c3-170"},{"uid":"9d1b56c3-172"},{"uid":"9d1b56c3-174"},{"uid":"9d1b56c3-176"},{"uid":"9d1b56c3-178"},{"uid":"9d1b56c3-180"},{"uid":"9d1b56c3-182"},{"uid":"9d1b56c3-184"},{"uid":"9d1b56c3-186"},{"uid":"9d1b56c3-188"},{"uid":"9d1b56c3-190"},{"uid":"9d1b56c3-192"},{"uid":"9d1b56c3-194"},{"uid":"9d1b56c3-196"},{"uid":"9d1b56c3-198"},{"uid":"9d1b56c3-200"},{"uid":"9d1b56c3-202"},{"uid":"9d1b56c3-204"},{"uid":"9d1b56c3-206"},{"uid":"9d1b56c3-208"},{"uid":"9d1b56c3-210"},{"uid":"9d1b56c3-212"},{"uid":"9d1b56c3-214"},{"uid":"9d1b56c3-216"},{"uid":"9d1b56c3-218"},{"uid":"9d1b56c3-220"},{"uid":"9d1b56c3-222"},{"uid":"9d1b56c3-224"},{"uid":"9d1b56c3-226"},{"uid":"9d1b56c3-228"},{"uid":"9d1b56c3-230"},{"uid":"9d1b56c3-232"},{"uid":"9d1b56c3-234"},{"uid":"9d1b56c3-236"},{"uid":"9d1b56c3-238"},{"uid":"9d1b56c3-240"},{"uid":"9d1b56c3-242"},{"uid":"9d1b56c3-244"},{"uid":"9d1b56c3-246"},{"uid":"9d1b56c3-248"},{"uid":"9d1b56c3-250"},{"uid":"9d1b56c3-252"},{"uid":"9d1b56c3-254"},{"uid":"9d1b56c3-256"},{"uid":"9d1b56c3-258"},{"uid":"9d1b56c3-260"},{"uid":"9d1b56c3-262"},{"uid":"9d1b56c3-264"},{"uid":"9d1b56c3-266"},{"uid":"9d1b56c3-268"},{"uid":"9d1b56c3-270"},{"uid":"9d1b56c3-272"},{"uid":"9d1b56c3-274"},{"uid":"9d1b56c3-276"},{"uid":"9d1b56c3-278"},{"uid":"9d1b56c3-280"},{"uid":"9d1b56c3-282"},{"uid":"9d1b56c3-284"},{"uid":"9d1b56c3-286"},{"uid":"9d1b56c3-288"},{"uid":"9d1b56c3-290"},{"uid":"9d1b56c3-292"},{"uid":"9d1b56c3-294"},{"uid":"9d1b56c3-296"},{"uid":"9d1b56c3-298"},{"uid":"9d1b56c3-300"},{"uid":"9d1b56c3-302"},{"uid":"9d1b56c3-304"},{"uid":"9d1b56c3-306"},{"uid":"9d1b56c3-308"},{"uid":"9d1b56c3-310"},{"uid":"9d1b56c3-312"},{"uid":"9d1b56c3-314"},{"uid":"9d1b56c3-316"},{"uid":"9d1b56c3-318"},{"uid":"9d1b56c3-320"},{"uid":"9d1b56c3-322"},{"uid":"9d1b56c3-324"},{"uid":"9d1b56c3-326"},{"uid":"9d1b56c3-328"},{"uid":"9d1b56c3-330"},{"uid":"9d1b56c3-332"},{"uid":"9d1b56c3-334"}],"importedBy":[{"uid":"9d1b56c3-28"},{"uid":"9d1b56c3-554"},{"uid":"9d1b56c3-100"},{"uid":"9d1b56c3-118"},{"uid":"9d1b56c3-120"},{"uid":"9d1b56c3-124"},{"uid":"9d1b56c3-114"},{"uid":"9d1b56c3-92"},{"uid":"9d1b56c3-102"},{"uid":"9d1b56c3-94"},{"uid":"9d1b56c3-132"},{"uid":"9d1b56c3-116"},{"uid":"9d1b56c3-96"},{"uid":"9d1b56c3-80"},{"uid":"9d1b56c3-122"},{"uid":"9d1b56c3-90"},{"uid":"9d1b56c3-108"},{"uid":"9d1b56c3-110"},{"uid":"9d1b56c3-88"},{"uid":"9d1b56c3-134"},{"uid":"9d1b56c3-104"},{"uid":"9d1b56c3-112"},{"uid":"9d1b56c3-126"},{"uid":"9d1b56c3-106"}]},"9d1b56c3-86":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/function/test.js","moduleParts":{"uni_modules/uview-plus/libs/function/test.js":"9d1b56c3-87"},"imported":[],"importedBy":[{"uid":"9d1b56c3-28"},{"uid":"9d1b56c3-138"},{"uid":"9d1b56c3-130"},{"uid":"9d1b56c3-518"},{"uid":"9d1b56c3-570"},{"uid":"9d1b56c3-614"},{"uid":"9d1b56c3-80"},{"uid":"9d1b56c3-128"}]},"9d1b56c3-88":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-button/props.js","moduleParts":{"uni_modules/uview-plus/components/u-button/props.js":"9d1b56c3-89"},"imported":[{"uid":"9d1b56c3-82"},{"uid":"9d1b56c3-84"}],"importedBy":[{"uid":"9d1b56c3-574"}]},"9d1b56c3-90":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-cell/props.js","moduleParts":{"uni_modules/uview-plus/components/u-cell/props.js":"9d1b56c3-91"},"imported":[{"uid":"9d1b56c3-82"},{"uid":"9d1b56c3-84"}],"importedBy":[{"uid":"9d1b56c3-614"}]},"9d1b56c3-92":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-empty/props.js","moduleParts":{"uni_modules/uview-plus/components/u-empty/props.js":"9d1b56c3-93"},"imported":[{"uid":"9d1b56c3-82"},{"uid":"9d1b56c3-84"}],"importedBy":[{"uid":"9d1b56c3-530"}]},"9d1b56c3-94":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-form-item/props.js","moduleParts":{"uni_modules/uview-plus/components/u-form-item/props.js":"9d1b56c3-95"},"imported":[{"uid":"9d1b56c3-82"},{"uid":"9d1b56c3-84"}],"importedBy":[{"uid":"9d1b56c3-554"}]},"9d1b56c3-96":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-form/props.js","moduleParts":{"uni_modules/uview-plus/components/u-form/props.js":"9d1b56c3-97"},"imported":[{"uid":"9d1b56c3-82"},{"uid":"9d1b56c3-84"}],"importedBy":[{"uid":"9d1b56c3-570"}]},"9d1b56c3-98":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-icon/icons.js","moduleParts":{"uni_modules/uview-plus/components/u-icon/icons.js":"9d1b56c3-99"},"imported":[],"importedBy":[{"uid":"9d1b56c3-500"}]},"9d1b56c3-100":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-icon/props.js","moduleParts":{"uni_modules/uview-plus/components/u-icon/props.js":"9d1b56c3-101"},"imported":[{"uid":"9d1b56c3-82"},{"uid":"9d1b56c3-84"}],"importedBy":[{"uid":"9d1b56c3-500"}]},"9d1b56c3-102":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-input/props.js","moduleParts":{"uni_modules/uview-plus/components/u-input/props.js":"9d1b56c3-103"},"imported":[{"uid":"9d1b56c3-82"},{"uid":"9d1b56c3-84"}],"importedBy":[{"uid":"9d1b56c3-548"}]},"9d1b56c3-104":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-line/props.js","moduleParts":{"uni_modules/uview-plus/components/u-line/props.js":"9d1b56c3-105"},"imported":[{"uid":"9d1b56c3-82"},{"uid":"9d1b56c3-84"}],"importedBy":[{"uid":"9d1b56c3-652"}]},"9d1b56c3-106":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-link/props.js","moduleParts":{"uni_modules/uview-plus/components/u-link/props.js":"9d1b56c3-107"},"imported":[{"uid":"9d1b56c3-82"},{"uid":"9d1b56c3-84"}],"importedBy":[{"uid":"9d1b56c3-674"}]},"9d1b56c3-108":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-list-item/props.js","moduleParts":{"uni_modules/uview-plus/components/u-list-item/props.js":"9d1b56c3-109"},"imported":[{"uid":"9d1b56c3-82"},{"uid":"9d1b56c3-84"}],"importedBy":[{"uid":"9d1b56c3-620"}]},"9d1b56c3-110":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-list/props.js","moduleParts":{"uni_modules/uview-plus/components/u-list/props.js":"9d1b56c3-111"},"imported":[{"uid":"9d1b56c3-82"},{"uid":"9d1b56c3-84"}],"importedBy":[{"uid":"9d1b56c3-632"}]},"9d1b56c3-112":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-loading-icon/props.js","moduleParts":{"uni_modules/uview-plus/components/u-loading-icon/props.js":"9d1b56c3-113"},"imported":[{"uid":"9d1b56c3-82"},{"uid":"9d1b56c3-84"}],"importedBy":[{"uid":"9d1b56c3-658"}]},"9d1b56c3-114":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-loadmore/props.js","moduleParts":{"uni_modules/uview-plus/components/u-loadmore/props.js":"9d1b56c3-115"},"imported":[{"uid":"9d1b56c3-82"},{"uid":"9d1b56c3-84"}],"importedBy":[{"uid":"9d1b56c3-524"}]},"9d1b56c3-116":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-number-box/props.js","moduleParts":{"uni_modules/uview-plus/components/u-number-box/props.js":"9d1b56c3-117"},"imported":[{"uid":"9d1b56c3-82"},{"uid":"9d1b56c3-84"}],"importedBy":[{"uid":"9d1b56c3-566"}]},"9d1b56c3-118":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-search/props.js","moduleParts":{"uni_modules/uview-plus/components/u-search/props.js":"9d1b56c3-119"},"imported":[{"uid":"9d1b56c3-82"},{"uid":"9d1b56c3-84"}],"importedBy":[{"uid":"9d1b56c3-506"}]},"9d1b56c3-120":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-sticky/props.js","moduleParts":{"uni_modules/uview-plus/components/u-sticky/props.js":"9d1b56c3-121"},"imported":[{"uid":"9d1b56c3-82"},{"uid":"9d1b56c3-84"}],"importedBy":[{"uid":"9d1b56c3-512"}]},"9d1b56c3-122":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-subsection/props.js","moduleParts":{"uni_modules/uview-plus/components/u-subsection/props.js":"9d1b56c3-123"},"imported":[{"uid":"9d1b56c3-82"},{"uid":"9d1b56c3-84"}],"importedBy":[{"uid":"9d1b56c3-608"}]},"9d1b56c3-124":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-tag/props.js","moduleParts":{"uni_modules/uview-plus/components/u-tag/props.js":"9d1b56c3-125"},"imported":[{"uid":"9d1b56c3-82"},{"uid":"9d1b56c3-84"}],"importedBy":[{"uid":"9d1b56c3-518"}]},"9d1b56c3-126":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-text/props.js","moduleParts":{"uni_modules/uview-plus/components/u-text/props.js":"9d1b56c3-127"},"imported":[{"uid":"9d1b56c3-82"},{"uid":"9d1b56c3-84"}],"importedBy":[{"uid":"9d1b56c3-668"}]},"9d1b56c3-128":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-text/value.js","moduleParts":{"uni_modules/uview-plus/components/u-text/value.js":"9d1b56c3-129"},"imported":[{"uid":"9d1b56c3-130"},{"uid":"9d1b56c3-86"}],"importedBy":[{"uid":"9d1b56c3-668"}]},"9d1b56c3-130":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/function/index.js","moduleParts":{"uni_modules/uview-plus/libs/function/index.js":"9d1b56c3-131"},"imported":[{"uid":"9d1b56c3-38"},{"uid":"9d1b56c3-86"},{"uid":"9d1b56c3-336"},{"uid":"9d1b56c3-152"}],"importedBy":[{"uid":"9d1b56c3-28"},{"uid":"9d1b56c3-366"},{"uid":"9d1b56c3-138"},{"uid":"9d1b56c3-144"},{"uid":"9d1b56c3-500"},{"uid":"9d1b56c3-506"},{"uid":"9d1b56c3-512"},{"uid":"9d1b56c3-524"},{"uid":"9d1b56c3-530"},{"uid":"9d1b56c3-548"},{"uid":"9d1b56c3-554"},{"uid":"9d1b56c3-560"},{"uid":"9d1b56c3-566"},{"uid":"9d1b56c3-570"},{"uid":"9d1b56c3-584"},{"uid":"9d1b56c3-608"},{"uid":"9d1b56c3-614"},{"uid":"9d1b56c3-620"},{"uid":"9d1b56c3-632"},{"uid":"9d1b56c3-574"},{"uid":"9d1b56c3-646"},{"uid":"9d1b56c3-652"},{"uid":"9d1b56c3-658"},{"uid":"9d1b56c3-668"},{"uid":"9d1b56c3-136"},{"uid":"9d1b56c3-128"},{"uid":"9d1b56c3-674"}]},"9d1b56c3-132":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-textarea/props.js","moduleParts":{"uni_modules/uview-plus/components/u-textarea/props.js":"9d1b56c3-133"},"imported":[{"uid":"9d1b56c3-82"},{"uid":"9d1b56c3-84"}],"importedBy":[{"uid":"9d1b56c3-560"}]},"9d1b56c3-134":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-transition/props.js","moduleParts":{"uni_modules/uview-plus/components/u-transition/props.js":"9d1b56c3-135"},"imported":[{"uid":"9d1b56c3-82"},{"uid":"9d1b56c3-84"}],"importedBy":[{"uid":"9d1b56c3-646"}]},"9d1b56c3-136":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-transition/transition.js","moduleParts":{"uni_modules/uview-plus/components/u-transition/transition.js":"9d1b56c3-137"},"imported":[{"uid":"9d1b56c3-42"},{"uid":"9d1b56c3-130"}],"importedBy":[{"uid":"9d1b56c3-646"}]},"9d1b56c3-138":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/mixin/mixin.js","moduleParts":{"uni_modules/uview-plus/libs/mixin/mixin.js":"9d1b56c3-139"},"imported":[{"uid":"9d1b56c3-38"},{"uid":"9d1b56c3-82"},{"uid":"9d1b56c3-130"},{"uid":"9d1b56c3-86"},{"uid":"9d1b56c3-144"}],"importedBy":[{"uid":"9d1b56c3-28"},{"uid":"9d1b56c3-500"},{"uid":"9d1b56c3-506"},{"uid":"9d1b56c3-512"},{"uid":"9d1b56c3-518"},{"uid":"9d1b56c3-524"},{"uid":"9d1b56c3-530"},{"uid":"9d1b56c3-548"},{"uid":"9d1b56c3-554"},{"uid":"9d1b56c3-560"},{"uid":"9d1b56c3-566"},{"uid":"9d1b56c3-570"},{"uid":"9d1b56c3-584"},{"uid":"9d1b56c3-608"},{"uid":"9d1b56c3-614"},{"uid":"9d1b56c3-620"},{"uid":"9d1b56c3-632"},{"uid":"9d1b56c3-574"},{"uid":"9d1b56c3-646"},{"uid":"9d1b56c3-652"},{"uid":"9d1b56c3-658"},{"uid":"9d1b56c3-668"},{"uid":"9d1b56c3-674"}]},"9d1b56c3-140":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/mixin/mpMixin.js","moduleParts":{"uni_modules/uview-plus/libs/mixin/mpMixin.js":"9d1b56c3-141"},"imported":[{"uid":"9d1b56c3-82"}],"importedBy":[{"uid":"9d1b56c3-28"},{"uid":"9d1b56c3-500"},{"uid":"9d1b56c3-506"},{"uid":"9d1b56c3-512"},{"uid":"9d1b56c3-518"},{"uid":"9d1b56c3-524"},{"uid":"9d1b56c3-530"},{"uid":"9d1b56c3-548"},{"uid":"9d1b56c3-554"},{"uid":"9d1b56c3-560"},{"uid":"9d1b56c3-566"},{"uid":"9d1b56c3-570"},{"uid":"9d1b56c3-584"},{"uid":"9d1b56c3-608"},{"uid":"9d1b56c3-614"},{"uid":"9d1b56c3-620"},{"uid":"9d1b56c3-632"},{"uid":"9d1b56c3-574"},{"uid":"9d1b56c3-646"},{"uid":"9d1b56c3-652"},{"uid":"9d1b56c3-658"},{"uid":"9d1b56c3-668"},{"uid":"9d1b56c3-674"}]},"9d1b56c3-142":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/luch-request/core/Request.js","moduleParts":{"uni_modules/uview-plus/libs/luch-request/core/Request.js":"9d1b56c3-143"},"imported":[{"uid":"9d1b56c3-350"},{"uid":"9d1b56c3-348"},{"uid":"9d1b56c3-352"},{"uid":"9d1b56c3-354"},{"uid":"9d1b56c3-346"},{"uid":"9d1b56c3-356"}],"importedBy":[{"uid":"9d1b56c3-362"}]},"9d1b56c3-144":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/util/route.js","moduleParts":{"uni_modules/uview-plus/libs/util/route.js":"9d1b56c3-145"},"imported":[{"uid":"9d1b56c3-38"},{"uid":"9d1b56c3-130"}],"importedBy":[{"uid":"9d1b56c3-28"},{"uid":"9d1b56c3-138"}]},"9d1b56c3-146":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/function/colorGradient.js","moduleParts":{"uni_modules/uview-plus/libs/function/colorGradient.js":"9d1b56c3-147"},"imported":[],"importedBy":[{"uid":"9d1b56c3-28"},{"uid":"9d1b56c3-658"}]},"9d1b56c3-148":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/function/debounce.js","moduleParts":{"uni_modules/uview-plus/libs/function/debounce.js":"9d1b56c3-149"},"imported":[],"importedBy":[{"uid":"9d1b56c3-28"},{"uid":"9d1b56c3-548"}]},"9d1b56c3-150":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/function/throttle.js","moduleParts":{"uni_modules/uview-plus/libs/function/throttle.js":"9d1b56c3-151"},"imported":[],"importedBy":[{"uid":"9d1b56c3-28"},{"uid":"9d1b56c3-574"}]},"9d1b56c3-152":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/config.js","moduleParts":{"uni_modules/uview-plus/libs/config/config.js":"9d1b56c3-153"},"imported":[],"importedBy":[{"uid":"9d1b56c3-28"},{"uid":"9d1b56c3-130"},{"uid":"9d1b56c3-84"},{"uid":"9d1b56c3-222"},{"uid":"9d1b56c3-238"},{"uid":"9d1b56c3-244"},{"uid":"9d1b56c3-500"}]},"9d1b56c3-154":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/zIndex.js","moduleParts":{"uni_modules/uview-plus/libs/config/zIndex.js":"9d1b56c3-155"},"imported":[],"importedBy":[{"uid":"9d1b56c3-28"},{"uid":"9d1b56c3-512"}]},"9d1b56c3-156":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/color.js","moduleParts":{"uni_modules/uview-plus/libs/config/color.js":"9d1b56c3-157"},"imported":[],"importedBy":[{"uid":"9d1b56c3-28"},{"uid":"9d1b56c3-252"},{"uid":"9d1b56c3-554"},{"uid":"9d1b56c3-574"}]},"9d1b56c3-158":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/function/platform.js","moduleParts":{"uni_modules/uview-plus/libs/function/platform.js":"9d1b56c3-159"},"imported":[],"importedBy":[{"uid":"9d1b56c3-28"}]},"9d1b56c3-160":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/actionSheet.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/actionSheet.js":"9d1b56c3-161"},"imported":[],"importedBy":[{"uid":"9d1b56c3-84"}]},"9d1b56c3-162":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/album.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/album.js":"9d1b56c3-163"},"imported":[],"importedBy":[{"uid":"9d1b56c3-84"}]},"9d1b56c3-164":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/alert.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/alert.js":"9d1b56c3-165"},"imported":[],"importedBy":[{"uid":"9d1b56c3-84"}]},"9d1b56c3-166":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/avatar.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/avatar.js":"9d1b56c3-167"},"imported":[],"importedBy":[{"uid":"9d1b56c3-84"}]},"9d1b56c3-168":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/avatarGroup.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/avatarGroup.js":"9d1b56c3-169"},"imported":[],"importedBy":[{"uid":"9d1b56c3-84"}]},"9d1b56c3-170":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/backtop.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/backtop.js":"9d1b56c3-171"},"imported":[],"importedBy":[{"uid":"9d1b56c3-84"}]},"9d1b56c3-172":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/badge.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/badge.js":"9d1b56c3-173"},"imported":[],"importedBy":[{"uid":"9d1b56c3-84"}]},"9d1b56c3-174":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/button.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/button.js":"9d1b56c3-175"},"imported":[],"importedBy":[{"uid":"9d1b56c3-84"}]},"9d1b56c3-176":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/calendar.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/calendar.js":"9d1b56c3-177"},"imported":[],"importedBy":[{"uid":"9d1b56c3-84"}]},"9d1b56c3-178":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/carKeyboard.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/carKeyboard.js":"9d1b56c3-179"},"imported":[],"importedBy":[{"uid":"9d1b56c3-84"}]},"9d1b56c3-180":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/cell.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/cell.js":"9d1b56c3-181"},"imported":[],"importedBy":[{"uid":"9d1b56c3-84"}]},"9d1b56c3-182":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/cellGroup.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/cellGroup.js":"9d1b56c3-183"},"imported":[],"importedBy":[{"uid":"9d1b56c3-84"}]},"9d1b56c3-184":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/checkbox.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/checkbox.js":"9d1b56c3-185"},"imported":[],"importedBy":[{"uid":"9d1b56c3-84"}]},"9d1b56c3-186":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/checkboxGroup.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/checkboxGroup.js":"9d1b56c3-187"},"imported":[],"importedBy":[{"uid":"9d1b56c3-84"}]},"9d1b56c3-188":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/circleProgress.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/circleProgress.js":"9d1b56c3-189"},"imported":[],"importedBy":[{"uid":"9d1b56c3-84"}]},"9d1b56c3-190":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/code.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/code.js":"9d1b56c3-191"},"imported":[],"importedBy":[{"uid":"9d1b56c3-84"}]},"9d1b56c3-192":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/codeInput.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/codeInput.js":"9d1b56c3-193"},"imported":[],"importedBy":[{"uid":"9d1b56c3-84"}]},"9d1b56c3-194":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/col.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/col.js":"9d1b56c3-195"},"imported":[],"importedBy":[{"uid":"9d1b56c3-84"}]},"9d1b56c3-196":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/collapse.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/collapse.js":"9d1b56c3-197"},"imported":[],"importedBy":[{"uid":"9d1b56c3-84"}]},"9d1b56c3-198":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/collapseItem.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/collapseItem.js":"9d1b56c3-199"},"imported":[],"importedBy":[{"uid":"9d1b56c3-84"}]},"9d1b56c3-200":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/columnNotice.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/columnNotice.js":"9d1b56c3-201"},"imported":[],"importedBy":[{"uid":"9d1b56c3-84"}]},"9d1b56c3-202":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/countDown.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/countDown.js":"9d1b56c3-203"},"imported":[],"importedBy":[{"uid":"9d1b56c3-84"}]},"9d1b56c3-204":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/countTo.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/countTo.js":"9d1b56c3-205"},"imported":[],"importedBy":[{"uid":"9d1b56c3-84"}]},"9d1b56c3-206":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/datetimePicker.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/datetimePicker.js":"9d1b56c3-207"},"imported":[],"importedBy":[{"uid":"9d1b56c3-84"}]},"9d1b56c3-208":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/divider.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/divider.js":"9d1b56c3-209"},"imported":[],"importedBy":[{"uid":"9d1b56c3-84"}]},"9d1b56c3-210":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/empty.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/empty.js":"9d1b56c3-211"},"imported":[],"importedBy":[{"uid":"9d1b56c3-84"}]},"9d1b56c3-212":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/form.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/form.js":"9d1b56c3-213"},"imported":[],"importedBy":[{"uid":"9d1b56c3-84"}]},"9d1b56c3-214":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/formItem.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/formItem.js":"9d1b56c3-215"},"imported":[],"importedBy":[{"uid":"9d1b56c3-84"}]},"9d1b56c3-216":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/gap.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/gap.js":"9d1b56c3-217"},"imported":[],"importedBy":[{"uid":"9d1b56c3-84"}]},"9d1b56c3-218":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/grid.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/grid.js":"9d1b56c3-219"},"imported":[],"importedBy":[{"uid":"9d1b56c3-84"}]},"9d1b56c3-220":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/gridItem.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/gridItem.js":"9d1b56c3-221"},"imported":[],"importedBy":[{"uid":"9d1b56c3-84"}]},"9d1b56c3-222":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/icon.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/icon.js":"9d1b56c3-223"},"imported":[{"uid":"9d1b56c3-152"}],"importedBy":[{"uid":"9d1b56c3-84"}]},"9d1b56c3-224":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/image.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/image.js":"9d1b56c3-225"},"imported":[],"importedBy":[{"uid":"9d1b56c3-84"}]},"9d1b56c3-226":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/indexAnchor.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/indexAnchor.js":"9d1b56c3-227"},"imported":[],"importedBy":[{"uid":"9d1b56c3-84"}]},"9d1b56c3-228":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/indexList.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/indexList.js":"9d1b56c3-229"},"imported":[],"importedBy":[{"uid":"9d1b56c3-84"}]},"9d1b56c3-230":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/input.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/input.js":"9d1b56c3-231"},"imported":[],"importedBy":[{"uid":"9d1b56c3-84"}]},"9d1b56c3-232":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/keyboard.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/keyboard.js":"9d1b56c3-233"},"imported":[],"importedBy":[{"uid":"9d1b56c3-84"}]},"9d1b56c3-234":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/line.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/line.js":"9d1b56c3-235"},"imported":[],"importedBy":[{"uid":"9d1b56c3-84"}]},"9d1b56c3-236":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/lineProgress.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/lineProgress.js":"9d1b56c3-237"},"imported":[],"importedBy":[{"uid":"9d1b56c3-84"}]},"9d1b56c3-238":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/link.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/link.js":"9d1b56c3-239"},"imported":[{"uid":"9d1b56c3-152"}],"importedBy":[{"uid":"9d1b56c3-84"}]},"9d1b56c3-240":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/list.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/list.js":"9d1b56c3-241"},"imported":[],"importedBy":[{"uid":"9d1b56c3-84"}]},"9d1b56c3-242":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/listItem.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/listItem.js":"9d1b56c3-243"},"imported":[],"importedBy":[{"uid":"9d1b56c3-84"}]},"9d1b56c3-244":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/loadingIcon.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/loadingIcon.js":"9d1b56c3-245"},"imported":[{"uid":"9d1b56c3-152"}],"importedBy":[{"uid":"9d1b56c3-84"}]},"9d1b56c3-246":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/loadingPage.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/loadingPage.js":"9d1b56c3-247"},"imported":[],"importedBy":[{"uid":"9d1b56c3-84"}]},"9d1b56c3-248":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/loadmore.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/loadmore.js":"9d1b56c3-249"},"imported":[],"importedBy":[{"uid":"9d1b56c3-84"}]},"9d1b56c3-250":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/modal.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/modal.js":"9d1b56c3-251"},"imported":[],"importedBy":[{"uid":"9d1b56c3-84"}]},"9d1b56c3-252":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/navbar.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/navbar.js":"9d1b56c3-253"},"imported":[{"uid":"9d1b56c3-156"}],"importedBy":[{"uid":"9d1b56c3-84"}]},"9d1b56c3-254":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/noNetwork.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/noNetwork.js":"9d1b56c3-255"},"imported":[],"importedBy":[{"uid":"9d1b56c3-84"}]},"9d1b56c3-256":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/noticeBar.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/noticeBar.js":"9d1b56c3-257"},"imported":[],"importedBy":[{"uid":"9d1b56c3-84"}]},"9d1b56c3-258":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/notify.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/notify.js":"9d1b56c3-259"},"imported":[],"importedBy":[{"uid":"9d1b56c3-84"}]},"9d1b56c3-260":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/numberBox.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/numberBox.js":"9d1b56c3-261"},"imported":[],"importedBy":[{"uid":"9d1b56c3-84"}]},"9d1b56c3-262":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/numberKeyboard.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/numberKeyboard.js":"9d1b56c3-263"},"imported":[],"importedBy":[{"uid":"9d1b56c3-84"}]},"9d1b56c3-264":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/overlay.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/overlay.js":"9d1b56c3-265"},"imported":[],"importedBy":[{"uid":"9d1b56c3-84"}]},"9d1b56c3-266":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/parse.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/parse.js":"9d1b56c3-267"},"imported":[],"importedBy":[{"uid":"9d1b56c3-84"}]},"9d1b56c3-268":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/picker.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/picker.js":"9d1b56c3-269"},"imported":[],"importedBy":[{"uid":"9d1b56c3-84"}]},"9d1b56c3-270":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/popup.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/popup.js":"9d1b56c3-271"},"imported":[],"importedBy":[{"uid":"9d1b56c3-84"}]},"9d1b56c3-272":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/radio.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/radio.js":"9d1b56c3-273"},"imported":[],"importedBy":[{"uid":"9d1b56c3-84"}]},"9d1b56c3-274":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/radioGroup.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/radioGroup.js":"9d1b56c3-275"},"imported":[],"importedBy":[{"uid":"9d1b56c3-84"}]},"9d1b56c3-276":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/rate.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/rate.js":"9d1b56c3-277"},"imported":[],"importedBy":[{"uid":"9d1b56c3-84"}]},"9d1b56c3-278":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/readMore.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/readMore.js":"9d1b56c3-279"},"imported":[],"importedBy":[{"uid":"9d1b56c3-84"}]},"9d1b56c3-280":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/row.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/row.js":"9d1b56c3-281"},"imported":[],"importedBy":[{"uid":"9d1b56c3-84"}]},"9d1b56c3-282":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/rowNotice.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/rowNotice.js":"9d1b56c3-283"},"imported":[],"importedBy":[{"uid":"9d1b56c3-84"}]},"9d1b56c3-284":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/scrollList.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/scrollList.js":"9d1b56c3-285"},"imported":[],"importedBy":[{"uid":"9d1b56c3-84"}]},"9d1b56c3-286":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/search.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/search.js":"9d1b56c3-287"},"imported":[],"importedBy":[{"uid":"9d1b56c3-84"}]},"9d1b56c3-288":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/section.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/section.js":"9d1b56c3-289"},"imported":[],"importedBy":[{"uid":"9d1b56c3-84"}]},"9d1b56c3-290":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/skeleton.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/skeleton.js":"9d1b56c3-291"},"imported":[],"importedBy":[{"uid":"9d1b56c3-84"}]},"9d1b56c3-292":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/slider.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/slider.js":"9d1b56c3-293"},"imported":[],"importedBy":[{"uid":"9d1b56c3-84"}]},"9d1b56c3-294":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/statusBar.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/statusBar.js":"9d1b56c3-295"},"imported":[],"importedBy":[{"uid":"9d1b56c3-84"}]},"9d1b56c3-296":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/steps.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/steps.js":"9d1b56c3-297"},"imported":[],"importedBy":[{"uid":"9d1b56c3-84"}]},"9d1b56c3-298":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/stepsItem.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/stepsItem.js":"9d1b56c3-299"},"imported":[],"importedBy":[{"uid":"9d1b56c3-84"}]},"9d1b56c3-300":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/sticky.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/sticky.js":"9d1b56c3-301"},"imported":[],"importedBy":[{"uid":"9d1b56c3-84"}]},"9d1b56c3-302":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/subsection.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/subsection.js":"9d1b56c3-303"},"imported":[],"importedBy":[{"uid":"9d1b56c3-84"}]},"9d1b56c3-304":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/swipeAction.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/swipeAction.js":"9d1b56c3-305"},"imported":[],"importedBy":[{"uid":"9d1b56c3-84"}]},"9d1b56c3-306":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/swipeActionItem.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/swipeActionItem.js":"9d1b56c3-307"},"imported":[],"importedBy":[{"uid":"9d1b56c3-84"}]},"9d1b56c3-308":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/swiper.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/swiper.js":"9d1b56c3-309"},"imported":[],"importedBy":[{"uid":"9d1b56c3-84"}]},"9d1b56c3-310":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/swipterIndicator.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/swipterIndicator.js":"9d1b56c3-311"},"imported":[],"importedBy":[{"uid":"9d1b56c3-84"}]},"9d1b56c3-312":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/switch.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/switch.js":"9d1b56c3-313"},"imported":[],"importedBy":[{"uid":"9d1b56c3-84"}]},"9d1b56c3-314":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/tabbar.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/tabbar.js":"9d1b56c3-315"},"imported":[],"importedBy":[{"uid":"9d1b56c3-84"}]},"9d1b56c3-316":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/tabbarItem.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/tabbarItem.js":"9d1b56c3-317"},"imported":[],"importedBy":[{"uid":"9d1b56c3-84"}]},"9d1b56c3-318":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/tabs.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/tabs.js":"9d1b56c3-319"},"imported":[],"importedBy":[{"uid":"9d1b56c3-84"}]},"9d1b56c3-320":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/tag.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/tag.js":"9d1b56c3-321"},"imported":[],"importedBy":[{"uid":"9d1b56c3-84"}]},"9d1b56c3-322":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/text.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/text.js":"9d1b56c3-323"},"imported":[],"importedBy":[{"uid":"9d1b56c3-84"}]},"9d1b56c3-324":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/textarea.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/textarea.js":"9d1b56c3-325"},"imported":[],"importedBy":[{"uid":"9d1b56c3-84"}]},"9d1b56c3-326":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/toast.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/toast.js":"9d1b56c3-327"},"imported":[],"importedBy":[{"uid":"9d1b56c3-84"}]},"9d1b56c3-328":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/toolbar.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/toolbar.js":"9d1b56c3-329"},"imported":[],"importedBy":[{"uid":"9d1b56c3-84"}]},"9d1b56c3-330":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/tooltip.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/tooltip.js":"9d1b56c3-331"},"imported":[],"importedBy":[{"uid":"9d1b56c3-84"}]},"9d1b56c3-332":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/transition.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/transition.js":"9d1b56c3-333"},"imported":[],"importedBy":[{"uid":"9d1b56c3-84"}]},"9d1b56c3-334":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/upload.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/upload.js":"9d1b56c3-335"},"imported":[],"importedBy":[{"uid":"9d1b56c3-84"}]},"9d1b56c3-336":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/function/digit.js","moduleParts":{"uni_modules/uview-plus/libs/function/digit.js":"9d1b56c3-337"},"imported":[],"importedBy":[{"uid":"9d1b56c3-130"}]},"9d1b56c3-338":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/luch-request/adapters/index.js","moduleParts":{"uni_modules/uview-plus/libs/luch-request/adapters/index.js":"9d1b56c3-339"},"imported":[{"uid":"9d1b56c3-38"},{"uid":"9d1b56c3-340"},{"uid":"9d1b56c3-342"},{"uid":"9d1b56c3-344"},{"uid":"9d1b56c3-346"}],"importedBy":[{"uid":"9d1b56c3-350"}]},"9d1b56c3-340":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/luch-request/helpers/buildURL.js","moduleParts":{"uni_modules/uview-plus/libs/luch-request/helpers/buildURL.js":"9d1b56c3-341"},"imported":[{"uid":"9d1b56c3-346"}],"importedBy":[{"uid":"9d1b56c3-338"}]},"9d1b56c3-342":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/luch-request/core/buildFullPath.js","moduleParts":{"uni_modules/uview-plus/libs/luch-request/core/buildFullPath.js":"9d1b56c3-343"},"imported":[{"uid":"9d1b56c3-358"},{"uid":"9d1b56c3-360"}],"importedBy":[{"uid":"9d1b56c3-338"}]},"9d1b56c3-344":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/luch-request/core/settle.js","moduleParts":{"uni_modules/uview-plus/libs/luch-request/core/settle.js":"9d1b56c3-345"},"imported":[],"importedBy":[{"uid":"9d1b56c3-338"}]},"9d1b56c3-346":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/luch-request/utils.js","moduleParts":{"uni_modules/uview-plus/libs/luch-request/utils.js":"9d1b56c3-347"},"imported":[],"importedBy":[{"uid":"9d1b56c3-142"},{"uid":"9d1b56c3-352"},{"uid":"9d1b56c3-338"},{"uid":"9d1b56c3-340"}]},"9d1b56c3-348":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/luch-request/core/InterceptorManager.js","moduleParts":{"uni_modules/uview-plus/libs/luch-request/core/InterceptorManager.js":"9d1b56c3-349"},"imported":[],"importedBy":[{"uid":"9d1b56c3-142"}]},"9d1b56c3-350":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/luch-request/core/dispatchRequest.js","moduleParts":{"uni_modules/uview-plus/libs/luch-request/core/dispatchRequest.js":"9d1b56c3-351"},"imported":[{"uid":"9d1b56c3-338"}],"importedBy":[{"uid":"9d1b56c3-142"}]},"9d1b56c3-352":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/luch-request/core/mergeConfig.js","moduleParts":{"uni_modules/uview-plus/libs/luch-request/core/mergeConfig.js":"9d1b56c3-353"},"imported":[{"uid":"9d1b56c3-346"}],"importedBy":[{"uid":"9d1b56c3-142"}]},"9d1b56c3-354":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/luch-request/core/defaults.js","moduleParts":{"uni_modules/uview-plus/libs/luch-request/core/defaults.js":"9d1b56c3-355"},"imported":[],"importedBy":[{"uid":"9d1b56c3-142"}]},"9d1b56c3-356":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/luch-request/utils/clone.js","moduleParts":{"uni_modules/uview-plus/libs/luch-request/utils/clone.js":"9d1b56c3-357"},"imported":[],"importedBy":[{"uid":"9d1b56c3-142"}]},"9d1b56c3-358":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/luch-request/helpers/isAbsoluteURL.js","moduleParts":{"uni_modules/uview-plus/libs/luch-request/helpers/isAbsoluteURL.js":"9d1b56c3-359"},"imported":[],"importedBy":[{"uid":"9d1b56c3-342"}]},"9d1b56c3-360":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/luch-request/helpers/combineURLs.js","moduleParts":{"uni_modules/uview-plus/libs/luch-request/helpers/combineURLs.js":"9d1b56c3-361"},"imported":[],"importedBy":[{"uid":"9d1b56c3-342"}]},"9d1b56c3-362":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/luch-request/index.js","moduleParts":{"uni_modules/uview-plus/libs/luch-request/index.js":"9d1b56c3-363"},"imported":[{"uid":"9d1b56c3-142"}],"importedBy":[{"uid":"9d1b56c3-28"}]},"9d1b56c3-364":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/mixin/button.js","moduleParts":{"uni_modules/uview-plus/libs/mixin/button.js":"9d1b56c3-365"},"imported":[{"uid":"9d1b56c3-82"}],"importedBy":[{"uid":"9d1b56c3-574"},{"uid":"9d1b56c3-668"}]},"9d1b56c3-366":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/mixin/mpShare.js","moduleParts":{"uni_modules/uview-plus/libs/mixin/mpShare.js":"9d1b56c3-367"},"imported":[{"uid":"9d1b56c3-82"},{"uid":"9d1b56c3-130"}],"importedBy":[{"uid":"9d1b56c3-6"}]},"9d1b56c3-368":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/mixin/openType.js","moduleParts":{"uni_modules/uview-plus/libs/mixin/openType.js":"9d1b56c3-369"},"imported":[{"uid":"9d1b56c3-82"}],"importedBy":[{"uid":"9d1b56c3-574"},{"uid":"9d1b56c3-668"}]},"9d1b56c3-370":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/util/async-validator.js","moduleParts":{"uni_modules/uview-plus/libs/util/async-validator.js":"9d1b56c3-371"},"imported":[],"importedBy":[{"uid":"9d1b56c3-570"}]},"9d1b56c3-372":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/default/index.vue?vue&type=style&index=0&lang.scss","moduleParts":{"pages/default/index.js":"9d1b56c3-373"},"imported":[],"importedBy":[{"uid":"9d1b56c3-374"}]},"9d1b56c3-374":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/default/index.vue","moduleParts":{"pages/default/index.js":"9d1b56c3-375"},"imported":[{"uid":"9d1b56c3-38"},{"uid":"9d1b56c3-42"},{"uid":"9d1b56c3-372"},{"uid":"9d1b56c3-40"},{"uid":"9d1b56c3-502","dynamic":true}],"importedBy":[{"uid":"9d1b56c3-376"}]},"9d1b56c3-376":{"id":"uniPage://cGFnZXMvZGVmYXVsdC9pbmRleC52dWU","moduleParts":{"pages/default/index.js":"9d1b56c3-377"},"imported":[{"uid":"9d1b56c3-374"}],"importedBy":[{"uid":"9d1b56c3-0"}]},"9d1b56c3-378":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/index/index.vue?vue&type=style&index=0&lang.scss","moduleParts":{"pages/index/index.js":"9d1b56c3-379"},"imported":[],"importedBy":[{"uid":"9d1b56c3-380"}]},"9d1b56c3-380":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/index/index.vue","moduleParts":{"pages/index/index.js":"9d1b56c3-381"},"imported":[{"uid":"9d1b56c3-38"},{"uid":"9d1b56c3-64"},{"uid":"9d1b56c3-42"},{"uid":"9d1b56c3-378"},{"uid":"9d1b56c3-40"},{"uid":"9d1b56c3-508","dynamic":true},{"uid":"9d1b56c3-514","dynamic":true},{"uid":"9d1b56c3-520","dynamic":true},{"uid":"9d1b56c3-526","dynamic":true},{"uid":"9d1b56c3-532","dynamic":true},{"uid":"9d1b56c3-538","dynamic":true}],"importedBy":[{"uid":"9d1b56c3-382"}]},"9d1b56c3-382":{"id":"uniPage://cGFnZXMvaW5kZXgvaW5kZXgudnVl","moduleParts":{"pages/index/index.js":"9d1b56c3-383"},"imported":[{"uid":"9d1b56c3-380"}],"importedBy":[{"uid":"9d1b56c3-0"}]},"9d1b56c3-384":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/login/index.vue?vue&type=style&index=0&scoped=45258083&lang.scss","moduleParts":{"pages/login/index.js":"9d1b56c3-385"},"imported":[],"importedBy":[{"uid":"9d1b56c3-386"}]},"9d1b56c3-386":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/login/index.vue","moduleParts":{"pages/login/index.js":"9d1b56c3-387"},"imported":[{"uid":"9d1b56c3-38"},{"uid":"9d1b56c3-42"},{"uid":"9d1b56c3-8"},{"uid":"9d1b56c3-384"},{"uid":"9d1b56c3-40"},{"uid":"9d1b56c3-544","dynamic":true}],"importedBy":[{"uid":"9d1b56c3-388"}]},"9d1b56c3-388":{"id":"uniPage://cGFnZXMvbG9naW4vaW5kZXgudnVl","moduleParts":{"pages/login/index.js":"9d1b56c3-389"},"imported":[{"uid":"9d1b56c3-386"}],"importedBy":[{"uid":"9d1b56c3-0"}]},"9d1b56c3-390":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/release/index.vue?vue&type=style&index=0&lang.css","moduleParts":{"pages/release/index.js":"9d1b56c3-391"},"imported":[],"importedBy":[{"uid":"9d1b56c3-392"}]},"9d1b56c3-392":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/release/index.vue","moduleParts":{"pages/release/index.js":"9d1b56c3-393"},"imported":[{"uid":"9d1b56c3-38"},{"uid":"9d1b56c3-42"},{"uid":"9d1b56c3-64"},{"uid":"9d1b56c3-46"},{"uid":"9d1b56c3-390"},{"uid":"9d1b56c3-40"},{"uid":"9d1b56c3-550","dynamic":true},{"uid":"9d1b56c3-556","dynamic":true},{"uid":"9d1b56c3-502","dynamic":true},{"uid":"9d1b56c3-562","dynamic":true},{"uid":"9d1b56c3-568","dynamic":true},{"uid":"9d1b56c3-520","dynamic":true},{"uid":"9d1b56c3-572","dynamic":true},{"uid":"9d1b56c3-580","dynamic":true},{"uid":"9d1b56c3-538","dynamic":true}],"importedBy":[{"uid":"9d1b56c3-394"}]},"9d1b56c3-394":{"id":"uniPage://cGFnZXMvcmVsZWFzZS9pbmRleC52dWU","moduleParts":{"pages/release/index.js":"9d1b56c3-395"},"imported":[{"uid":"9d1b56c3-392"}],"importedBy":[{"uid":"9d1b56c3-0"}]},"9d1b56c3-396":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/wallet/index.vue?vue&type=style&index=0&lang.scss","moduleParts":{"pages/wallet/index.js":"9d1b56c3-397"},"imported":[],"importedBy":[{"uid":"9d1b56c3-398"}]},"9d1b56c3-398":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/wallet/index.vue","moduleParts":{"pages/wallet/index.js":"9d1b56c3-399"},"imported":[{"uid":"9d1b56c3-42"},{"uid":"9d1b56c3-396"},{"uid":"9d1b56c3-40"},{"uid":"9d1b56c3-580","dynamic":true},{"uid":"9d1b56c3-502","dynamic":true},{"uid":"9d1b56c3-532","dynamic":true}],"importedBy":[{"uid":"9d1b56c3-400"}]},"9d1b56c3-400":{"id":"uniPage://cGFnZXMvd2FsbGV0L2luZGV4LnZ1ZQ","moduleParts":{"pages/wallet/index.js":"9d1b56c3-401"},"imported":[{"uid":"9d1b56c3-398"}],"importedBy":[{"uid":"9d1b56c3-0"}]},"9d1b56c3-402":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/mine/index.vue?vue&type=style&index=0&lang.scss","moduleParts":{"pages/mine/index.js":"9d1b56c3-403"},"imported":[],"importedBy":[{"uid":"9d1b56c3-404"}]},"9d1b56c3-404":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/mine/index.vue","moduleParts":{"pages/mine/index.js":"9d1b56c3-405"},"imported":[{"uid":"9d1b56c3-38"},{"uid":"9d1b56c3-42"},{"uid":"9d1b56c3-10"},{"uid":"9d1b56c3-12"},{"uid":"9d1b56c3-14"},{"uid":"9d1b56c3-16"},{"uid":"9d1b56c3-402"},{"uid":"9d1b56c3-40"},{"uid":"9d1b56c3-502","dynamic":true}],"importedBy":[{"uid":"9d1b56c3-406"}]},"9d1b56c3-406":{"id":"uniPage://cGFnZXMvbWluZS9pbmRleC52dWU","moduleParts":{"pages/mine/index.js":"9d1b56c3-407"},"imported":[{"uid":"9d1b56c3-404"}],"importedBy":[{"uid":"9d1b56c3-0"}]},"9d1b56c3-408":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/mine/mine.vue?vue&type=style&index=0&lang.css","moduleParts":{"pages/mine/mine.js":"9d1b56c3-409"},"imported":[],"importedBy":[{"uid":"9d1b56c3-410"}]},"9d1b56c3-410":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/mine/mine.vue","moduleParts":{"pages/mine/mine.js":"9d1b56c3-411"},"imported":[{"uid":"9d1b56c3-38"},{"uid":"9d1b56c3-64"},{"uid":"9d1b56c3-42"},{"uid":"9d1b56c3-408"},{"uid":"9d1b56c3-40"},{"uid":"9d1b56c3-586","dynamic":true},{"uid":"9d1b56c3-592","dynamic":true},{"uid":"9d1b56c3-598","dynamic":true}],"importedBy":[{"uid":"9d1b56c3-412"}]},"9d1b56c3-412":{"id":"uniPage://cGFnZXMvbWluZS9taW5lLnZ1ZQ","moduleParts":{"pages/mine/mine.js":"9d1b56c3-413"},"imported":[{"uid":"9d1b56c3-410"}],"importedBy":[{"uid":"9d1b56c3-0"}]},"9d1b56c3-414":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/mine/apply.vue?vue&type=style&index=0&lang.css","moduleParts":{"pages/mine/apply.js":"9d1b56c3-415"},"imported":[],"importedBy":[{"uid":"9d1b56c3-416"}]},"9d1b56c3-416":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/mine/apply.vue","moduleParts":{"pages/mine/apply.js":"9d1b56c3-417"},"imported":[{"uid":"9d1b56c3-38"},{"uid":"9d1b56c3-64"},{"uid":"9d1b56c3-66"},{"uid":"9d1b56c3-42"},{"uid":"9d1b56c3-414"},{"uid":"9d1b56c3-40"},{"uid":"9d1b56c3-604","dynamic":true},{"uid":"9d1b56c3-556","dynamic":true},{"uid":"9d1b56c3-550","dynamic":true},{"uid":"9d1b56c3-562","dynamic":true},{"uid":"9d1b56c3-580","dynamic":true},{"uid":"9d1b56c3-572","dynamic":true}],"importedBy":[{"uid":"9d1b56c3-418"}]},"9d1b56c3-418":{"id":"uniPage://cGFnZXMvbWluZS9hcHBseS52dWU","moduleParts":{"pages/mine/apply.js":"9d1b56c3-419"},"imported":[{"uid":"9d1b56c3-416"}],"importedBy":[{"uid":"9d1b56c3-0"}]},"9d1b56c3-420":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/test/test.vue?vue&type=style&index=0&lang.css","moduleParts":{"pages/test/test.js":"9d1b56c3-421"},"imported":[],"importedBy":[{"uid":"9d1b56c3-422"}]},"9d1b56c3-422":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/test/test.vue","moduleParts":{"pages/test/test.js":"9d1b56c3-423"},"imported":[{"uid":"9d1b56c3-38"},{"uid":"9d1b56c3-42"},{"uid":"9d1b56c3-420"},{"uid":"9d1b56c3-40"}],"importedBy":[{"uid":"9d1b56c3-424"}]},"9d1b56c3-424":{"id":"uniPage://cGFnZXMvdGVzdC90ZXN0LnZ1ZQ","moduleParts":{"pages/test/test.js":"9d1b56c3-425"},"imported":[{"uid":"9d1b56c3-422"}],"importedBy":[{"uid":"9d1b56c3-0"}]},"9d1b56c3-426":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/checkin/index.vue?vue&type=style&index=0&lang.css","moduleParts":{"pages/checkin/index.js":"9d1b56c3-427"},"imported":[],"importedBy":[{"uid":"9d1b56c3-428"}]},"9d1b56c3-428":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/checkin/index.vue","moduleParts":{"pages/checkin/index.js":"9d1b56c3-429"},"imported":[{"uid":"9d1b56c3-38"},{"uid":"9d1b56c3-42"},{"uid":"9d1b56c3-426"},{"uid":"9d1b56c3-40"},{"uid":"9d1b56c3-508","dynamic":true},{"uid":"9d1b56c3-610","dynamic":true},{"uid":"9d1b56c3-514","dynamic":true},{"uid":"9d1b56c3-520","dynamic":true},{"uid":"9d1b56c3-550","dynamic":true},{"uid":"9d1b56c3-580","dynamic":true},{"uid":"9d1b56c3-526","dynamic":true},{"uid":"9d1b56c3-532","dynamic":true},{"uid":"9d1b56c3-538","dynamic":true}],"importedBy":[{"uid":"9d1b56c3-430"}]},"9d1b56c3-430":{"id":"uniPage://cGFnZXNcY2hlY2tpblxpbmRleC52dWU","moduleParts":{"pages/checkin/index.js":"9d1b56c3-431"},"imported":[{"uid":"9d1b56c3-428"}],"importedBy":[{"uid":"9d1b56c3-0"}]},"9d1b56c3-432":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/checkin/record.vue?vue&type=style&index=0&lang.scss","moduleParts":{"pages/checkin/record.js":"9d1b56c3-433"},"imported":[],"importedBy":[{"uid":"9d1b56c3-434"}]},"9d1b56c3-434":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/checkin/record.vue","moduleParts":{"pages/checkin/record.js":"9d1b56c3-435"},"imported":[{"uid":"9d1b56c3-38"},{"uid":"9d1b56c3-42"},{"uid":"9d1b56c3-432"},{"uid":"9d1b56c3-40"},{"uid":"9d1b56c3-586","dynamic":true},{"uid":"9d1b56c3-616","dynamic":true},{"uid":"9d1b56c3-622","dynamic":true},{"uid":"9d1b56c3-502","dynamic":true},{"uid":"9d1b56c3-628","dynamic":true},{"uid":"9d1b56c3-634","dynamic":true},{"uid":"9d1b56c3-580","dynamic":true}],"importedBy":[{"uid":"9d1b56c3-436"}]},"9d1b56c3-436":{"id":"uniPage://cGFnZXNcY2hlY2tpblxyZWNvcmQudnVl","moduleParts":{"pages/checkin/record.js":"9d1b56c3-437"},"imported":[{"uid":"9d1b56c3-434"}],"importedBy":[{"uid":"9d1b56c3-0"}]},"9d1b56c3-438":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/checkin/checkin.vue?vue&type=style&index=0&lang.scss","moduleParts":{"pages/checkin/checkin.js":"9d1b56c3-439"},"imported":[],"importedBy":[{"uid":"9d1b56c3-440"}]},"9d1b56c3-440":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/checkin/checkin.vue","moduleParts":{"pages/checkin/checkin.js":"9d1b56c3-441"},"imported":[{"uid":"9d1b56c3-38"},{"uid":"9d1b56c3-66"},{"uid":"9d1b56c3-42"},{"uid":"9d1b56c3-438"},{"uid":"9d1b56c3-40"},{"uid":"9d1b56c3-642","dynamic":true},{"uid":"9d1b56c3-604","dynamic":true},{"uid":"9d1b56c3-586","dynamic":true},{"uid":"9d1b56c3-502","dynamic":true},{"uid":"9d1b56c3-580","dynamic":true}],"importedBy":[{"uid":"9d1b56c3-442"}]},"9d1b56c3-442":{"id":"uniPage://cGFnZXNcY2hlY2tpblxjaGVja2luLnZ1ZQ","moduleParts":{"pages/checkin/checkin.js":"9d1b56c3-443"},"imported":[{"uid":"9d1b56c3-440"}],"importedBy":[{"uid":"9d1b56c3-0"}]},"9d1b56c3-444":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/checkin/workdetail.vue?vue&type=style&index=0&lang.scss","moduleParts":{"pages/checkin/workdetail.js":"9d1b56c3-445"},"imported":[],"importedBy":[{"uid":"9d1b56c3-446"}]},"9d1b56c3-446":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/checkin/workdetail.vue","moduleParts":{"pages/checkin/workdetail.js":"9d1b56c3-447"},"imported":[{"uid":"9d1b56c3-38"},{"uid":"9d1b56c3-42"},{"uid":"9d1b56c3-444"},{"uid":"9d1b56c3-40"},{"uid":"9d1b56c3-586","dynamic":true},{"uid":"9d1b56c3-502","dynamic":true},{"uid":"9d1b56c3-616","dynamic":true},{"uid":"9d1b56c3-550","dynamic":true},{"uid":"9d1b56c3-580","dynamic":true}],"importedBy":[{"uid":"9d1b56c3-448"}]},"9d1b56c3-448":{"id":"uniPage://cGFnZXNcY2hlY2tpblx3b3JrZGV0YWlsLnZ1ZQ","moduleParts":{"pages/checkin/workdetail.js":"9d1b56c3-449"},"imported":[{"uid":"9d1b56c3-446"}],"importedBy":[{"uid":"9d1b56c3-0"}]},"9d1b56c3-450":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/enterprise/index.vue?vue&type=style&index=0&lang.css","moduleParts":{"pages/enterprise/index.js":"9d1b56c3-451"},"imported":[],"importedBy":[{"uid":"9d1b56c3-452"}]},"9d1b56c3-452":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/enterprise/index.vue","moduleParts":{"pages/enterprise/index.js":"9d1b56c3-453"},"imported":[{"uid":"9d1b56c3-38"},{"uid":"9d1b56c3-64"},{"uid":"9d1b56c3-42"},{"uid":"9d1b56c3-450"},{"uid":"9d1b56c3-40"},{"uid":"9d1b56c3-586","dynamic":true},{"uid":"9d1b56c3-592","dynamic":true},{"uid":"9d1b56c3-598","dynamic":true}],"importedBy":[{"uid":"9d1b56c3-454"}]},"9d1b56c3-454":{"id":"uniPage://cGFnZXNcZW50ZXJwcmlzZVxpbmRleC52dWU","moduleParts":{"pages/enterprise/index.js":"9d1b56c3-455"},"imported":[{"uid":"9d1b56c3-452"}],"importedBy":[{"uid":"9d1b56c3-0"}]},"9d1b56c3-456":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/enterprise/enterprise.vue?vue&type=style&index=0&lang.css","moduleParts":{"pages/enterprise/enterprise.js":"9d1b56c3-457"},"imported":[],"importedBy":[{"uid":"9d1b56c3-458"}]},"9d1b56c3-458":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/enterprise/enterprise.vue","moduleParts":{"pages/enterprise/enterprise.js":"9d1b56c3-459"},"imported":[{"uid":"9d1b56c3-38"},{"uid":"9d1b56c3-66"},{"uid":"9d1b56c3-64"},{"uid":"9d1b56c3-42"},{"uid":"9d1b56c3-456"},{"uid":"9d1b56c3-40"},{"uid":"9d1b56c3-604","dynamic":true},{"uid":"9d1b56c3-556","dynamic":true},{"uid":"9d1b56c3-550","dynamic":true},{"uid":"9d1b56c3-562","dynamic":true},{"uid":"9d1b56c3-580","dynamic":true},{"uid":"9d1b56c3-572","dynamic":true}],"importedBy":[{"uid":"9d1b56c3-460"}]},"9d1b56c3-460":{"id":"uniPage://cGFnZXNcZW50ZXJwcmlzZVxlbnRlcnByaXNlLnZ1ZQ","moduleParts":{"pages/enterprise/enterprise.js":"9d1b56c3-461"},"imported":[{"uid":"9d1b56c3-458"}],"importedBy":[{"uid":"9d1b56c3-0"}]},"9d1b56c3-462":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/detail/detail.vue?vue&type=style&index=0&lang.css","moduleParts":{"pages/detail/detail.js":"9d1b56c3-463"},"imported":[],"importedBy":[{"uid":"9d1b56c3-464"}]},"9d1b56c3-464":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/detail/detail.vue","moduleParts":{"pages/detail/detail.js":"9d1b56c3-465"},"imported":[{"uid":"9d1b56c3-42"},{"uid":"9d1b56c3-18"},{"uid":"9d1b56c3-462"},{"uid":"9d1b56c3-40"},{"uid":"9d1b56c3-502","dynamic":true},{"uid":"9d1b56c3-580","dynamic":true}],"importedBy":[{"uid":"9d1b56c3-466"}]},"9d1b56c3-466":{"id":"uniPage://cGFnZXNcZGV0YWlsXGRldGFpbC52dWU","moduleParts":{"pages/detail/detail.js":"9d1b56c3-467"},"imported":[{"uid":"9d1b56c3-464"}],"importedBy":[{"uid":"9d1b56c3-0"}]},"9d1b56c3-468":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/order/order.vue?vue&type=style&index=0&lang.css","moduleParts":{"pages/order/order.js":"9d1b56c3-469"},"imported":[],"importedBy":[{"uid":"9d1b56c3-470"}]},"9d1b56c3-470":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/order/order.vue","moduleParts":{"pages/order/order.js":"9d1b56c3-471"},"imported":[{"uid":"9d1b56c3-38"},{"uid":"9d1b56c3-64"},{"uid":"9d1b56c3-42"},{"uid":"9d1b56c3-468"},{"uid":"9d1b56c3-40"},{"uid":"9d1b56c3-508","dynamic":true},{"uid":"9d1b56c3-514","dynamic":true},{"uid":"9d1b56c3-520","dynamic":true},{"uid":"9d1b56c3-526","dynamic":true},{"uid":"9d1b56c3-532","dynamic":true},{"uid":"9d1b56c3-538","dynamic":true}],"importedBy":[{"uid":"9d1b56c3-472"}]},"9d1b56c3-472":{"id":"uniPage://cGFnZXNcb3JkZXJcb3JkZXIudnVl","moduleParts":{"pages/order/order.js":"9d1b56c3-473"},"imported":[{"uid":"9d1b56c3-470"}],"importedBy":[{"uid":"9d1b56c3-0"}]},"9d1b56c3-474":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/order/detail.vue?vue&type=style&index=0&lang.scss","moduleParts":{"pages/order/detail.js":"9d1b56c3-475"},"imported":[],"importedBy":[{"uid":"9d1b56c3-476"}]},"9d1b56c3-476":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/order/detail.vue","moduleParts":{"pages/order/detail.js":"9d1b56c3-477"},"imported":[{"uid":"9d1b56c3-38"},{"uid":"9d1b56c3-64"},{"uid":"9d1b56c3-42"},{"uid":"9d1b56c3-474"},{"uid":"9d1b56c3-40"},{"uid":"9d1b56c3-586","dynamic":true},{"uid":"9d1b56c3-580","dynamic":true},{"uid":"9d1b56c3-616","dynamic":true},{"uid":"9d1b56c3-622","dynamic":true},{"uid":"9d1b56c3-634","dynamic":true}],"importedBy":[{"uid":"9d1b56c3-478"}]},"9d1b56c3-478":{"id":"uniPage://cGFnZXNcb3JkZXJcZGV0YWlsLnZ1ZQ","moduleParts":{"pages/order/detail.js":"9d1b56c3-479"},"imported":[{"uid":"9d1b56c3-476"}],"importedBy":[{"uid":"9d1b56c3-0"}]},"9d1b56c3-480":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/order/worker.vue?vue&type=style&index=0&lang.scss","moduleParts":{"pages/order/worker.js":"9d1b56c3-481"},"imported":[],"importedBy":[{"uid":"9d1b56c3-482"}]},"9d1b56c3-482":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/order/worker.vue","moduleParts":{"pages/order/worker.js":"9d1b56c3-483"},"imported":[{"uid":"9d1b56c3-38"},{"uid":"9d1b56c3-42"},{"uid":"9d1b56c3-480"},{"uid":"9d1b56c3-40"},{"uid":"9d1b56c3-586","dynamic":true},{"uid":"9d1b56c3-616","dynamic":true},{"uid":"9d1b56c3-622","dynamic":true},{"uid":"9d1b56c3-634","dynamic":true},{"uid":"9d1b56c3-580","dynamic":true}],"importedBy":[{"uid":"9d1b56c3-484"}]},"9d1b56c3-484":{"id":"uniPage://cGFnZXNcb3JkZXJcd29ya2VyLnZ1ZQ","moduleParts":{"pages/order/worker.js":"9d1b56c3-485"},"imported":[{"uid":"9d1b56c3-482"}],"importedBy":[{"uid":"9d1b56c3-0"}]},"9d1b56c3-486":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/order/myorder.vue?vue&type=style&index=0&lang.css","moduleParts":{"pages/order/myorder.js":"9d1b56c3-487"},"imported":[],"importedBy":[{"uid":"9d1b56c3-488"}]},"9d1b56c3-488":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/order/myorder.vue","moduleParts":{"pages/order/myorder.js":"9d1b56c3-489"},"imported":[{"uid":"9d1b56c3-38"},{"uid":"9d1b56c3-64"},{"uid":"9d1b56c3-42"},{"uid":"9d1b56c3-486"},{"uid":"9d1b56c3-40"},{"uid":"9d1b56c3-508","dynamic":true},{"uid":"9d1b56c3-514","dynamic":true},{"uid":"9d1b56c3-520","dynamic":true},{"uid":"9d1b56c3-526","dynamic":true},{"uid":"9d1b56c3-532","dynamic":true},{"uid":"9d1b56c3-538","dynamic":true}],"importedBy":[{"uid":"9d1b56c3-490"}]},"9d1b56c3-490":{"id":"uniPage://cGFnZXNcb3JkZXJcbXlvcmRlci52dWU","moduleParts":{"pages/order/myorder.js":"9d1b56c3-491"},"imported":[{"uid":"9d1b56c3-488"}],"importedBy":[{"uid":"9d1b56c3-0"}]},"9d1b56c3-492":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/company/index.vue?vue&type=style&index=0&lang.css","moduleParts":{"pages/company/index.js":"9d1b56c3-493"},"imported":[],"importedBy":[{"uid":"9d1b56c3-494"}]},"9d1b56c3-494":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/company/index.vue","moduleParts":{"pages/company/index.js":"9d1b56c3-495"},"imported":[{"uid":"9d1b56c3-38"},{"uid":"9d1b56c3-42"},{"uid":"9d1b56c3-492"},{"uid":"9d1b56c3-40"},{"uid":"9d1b56c3-508","dynamic":true},{"uid":"9d1b56c3-610","dynamic":true},{"uid":"9d1b56c3-514","dynamic":true},{"uid":"9d1b56c3-520","dynamic":true},{"uid":"9d1b56c3-550","dynamic":true},{"uid":"9d1b56c3-580","dynamic":true},{"uid":"9d1b56c3-526","dynamic":true},{"uid":"9d1b56c3-532","dynamic":true},{"uid":"9d1b56c3-538","dynamic":true}],"importedBy":[{"uid":"9d1b56c3-496"}]},"9d1b56c3-496":{"id":"uniPage://cGFnZXNcY29tcGFueVxpbmRleC52dWU","moduleParts":{"pages/company/index.js":"9d1b56c3-497"},"imported":[{"uid":"9d1b56c3-494"}],"importedBy":[{"uid":"9d1b56c3-0"}]},"9d1b56c3-498":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-icon/u-icon.vue?vue&type=style&index=0&scoped=bc34bf57&lang.scss","moduleParts":{"uni_modules/uview-plus/components/u-icon/u-icon.js":"9d1b56c3-499"},"imported":[],"importedBy":[{"uid":"9d1b56c3-500"}]},"9d1b56c3-500":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-icon/u-icon.vue","moduleParts":{"uni_modules/uview-plus/components/u-icon/u-icon.js":"9d1b56c3-501"},"imported":[{"uid":"9d1b56c3-98"},{"uid":"9d1b56c3-100"},{"uid":"9d1b56c3-140"},{"uid":"9d1b56c3-138"},{"uid":"9d1b56c3-130"},{"uid":"9d1b56c3-152"},{"uid":"9d1b56c3-42"},{"uid":"9d1b56c3-498"},{"uid":"9d1b56c3-40"}],"importedBy":[{"uid":"9d1b56c3-502"}]},"9d1b56c3-502":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtaWNvbi91LWljb24udnVl","moduleParts":{"uni_modules/uview-plus/components/u-icon/u-icon.js":"9d1b56c3-503"},"imported":[{"uid":"9d1b56c3-500"}],"importedBy":[{"uid":"9d1b56c3-374"},{"uid":"9d1b56c3-392"},{"uid":"9d1b56c3-398"},{"uid":"9d1b56c3-404"},{"uid":"9d1b56c3-434"},{"uid":"9d1b56c3-440"},{"uid":"9d1b56c3-446"},{"uid":"9d1b56c3-464"},{"uid":"9d1b56c3-506"},{"uid":"9d1b56c3-518"},{"uid":"9d1b56c3-530"},{"uid":"9d1b56c3-548"},{"uid":"9d1b56c3-554"},{"uid":"9d1b56c3-566"},{"uid":"9d1b56c3-578"},{"uid":"9d1b56c3-584"},{"uid":"9d1b56c3-614"},{"uid":"9d1b56c3-626"},{"uid":"9d1b56c3-668"}]},"9d1b56c3-504":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-search/u-search.vue?vue&type=style&index=0&scoped=db25ac38&lang.scss","moduleParts":{"uni_modules/uview-plus/components/u-search/u-search.js":"9d1b56c3-505"},"imported":[],"importedBy":[{"uid":"9d1b56c3-506"}]},"9d1b56c3-506":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-search/u-search.vue","moduleParts":{"uni_modules/uview-plus/components/u-search/u-search.js":"9d1b56c3-507"},"imported":[{"uid":"9d1b56c3-38"},{"uid":"9d1b56c3-118"},{"uid":"9d1b56c3-140"},{"uid":"9d1b56c3-138"},{"uid":"9d1b56c3-130"},{"uid":"9d1b56c3-42"},{"uid":"9d1b56c3-504"},{"uid":"9d1b56c3-40"},{"uid":"9d1b56c3-502","dynamic":true}],"importedBy":[{"uid":"9d1b56c3-508"}]},"9d1b56c3-508":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3Utc2VhcmNoL3Utc2VhcmNoLnZ1ZQ","moduleParts":{"uni_modules/uview-plus/components/u-search/u-search.js":"9d1b56c3-509"},"imported":[{"uid":"9d1b56c3-506"}],"importedBy":[{"uid":"9d1b56c3-380"},{"uid":"9d1b56c3-428"},{"uid":"9d1b56c3-470"},{"uid":"9d1b56c3-488"},{"uid":"9d1b56c3-494"}]},"9d1b56c3-510":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-sticky/u-sticky.vue?vue&type=style&index=0&scoped=442db378&lang.scss","moduleParts":{"uni_modules/uview-plus/components/u-sticky/u-sticky.js":"9d1b56c3-511"},"imported":[],"importedBy":[{"uid":"9d1b56c3-512"}]},"9d1b56c3-512":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-sticky/u-sticky.vue","moduleParts":{"uni_modules/uview-plus/components/u-sticky/u-sticky.js":"9d1b56c3-513"},"imported":[{"uid":"9d1b56c3-38"},{"uid":"9d1b56c3-120"},{"uid":"9d1b56c3-140"},{"uid":"9d1b56c3-138"},{"uid":"9d1b56c3-130"},{"uid":"9d1b56c3-154"},{"uid":"9d1b56c3-42"},{"uid":"9d1b56c3-510"},{"uid":"9d1b56c3-40"}],"importedBy":[{"uid":"9d1b56c3-514"}]},"9d1b56c3-514":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3Utc3RpY2t5L3Utc3RpY2t5LnZ1ZQ","moduleParts":{"uni_modules/uview-plus/components/u-sticky/u-sticky.js":"9d1b56c3-515"},"imported":[{"uid":"9d1b56c3-512"}],"importedBy":[{"uid":"9d1b56c3-380"},{"uid":"9d1b56c3-428"},{"uid":"9d1b56c3-470"},{"uid":"9d1b56c3-488"},{"uid":"9d1b56c3-494"}]},"9d1b56c3-516":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-tag/u-tag.vue?vue&type=style&index=0&scoped=90ff8a51&lang.scss","moduleParts":{"uni_modules/uview-plus/components/u-tag/u-tag.js":"9d1b56c3-517"},"imported":[],"importedBy":[{"uid":"9d1b56c3-518"}]},"9d1b56c3-518":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-tag/u-tag.vue","moduleParts":{"uni_modules/uview-plus/components/u-tag/u-tag.js":"9d1b56c3-519"},"imported":[{"uid":"9d1b56c3-124"},{"uid":"9d1b56c3-140"},{"uid":"9d1b56c3-138"},{"uid":"9d1b56c3-86"},{"uid":"9d1b56c3-42"},{"uid":"9d1b56c3-516"},{"uid":"9d1b56c3-40"},{"uid":"9d1b56c3-502","dynamic":true},{"uid":"9d1b56c3-648","dynamic":true}],"importedBy":[{"uid":"9d1b56c3-520"}]},"9d1b56c3-520":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtdGFnL3UtdGFnLnZ1ZQ","moduleParts":{"uni_modules/uview-plus/components/u-tag/u-tag.js":"9d1b56c3-521"},"imported":[{"uid":"9d1b56c3-518"}],"importedBy":[{"uid":"9d1b56c3-380"},{"uid":"9d1b56c3-392"},{"uid":"9d1b56c3-428"},{"uid":"9d1b56c3-470"},{"uid":"9d1b56c3-488"},{"uid":"9d1b56c3-494"}]},"9d1b56c3-522":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-loadmore/u-loadmore.vue?vue&type=style&index=0&scoped=80ed34f9&lang.scss","moduleParts":{"uni_modules/uview-plus/components/u-loadmore/u-loadmore.js":"9d1b56c3-523"},"imported":[],"importedBy":[{"uid":"9d1b56c3-524"}]},"9d1b56c3-524":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-loadmore/u-loadmore.vue","moduleParts":{"uni_modules/uview-plus/components/u-loadmore/u-loadmore.js":"9d1b56c3-525"},"imported":[{"uid":"9d1b56c3-114"},{"uid":"9d1b56c3-140"},{"uid":"9d1b56c3-138"},{"uid":"9d1b56c3-130"},{"uid":"9d1b56c3-42"},{"uid":"9d1b56c3-522"},{"uid":"9d1b56c3-40"},{"uid":"9d1b56c3-654","dynamic":true},{"uid":"9d1b56c3-660","dynamic":true}],"importedBy":[{"uid":"9d1b56c3-526"}]},"9d1b56c3-526":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtbG9hZG1vcmUvdS1sb2FkbW9yZS52dWU","moduleParts":{"uni_modules/uview-plus/components/u-loadmore/u-loadmore.js":"9d1b56c3-527"},"imported":[{"uid":"9d1b56c3-524"}],"importedBy":[{"uid":"9d1b56c3-380"},{"uid":"9d1b56c3-428"},{"uid":"9d1b56c3-470"},{"uid":"9d1b56c3-488"},{"uid":"9d1b56c3-494"}]},"9d1b56c3-528":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-empty/u-empty.vue?vue&type=style&index=0&scoped=2eac7384&lang.scss","moduleParts":{"uni_modules/uview-plus/components/u-empty/u-empty.js":"9d1b56c3-529"},"imported":[],"importedBy":[{"uid":"9d1b56c3-530"}]},"9d1b56c3-530":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-empty/u-empty.vue","moduleParts":{"uni_modules/uview-plus/components/u-empty/u-empty.js":"9d1b56c3-531"},"imported":[{"uid":"9d1b56c3-92"},{"uid":"9d1b56c3-140"},{"uid":"9d1b56c3-138"},{"uid":"9d1b56c3-130"},{"uid":"9d1b56c3-42"},{"uid":"9d1b56c3-528"},{"uid":"9d1b56c3-40"},{"uid":"9d1b56c3-502","dynamic":true}],"importedBy":[{"uid":"9d1b56c3-532"}]},"9d1b56c3-532":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtZW1wdHkvdS1lbXB0eS52dWU","moduleParts":{"uni_modules/uview-plus/components/u-empty/u-empty.js":"9d1b56c3-533"},"imported":[{"uid":"9d1b56c3-530"}],"importedBy":[{"uid":"9d1b56c3-380"},{"uid":"9d1b56c3-398"},{"uid":"9d1b56c3-428"},{"uid":"9d1b56c3-470"},{"uid":"9d1b56c3-488"},{"uid":"9d1b56c3-494"}]},"9d1b56c3-534":{"id":"D:/zcweb/uniapp/temporaryworker/src/components/firstui/fui-date-picker/fui-date-picker.vue?vue&type=style&index=0&scoped=42055a14&lang.css","moduleParts":{"components/firstui/fui-date-picker/fui-date-picker.js":"9d1b56c3-535"},"imported":[],"importedBy":[{"uid":"9d1b56c3-536"}]},"9d1b56c3-536":{"id":"D:/zcweb/uniapp/temporaryworker/src/components/firstui/fui-date-picker/fui-date-picker.vue","moduleParts":{"components/firstui/fui-date-picker/fui-date-picker.js":"9d1b56c3-537"},"imported":[{"uid":"9d1b56c3-38"},{"uid":"9d1b56c3-42"},{"uid":"9d1b56c3-534"},{"uid":"9d1b56c3-40"}],"importedBy":[{"uid":"9d1b56c3-538"}]},"9d1b56c3-538":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvY29tcG9uZW50cy9maXJzdHVpL2Z1aS1kYXRlLXBpY2tlci9mdWktZGF0ZS1waWNrZXIudnVl","moduleParts":{"components/firstui/fui-date-picker/fui-date-picker.js":"9d1b56c3-539"},"imported":[{"uid":"9d1b56c3-536"}],"importedBy":[{"uid":"9d1b56c3-380"},{"uid":"9d1b56c3-392"},{"uid":"9d1b56c3-428"},{"uid":"9d1b56c3-470"},{"uid":"9d1b56c3-488"},{"uid":"9d1b56c3-494"}]},"9d1b56c3-540":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uni-popup/components/uni-popup/uni-popup.vue?vue&type=style&index=0&lang.scss","moduleParts":{"uni_modules/uni-popup/components/uni-popup/uni-popup.js":"9d1b56c3-541"},"imported":[],"importedBy":[{"uid":"9d1b56c3-542"}]},"9d1b56c3-542":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uni-popup/components/uni-popup/uni-popup.vue","moduleParts":{"uni_modules/uni-popup/components/uni-popup/uni-popup.js":"9d1b56c3-543"},"imported":[{"uid":"9d1b56c3-38"},{"uid":"9d1b56c3-42"},{"uid":"9d1b56c3-540"},{"uid":"9d1b56c3-40"},{"uid":"9d1b56c3-664","dynamic":true}],"importedBy":[{"uid":"9d1b56c3-544"}]},"9d1b56c3-544":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdW5pLXBvcHVwL2NvbXBvbmVudHMvdW5pLXBvcHVwL3VuaS1wb3B1cC52dWU","moduleParts":{"uni_modules/uni-popup/components/uni-popup/uni-popup.js":"9d1b56c3-545"},"imported":[{"uid":"9d1b56c3-542"}],"importedBy":[{"uid":"9d1b56c3-386"}]},"9d1b56c3-546":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-input/u-input.vue?vue&type=style&index=0&scoped=a5e5d5c3&lang.scss","moduleParts":{"uni_modules/uview-plus/components/u-input/u-input.js":"9d1b56c3-547"},"imported":[],"importedBy":[{"uid":"9d1b56c3-548"}]},"9d1b56c3-548":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-input/u-input.vue","moduleParts":{"uni_modules/uview-plus/components/u-input/u-input.js":"9d1b56c3-549"},"imported":[{"uid":"9d1b56c3-102"},{"uid":"9d1b56c3-140"},{"uid":"9d1b56c3-138"},{"uid":"9d1b56c3-148"},{"uid":"9d1b56c3-130"},{"uid":"9d1b56c3-42"},{"uid":"9d1b56c3-546"},{"uid":"9d1b56c3-40"},{"uid":"9d1b56c3-502","dynamic":true}],"importedBy":[{"uid":"9d1b56c3-550"}]},"9d1b56c3-550":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtaW5wdXQvdS1pbnB1dC52dWU","moduleParts":{"uni_modules/uview-plus/components/u-input/u-input.js":"9d1b56c3-551"},"imported":[{"uid":"9d1b56c3-548"}],"importedBy":[{"uid":"9d1b56c3-392"},{"uid":"9d1b56c3-416"},{"uid":"9d1b56c3-428"},{"uid":"9d1b56c3-446"},{"uid":"9d1b56c3-458"},{"uid":"9d1b56c3-494"}]},"9d1b56c3-552":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-form-item/u-form-item.vue?vue&type=style&index=0&scoped=98223e3d&lang.scss","moduleParts":{"uni_modules/uview-plus/components/u-form-item/u-form-item.js":"9d1b56c3-553"},"imported":[],"importedBy":[{"uid":"9d1b56c3-554"}]},"9d1b56c3-554":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-form-item/u-form-item.vue","moduleParts":{"uni_modules/uview-plus/components/u-form-item/u-form-item.js":"9d1b56c3-555"},"imported":[{"uid":"9d1b56c3-94"},{"uid":"9d1b56c3-140"},{"uid":"9d1b56c3-138"},{"uid":"9d1b56c3-84"},{"uid":"9d1b56c3-156"},{"uid":"9d1b56c3-130"},{"uid":"9d1b56c3-42"},{"uid":"9d1b56c3-552"},{"uid":"9d1b56c3-40"},{"uid":"9d1b56c3-502","dynamic":true},{"uid":"9d1b56c3-654","dynamic":true}],"importedBy":[{"uid":"9d1b56c3-556"}]},"9d1b56c3-556":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtZm9ybS1pdGVtL3UtZm9ybS1pdGVtLnZ1ZQ","moduleParts":{"uni_modules/uview-plus/components/u-form-item/u-form-item.js":"9d1b56c3-557"},"imported":[{"uid":"9d1b56c3-554"}],"importedBy":[{"uid":"9d1b56c3-392"},{"uid":"9d1b56c3-416"},{"uid":"9d1b56c3-458"}]},"9d1b56c3-558":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-textarea/u-textarea.vue?vue&type=style&index=0&scoped=574e2c9d&lang.scss","moduleParts":{"uni_modules/uview-plus/components/u-textarea/u-textarea.js":"9d1b56c3-559"},"imported":[],"importedBy":[{"uid":"9d1b56c3-560"}]},"9d1b56c3-560":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-textarea/u-textarea.vue","moduleParts":{"uni_modules/uview-plus/components/u-textarea/u-textarea.js":"9d1b56c3-561"},"imported":[{"uid":"9d1b56c3-132"},{"uid":"9d1b56c3-140"},{"uid":"9d1b56c3-138"},{"uid":"9d1b56c3-130"},{"uid":"9d1b56c3-42"},{"uid":"9d1b56c3-558"},{"uid":"9d1b56c3-40"}],"importedBy":[{"uid":"9d1b56c3-562"}]},"9d1b56c3-562":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtdGV4dGFyZWEvdS10ZXh0YXJlYS52dWU","moduleParts":{"uni_modules/uview-plus/components/u-textarea/u-textarea.js":"9d1b56c3-563"},"imported":[{"uid":"9d1b56c3-560"}],"importedBy":[{"uid":"9d1b56c3-392"},{"uid":"9d1b56c3-416"},{"uid":"9d1b56c3-458"}]},"9d1b56c3-564":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-number-box/u-number-box.vue?vue&type=style&index=0&scoped=ff7ec725&lang.scss","moduleParts":{"uni_modules/uview-plus/components/u-number-box/u-number-box.js":"9d1b56c3-565"},"imported":[],"importedBy":[{"uid":"9d1b56c3-566"}]},"9d1b56c3-566":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-number-box/u-number-box.vue","moduleParts":{"uni_modules/uview-plus/components/u-number-box/u-number-box.js":"9d1b56c3-567"},"imported":[{"uid":"9d1b56c3-116"},{"uid":"9d1b56c3-140"},{"uid":"9d1b56c3-138"},{"uid":"9d1b56c3-130"},{"uid":"9d1b56c3-42"},{"uid":"9d1b56c3-564"},{"uid":"9d1b56c3-40"},{"uid":"9d1b56c3-502","dynamic":true}],"importedBy":[{"uid":"9d1b56c3-568"}]},"9d1b56c3-568":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtbnVtYmVyLWJveC91LW51bWJlci1ib3gudnVl","moduleParts":{"uni_modules/uview-plus/components/u-number-box/u-number-box.js":"9d1b56c3-569"},"imported":[{"uid":"9d1b56c3-566"}],"importedBy":[{"uid":"9d1b56c3-392"}]},"9d1b56c3-570":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-form/u-form.vue","moduleParts":{"uni_modules/uview-plus/components/u-form/u-form.js":"9d1b56c3-571"},"imported":[{"uid":"9d1b56c3-96"},{"uid":"9d1b56c3-140"},{"uid":"9d1b56c3-138"},{"uid":"9d1b56c3-370"},{"uid":"9d1b56c3-130"},{"uid":"9d1b56c3-86"},{"uid":"9d1b56c3-40"}],"importedBy":[{"uid":"9d1b56c3-572"}]},"9d1b56c3-572":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtZm9ybS91LWZvcm0udnVl","moduleParts":{"uni_modules/uview-plus/components/u-form/u-form.js":"9d1b56c3-573"},"imported":[{"uid":"9d1b56c3-570"}],"importedBy":[{"uid":"9d1b56c3-392"},{"uid":"9d1b56c3-416"},{"uid":"9d1b56c3-458"}]},"9d1b56c3-574":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-button/u-button.vue?vue&type=script&lang.ts","moduleParts":{"uni_modules/uview-plus/components/u-button/u-button.js":"9d1b56c3-575"},"imported":[{"uid":"9d1b56c3-364"},{"uid":"9d1b56c3-368"},{"uid":"9d1b56c3-140"},{"uid":"9d1b56c3-138"},{"uid":"9d1b56c3-88"},{"uid":"9d1b56c3-130"},{"uid":"9d1b56c3-150"},{"uid":"9d1b56c3-156"}],"importedBy":[{"uid":"9d1b56c3-578"}]},"9d1b56c3-576":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-button/u-button.vue?vue&type=style&index=0&scoped=52094d52&lang.scss","moduleParts":{"uni_modules/uview-plus/components/u-button/u-button.js":"9d1b56c3-577"},"imported":[],"importedBy":[{"uid":"9d1b56c3-578"}]},"9d1b56c3-578":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-button/u-button.vue","moduleParts":{"uni_modules/uview-plus/components/u-button/u-button.js":"9d1b56c3-579"},"imported":[{"uid":"9d1b56c3-574"},{"uid":"9d1b56c3-42"},{"uid":"9d1b56c3-576"},{"uid":"9d1b56c3-40"},{"uid":"9d1b56c3-660","dynamic":true},{"uid":"9d1b56c3-502","dynamic":true}],"importedBy":[{"uid":"9d1b56c3-580"}]},"9d1b56c3-580":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtYnV0dG9uL3UtYnV0dG9uLnZ1ZQ","moduleParts":{"uni_modules/uview-plus/components/u-button/u-button.js":"9d1b56c3-581"},"imported":[{"uid":"9d1b56c3-578"}],"importedBy":[{"uid":"9d1b56c3-392"},{"uid":"9d1b56c3-398"},{"uid":"9d1b56c3-416"},{"uid":"9d1b56c3-428"},{"uid":"9d1b56c3-434"},{"uid":"9d1b56c3-440"},{"uid":"9d1b56c3-446"},{"uid":"9d1b56c3-458"},{"uid":"9d1b56c3-464"},{"uid":"9d1b56c3-476"},{"uid":"9d1b56c3-482"},{"uid":"9d1b56c3-494"}]},"9d1b56c3-582":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-avatar/u-avatar.vue?vue&type=style&index=0&scoped=4139b3f3&lang.scss","moduleParts":{"uni_modules/uview-plus/components/u-avatar/u-avatar.js":"9d1b56c3-583"},"imported":[],"importedBy":[{"uid":"9d1b56c3-584"}]},"9d1b56c3-584":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-avatar/u-avatar.vue","moduleParts":{"uni_modules/uview-plus/components/u-avatar/u-avatar.js":"9d1b56c3-585"},"imported":[{"uid":"9d1b56c3-80"},{"uid":"9d1b56c3-140"},{"uid":"9d1b56c3-138"},{"uid":"9d1b56c3-130"},{"uid":"9d1b56c3-42"},{"uid":"9d1b56c3-582"},{"uid":"9d1b56c3-40"},{"uid":"9d1b56c3-502","dynamic":true},{"uid":"9d1b56c3-670","dynamic":true}],"importedBy":[{"uid":"9d1b56c3-586"}]},"9d1b56c3-586":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtYXZhdGFyL3UtYXZhdGFyLnZ1ZQ","moduleParts":{"uni_modules/uview-plus/components/u-avatar/u-avatar.js":"9d1b56c3-587"},"imported":[{"uid":"9d1b56c3-584"}],"importedBy":[{"uid":"9d1b56c3-410"},{"uid":"9d1b56c3-434"},{"uid":"9d1b56c3-440"},{"uid":"9d1b56c3-446"},{"uid":"9d1b56c3-452"},{"uid":"9d1b56c3-476"},{"uid":"9d1b56c3-482"},{"uid":"9d1b56c3-626"}]},"9d1b56c3-588":{"id":"D:/zcweb/uniapp/temporaryworker/src/components/firstui/fui-list-cell/fui-list-cell.vue?vue&type=style&index=0&scoped=77eef2c9&lang.css","moduleParts":{"components/firstui/fui-list-cell/fui-list-cell.js":"9d1b56c3-589"},"imported":[],"importedBy":[{"uid":"9d1b56c3-590"}]},"9d1b56c3-590":{"id":"D:/zcweb/uniapp/temporaryworker/src/components/firstui/fui-list-cell/fui-list-cell.vue","moduleParts":{"components/firstui/fui-list-cell/fui-list-cell.js":"9d1b56c3-591"},"imported":[{"uid":"9d1b56c3-38"},{"uid":"9d1b56c3-42"},{"uid":"9d1b56c3-588"},{"uid":"9d1b56c3-40"}],"importedBy":[{"uid":"9d1b56c3-592"}]},"9d1b56c3-592":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvY29tcG9uZW50cy9maXJzdHVpL2Z1aS1saXN0LWNlbGwvZnVpLWxpc3QtY2VsbC52dWU","moduleParts":{"components/firstui/fui-list-cell/fui-list-cell.js":"9d1b56c3-593"},"imported":[{"uid":"9d1b56c3-590"}],"importedBy":[{"uid":"9d1b56c3-410"},{"uid":"9d1b56c3-452"}]},"9d1b56c3-594":{"id":"D:/zcweb/uniapp/temporaryworker/src/components/firstui/fui-list/fui-list.vue?vue&type=style&index=0&scoped=61b84bd4&lang.css","moduleParts":{"components/firstui/fui-list/fui-list.js":"9d1b56c3-595"},"imported":[],"importedBy":[{"uid":"9d1b56c3-596"}]},"9d1b56c3-596":{"id":"D:/zcweb/uniapp/temporaryworker/src/components/firstui/fui-list/fui-list.vue","moduleParts":{"components/firstui/fui-list/fui-list.js":"9d1b56c3-597"},"imported":[{"uid":"9d1b56c3-42"},{"uid":"9d1b56c3-594"},{"uid":"9d1b56c3-40"}],"importedBy":[{"uid":"9d1b56c3-598"}]},"9d1b56c3-598":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvY29tcG9uZW50cy9maXJzdHVpL2Z1aS1saXN0L2Z1aS1saXN0LnZ1ZQ","moduleParts":{"components/firstui/fui-list/fui-list.js":"9d1b56c3-599"},"imported":[{"uid":"9d1b56c3-596"}],"importedBy":[{"uid":"9d1b56c3-410"},{"uid":"9d1b56c3-452"}]},"9d1b56c3-600":{"id":"D:/zcweb/uniapp/temporaryworker/src/components/firstui/fui-upload/fui-upload.vue?vue&type=style&index=0&scoped=2d5d0fa0&lang.css","moduleParts":{"components/firstui/fui-upload/fui-upload.js":"9d1b56c3-601"},"imported":[],"importedBy":[{"uid":"9d1b56c3-602"}]},"9d1b56c3-602":{"id":"D:/zcweb/uniapp/temporaryworker/src/components/firstui/fui-upload/fui-upload.vue","moduleParts":{"components/firstui/fui-upload/fui-upload.js":"9d1b56c3-603"},"imported":[{"uid":"9d1b56c3-38"},{"uid":"9d1b56c3-42"},{"uid":"9d1b56c3-600"},{"uid":"9d1b56c3-40"},{"uid":"9d1b56c3-642","dynamic":true}],"importedBy":[{"uid":"9d1b56c3-604"}]},"9d1b56c3-604":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvY29tcG9uZW50cy9maXJzdHVpL2Z1aS11cGxvYWQvZnVpLXVwbG9hZC52dWU","moduleParts":{"components/firstui/fui-upload/fui-upload.js":"9d1b56c3-605"},"imported":[{"uid":"9d1b56c3-602"}],"importedBy":[{"uid":"9d1b56c3-416"},{"uid":"9d1b56c3-440"},{"uid":"9d1b56c3-458"}]},"9d1b56c3-606":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-subsection/u-subsection.vue?vue&type=style&index=0&scoped=bb8563b6&lang.scss","moduleParts":{"uni_modules/uview-plus/components/u-subsection/u-subsection.js":"9d1b56c3-607"},"imported":[],"importedBy":[{"uid":"9d1b56c3-608"}]},"9d1b56c3-608":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-subsection/u-subsection.vue","moduleParts":{"uni_modules/uview-plus/components/u-subsection/u-subsection.js":"9d1b56c3-609"},"imported":[{"uid":"9d1b56c3-38"},{"uid":"9d1b56c3-122"},{"uid":"9d1b56c3-140"},{"uid":"9d1b56c3-138"},{"uid":"9d1b56c3-130"},{"uid":"9d1b56c3-42"},{"uid":"9d1b56c3-606"},{"uid":"9d1b56c3-40"}],"importedBy":[{"uid":"9d1b56c3-610"}]},"9d1b56c3-610":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3Utc3Vic2VjdGlvbi91LXN1YnNlY3Rpb24udnVl","moduleParts":{"uni_modules/uview-plus/components/u-subsection/u-subsection.js":"9d1b56c3-611"},"imported":[{"uid":"9d1b56c3-608"}],"importedBy":[{"uid":"9d1b56c3-428"},{"uid":"9d1b56c3-494"}]},"9d1b56c3-612":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-cell/u-cell.vue?vue&type=style&index=0&scoped=3b946341&lang.scss","moduleParts":{"uni_modules/uview-plus/components/u-cell/u-cell.js":"9d1b56c3-613"},"imported":[],"importedBy":[{"uid":"9d1b56c3-614"}]},"9d1b56c3-614":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-cell/u-cell.vue","moduleParts":{"uni_modules/uview-plus/components/u-cell/u-cell.js":"9d1b56c3-615"},"imported":[{"uid":"9d1b56c3-90"},{"uid":"9d1b56c3-140"},{"uid":"9d1b56c3-138"},{"uid":"9d1b56c3-130"},{"uid":"9d1b56c3-86"},{"uid":"9d1b56c3-42"},{"uid":"9d1b56c3-612"},{"uid":"9d1b56c3-40"},{"uid":"9d1b56c3-502","dynamic":true},{"uid":"9d1b56c3-654","dynamic":true}],"importedBy":[{"uid":"9d1b56c3-616"}]},"9d1b56c3-616":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtY2VsbC91LWNlbGwudnVl","moduleParts":{"uni_modules/uview-plus/components/u-cell/u-cell.js":"9d1b56c3-617"},"imported":[{"uid":"9d1b56c3-614"}],"importedBy":[{"uid":"9d1b56c3-434"},{"uid":"9d1b56c3-446"},{"uid":"9d1b56c3-476"},{"uid":"9d1b56c3-482"}]},"9d1b56c3-618":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-list-item/u-list-item.vue?vue&type=style&index=0&scoped=f5ff7ac7&lang.scss","moduleParts":{"uni_modules/uview-plus/components/u-list-item/u-list-item.js":"9d1b56c3-619"},"imported":[],"importedBy":[{"uid":"9d1b56c3-620"}]},"9d1b56c3-620":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-list-item/u-list-item.vue","moduleParts":{"uni_modules/uview-plus/components/u-list-item/u-list-item.js":"9d1b56c3-621"},"imported":[{"uid":"9d1b56c3-108"},{"uid":"9d1b56c3-140"},{"uid":"9d1b56c3-138"},{"uid":"9d1b56c3-130"},{"uid":"9d1b56c3-42"},{"uid":"9d1b56c3-618"},{"uid":"9d1b56c3-40"}],"importedBy":[{"uid":"9d1b56c3-622"}]},"9d1b56c3-622":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtbGlzdC1pdGVtL3UtbGlzdC1pdGVtLnZ1ZQ","moduleParts":{"uni_modules/uview-plus/components/u-list-item/u-list-item.js":"9d1b56c3-623"},"imported":[{"uid":"9d1b56c3-620"}],"importedBy":[{"uid":"9d1b56c3-434"},{"uid":"9d1b56c3-476"},{"uid":"9d1b56c3-482"}]},"9d1b56c3-624":{"id":"D:/zcweb/uniapp/temporaryworker/src/components/tem/tem-steps.vue?vue&type=style&index=0&scoped=746e3803&lang.scss","moduleParts":{"components/tem/tem-steps.js":"9d1b56c3-625"},"imported":[],"importedBy":[{"uid":"9d1b56c3-626"}]},"9d1b56c3-626":{"id":"D:/zcweb/uniapp/temporaryworker/src/components/tem/tem-steps.vue","moduleParts":{"components/tem/tem-steps.js":"9d1b56c3-627"},"imported":[{"uid":"9d1b56c3-38"},{"uid":"9d1b56c3-42"},{"uid":"9d1b56c3-624"},{"uid":"9d1b56c3-40"},{"uid":"9d1b56c3-502","dynamic":true},{"uid":"9d1b56c3-586","dynamic":true}],"importedBy":[{"uid":"9d1b56c3-628"}]},"9d1b56c3-628":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvY29tcG9uZW50cy90ZW0vdGVtLXN0ZXBzLnZ1ZQ","moduleParts":{"components/tem/tem-steps.js":"9d1b56c3-629"},"imported":[{"uid":"9d1b56c3-626"}],"importedBy":[{"uid":"9d1b56c3-434"}]},"9d1b56c3-630":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-list/u-list.vue?vue&type=style&index=0&scoped=e8455553&lang.scss","moduleParts":{"uni_modules/uview-plus/components/u-list/u-list.js":"9d1b56c3-631"},"imported":[],"importedBy":[{"uid":"9d1b56c3-632"}]},"9d1b56c3-632":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-list/u-list.vue","moduleParts":{"uni_modules/uview-plus/components/u-list/u-list.js":"9d1b56c3-633"},"imported":[{"uid":"9d1b56c3-110"},{"uid":"9d1b56c3-140"},{"uid":"9d1b56c3-138"},{"uid":"9d1b56c3-130"},{"uid":"9d1b56c3-42"},{"uid":"9d1b56c3-630"},{"uid":"9d1b56c3-40"}],"importedBy":[{"uid":"9d1b56c3-634"}]},"9d1b56c3-634":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtbGlzdC91LWxpc3QudnVl","moduleParts":{"uni_modules/uview-plus/components/u-list/u-list.js":"9d1b56c3-635"},"imported":[{"uid":"9d1b56c3-632"}],"importedBy":[{"uid":"9d1b56c3-434"},{"uid":"9d1b56c3-476"},{"uid":"9d1b56c3-482"}]},"9d1b56c3-636":{"id":"D:/zcweb/uniapp/temporaryworker/src/components/firstui/fui-icon/fui-icon.js","moduleParts":{"components/firstui/fui-icon/fui-icon.js":"9d1b56c3-637"},"imported":[],"importedBy":[{"uid":"9d1b56c3-640"}]},"9d1b56c3-638":{"id":"D:/zcweb/uniapp/temporaryworker/src/components/firstui/fui-icon/fui-icon.vue?vue&type=style&index=0&scoped=2cb4dbf4&lang.css","moduleParts":{"components/firstui/fui-icon/fui-icon.js":"9d1b56c3-639"},"imported":[],"importedBy":[{"uid":"9d1b56c3-640"}]},"9d1b56c3-640":{"id":"D:/zcweb/uniapp/temporaryworker/src/components/firstui/fui-icon/fui-icon.vue","moduleParts":{"components/firstui/fui-icon/fui-icon.js":"9d1b56c3-641"},"imported":[{"uid":"9d1b56c3-38"},{"uid":"9d1b56c3-636"},{"uid":"9d1b56c3-42"},{"uid":"9d1b56c3-638"},{"uid":"9d1b56c3-40"}],"importedBy":[{"uid":"9d1b56c3-642"}]},"9d1b56c3-642":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvY29tcG9uZW50cy9maXJzdHVpL2Z1aS1pY29uL2Z1aS1pY29uLnZ1ZQ","moduleParts":{"components/firstui/fui-icon/fui-icon.js":"9d1b56c3-643"},"imported":[{"uid":"9d1b56c3-640"}],"importedBy":[{"uid":"9d1b56c3-440"},{"uid":"9d1b56c3-602"}]},"9d1b56c3-644":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-transition/u-transition.vue?vue&type=style&index=0&scoped=69991aca&lang.scss","moduleParts":{"uni_modules/uview-plus/components/u-transition/u-transition.js":"9d1b56c3-645"},"imported":[],"importedBy":[{"uid":"9d1b56c3-646"}]},"9d1b56c3-646":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-transition/u-transition.vue","moduleParts":{"uni_modules/uview-plus/components/u-transition/u-transition.js":"9d1b56c3-647"},"imported":[{"uid":"9d1b56c3-134"},{"uid":"9d1b56c3-140"},{"uid":"9d1b56c3-138"},{"uid":"9d1b56c3-130"},{"uid":"9d1b56c3-136"},{"uid":"9d1b56c3-42"},{"uid":"9d1b56c3-644"},{"uid":"9d1b56c3-40"}],"importedBy":[{"uid":"9d1b56c3-648"}]},"9d1b56c3-648":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtdHJhbnNpdGlvbi91LXRyYW5zaXRpb24udnVl","moduleParts":{"uni_modules/uview-plus/components/u-transition/u-transition.js":"9d1b56c3-649"},"imported":[{"uid":"9d1b56c3-646"}],"importedBy":[{"uid":"9d1b56c3-518"}]},"9d1b56c3-650":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-line/u-line.vue?vue&type=style&index=0&scoped=18143249&lang.scss","moduleParts":{"uni_modules/uview-plus/components/u-line/u-line.js":"9d1b56c3-651"},"imported":[],"importedBy":[{"uid":"9d1b56c3-652"}]},"9d1b56c3-652":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-line/u-line.vue","moduleParts":{"uni_modules/uview-plus/components/u-line/u-line.js":"9d1b56c3-653"},"imported":[{"uid":"9d1b56c3-104"},{"uid":"9d1b56c3-140"},{"uid":"9d1b56c3-138"},{"uid":"9d1b56c3-130"},{"uid":"9d1b56c3-42"},{"uid":"9d1b56c3-650"},{"uid":"9d1b56c3-40"}],"importedBy":[{"uid":"9d1b56c3-654"}]},"9d1b56c3-654":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtbGluZS91LWxpbmUudnVl","moduleParts":{"uni_modules/uview-plus/components/u-line/u-line.js":"9d1b56c3-655"},"imported":[{"uid":"9d1b56c3-652"}],"importedBy":[{"uid":"9d1b56c3-524"},{"uid":"9d1b56c3-554"},{"uid":"9d1b56c3-614"}]},"9d1b56c3-656":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-loading-icon/u-loading-icon.vue?vue&type=style&index=0&scoped=bfe4499f&lang.scss","moduleParts":{"uni_modules/uview-plus/components/u-loading-icon/u-loading-icon.js":"9d1b56c3-657"},"imported":[],"importedBy":[{"uid":"9d1b56c3-658"}]},"9d1b56c3-658":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-loading-icon/u-loading-icon.vue","moduleParts":{"uni_modules/uview-plus/components/u-loading-icon/u-loading-icon.js":"9d1b56c3-659"},"imported":[{"uid":"9d1b56c3-112"},{"uid":"9d1b56c3-140"},{"uid":"9d1b56c3-138"},{"uid":"9d1b56c3-130"},{"uid":"9d1b56c3-146"},{"uid":"9d1b56c3-42"},{"uid":"9d1b56c3-656"},{"uid":"9d1b56c3-40"}],"importedBy":[{"uid":"9d1b56c3-660"}]},"9d1b56c3-660":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtbG9hZGluZy1pY29uL3UtbG9hZGluZy1pY29uLnZ1ZQ","moduleParts":{"uni_modules/uview-plus/components/u-loading-icon/u-loading-icon.js":"9d1b56c3-661"},"imported":[{"uid":"9d1b56c3-658"}],"importedBy":[{"uid":"9d1b56c3-524"},{"uid":"9d1b56c3-578"}]},"9d1b56c3-662":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uni-transition/components/uni-transition/uni-transition.vue","moduleParts":{"uni_modules/uni-transition/components/uni-transition/uni-transition.js":"9d1b56c3-663"},"imported":[{"uid":"9d1b56c3-78"},{"uid":"9d1b56c3-42"},{"uid":"9d1b56c3-40"}],"importedBy":[{"uid":"9d1b56c3-664"}]},"9d1b56c3-664":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdW5pLXRyYW5zaXRpb24vY29tcG9uZW50cy91bmktdHJhbnNpdGlvbi91bmktdHJhbnNpdGlvbi52dWU","moduleParts":{"uni_modules/uni-transition/components/uni-transition/uni-transition.js":"9d1b56c3-665"},"imported":[{"uid":"9d1b56c3-662"}],"importedBy":[{"uid":"9d1b56c3-542"}]},"9d1b56c3-666":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-text/u-text.vue?vue&type=style&index=0&scoped=8194d41c&lang.scss","moduleParts":{"uni_modules/uview-plus/components/u-text/u-text.js":"9d1b56c3-667"},"imported":[],"importedBy":[{"uid":"9d1b56c3-668"}]},"9d1b56c3-668":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-text/u-text.vue","moduleParts":{"uni_modules/uview-plus/components/u-text/u-text.js":"9d1b56c3-669"},"imported":[{"uid":"9d1b56c3-38"},{"uid":"9d1b56c3-126"},{"uid":"9d1b56c3-128"},{"uid":"9d1b56c3-140"},{"uid":"9d1b56c3-138"},{"uid":"9d1b56c3-364"},{"uid":"9d1b56c3-368"},{"uid":"9d1b56c3-130"},{"uid":"9d1b56c3-42"},{"uid":"9d1b56c3-666"},{"uid":"9d1b56c3-40"},{"uid":"9d1b56c3-502","dynamic":true},{"uid":"9d1b56c3-676","dynamic":true}],"importedBy":[{"uid":"9d1b56c3-670"}]},"9d1b56c3-670":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtdGV4dC91LXRleHQudnVl","moduleParts":{"uni_modules/uview-plus/components/u-text/u-text.js":"9d1b56c3-671"},"imported":[{"uid":"9d1b56c3-668"}],"importedBy":[{"uid":"9d1b56c3-584"}]},"9d1b56c3-672":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-link/u-link.vue?vue&type=style&index=0&scoped=d6e711cb&lang.scss","moduleParts":{"uni_modules/uview-plus/components/u-link/u-link.js":"9d1b56c3-673"},"imported":[],"importedBy":[{"uid":"9d1b56c3-674"}]},"9d1b56c3-674":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-link/u-link.vue","moduleParts":{"uni_modules/uview-plus/components/u-link/u-link.js":"9d1b56c3-675"},"imported":[{"uid":"9d1b56c3-38"},{"uid":"9d1b56c3-106"},{"uid":"9d1b56c3-140"},{"uid":"9d1b56c3-138"},{"uid":"9d1b56c3-130"},{"uid":"9d1b56c3-42"},{"uid":"9d1b56c3-672"},{"uid":"9d1b56c3-40"}],"importedBy":[{"uid":"9d1b56c3-676"}]},"9d1b56c3-676":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtbGluay91LWxpbmsudnVl","moduleParts":{"uni_modules/uview-plus/components/u-link/u-link.js":"9d1b56c3-677"},"imported":[{"uid":"9d1b56c3-674"}],"importedBy":[{"uid":"9d1b56c3-668"}]},"9d1b56c3-678":{"id":"D:/zcweb/uniapp/temporaryworker/src/manifest-json-js","moduleParts":{},"imported":[],"importedBy":[{"uid":"9d1b56c3-0"}]}},"env":{"rollup":"4.20.0"},"options":{"gzip":false,"brotli":false,"sourcemap":false}};
+    const data = {"version":2,"tree":{"name":"root","children":[{"name":"app.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src","children":[{"uid":"af9a1c3d-1","name":"pages-json-js"},{"uid":"af9a1c3d-3","name":"App.vue?vue&type=style&index=0&lang.scss"},{"uid":"af9a1c3d-5","name":"App.vue"},{"uid":"af9a1c3d-7","name":"main.ts"}]}]},{"name":"common/assets.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/static","children":[{"uid":"af9a1c3d-9","name":"logo.png"},{"name":"image","children":[{"uid":"af9a1c3d-11","name":"fabu.png"},{"uid":"af9a1c3d-13","name":"guanli.png"},{"uid":"af9a1c3d-15","name":"qiye.png"},{"uid":"af9a1c3d-17","name":"record.png"},{"uid":"af9a1c3d-19","name":"dingwei.png"}]}]}]},{"name":"common/locales/en.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/common/locales/en.js","uid":"af9a1c3d-21"}]},{"name":"common/locales/zh.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/common/locales/zh.js","uid":"af9a1c3d-23"}]},{"name":"common/mixin.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/common/mixin.js","uid":"af9a1c3d-25"}]},{"name":"common/request/http.api.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/common/request/http.api.js","uid":"af9a1c3d-27"}]},{"name":"uni_modules/uview-plus/index.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/index.js","uid":"af9a1c3d-29"}]},{"name":"common/request/request.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/common/request/request.js","uid":"af9a1c3d-31"}]},{"name":"common/vendor.js","children":[{"name":"node_modules","children":[{"name":"@vue/shared/dist/shared.esm-bundler.js","uid":"af9a1c3d-33"},{"name":"@dcloudio","children":[{"name":"uni-i18n/dist/uni-i18n.es.js","uid":"af9a1c3d-35"},{"name":"uni-shared/dist/uni-shared.es.js","uid":"af9a1c3d-37"},{"name":"uni-app/dist/uni-app.es.js","uid":"af9a1c3d-65"}]},{"name":"vuex/dist/vuex.esm-bundler.js","uid":"af9a1c3d-47"}]},{"name":"D:/zcweb/uniapp/temporaryworker/node_modules","children":[{"name":"@dcloudio","children":[{"name":"uni-mp-weixin/dist","children":[{"uid":"af9a1c3d-39","name":"uni.api.esm.js"},{"uid":"af9a1c3d-45","name":"uni.mp.esm.js"}]},{"name":"uni-mp-vue/dist/vue.runtime.esm.js","uid":"af9a1c3d-43"},{"name":"uni-cli-shared/lib/vue-i18n/dist/vue-i18n.runtime.esm-bundler.js","uid":"af9a1c3d-63"}]},{"name":"@intlify","children":[{"name":"shared/dist/shared.esm-bundler.js","uid":"af9a1c3d-49"},{"name":"message-resolver/dist/message-resolver.esm-bundler.js","uid":"af9a1c3d-51"},{"name":"runtime/dist/runtime.esm-bundler.js","uid":"af9a1c3d-53"},{"name":"message-compiler/dist/message-compiler.esm-bundler.js","uid":"af9a1c3d-55"},{"name":"devtools-if/dist/devtools-if.esm-bundler.js","uid":"af9a1c3d-57"},{"name":"core-base/dist/core-base.esm-bundler.js","uid":"af9a1c3d-59"},{"name":"vue-devtools/dist/vue-devtools.esm-bundler.js","uid":"af9a1c3d-61"}]}]},{"uid":"af9a1c3d-41","name":"\u0000plugin-vue:export-helper"}]},{"name":"common/setting/constVarsHelper.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/common/setting/constVarsHelper.js","uid":"af9a1c3d-67"}]},{"name":"common/utils/dbHelper.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/common/utils/dbHelper.js","uid":"af9a1c3d-69"}]},{"name":"common/utils/commonHelper.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/common/utils/commonHelper.js","uid":"af9a1c3d-71"}]},{"name":"common/utils/uploadHelper.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/common/utils/uploadHelper.js","uid":"af9a1c3d-73"}]},{"name":"common/utils/util.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/common/utils/util.js","uid":"af9a1c3d-75"}]},{"name":"store/index.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/store/index.js","uid":"af9a1c3d-77"}]},{"name":"uni_modules/uni-transition/components/uni-transition/createAnimation.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uni-transition/components/uni-transition/createAnimation.js","uid":"af9a1c3d-79"}]},{"name":"uni_modules/uview-plus/components/u-avatar/props.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-avatar/props.js","uid":"af9a1c3d-81"}]},{"name":"uni_modules/uview-plus/libs/vue.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/vue.js","uid":"af9a1c3d-83"}]},{"name":"uni_modules/uview-plus/libs/config/props.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props.js","uid":"af9a1c3d-85"}]},{"name":"uni_modules/uview-plus/libs/function/test.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/function/test.js","uid":"af9a1c3d-87"}]},{"name":"uni_modules/uview-plus/components/u-button/props.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-button/props.js","uid":"af9a1c3d-89"}]},{"name":"uni_modules/uview-plus/components/u-cell/props.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-cell/props.js","uid":"af9a1c3d-91"}]},{"name":"uni_modules/uview-plus/components/u-empty/props.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-empty/props.js","uid":"af9a1c3d-93"}]},{"name":"uni_modules/uview-plus/components/u-form-item/props.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-form-item/props.js","uid":"af9a1c3d-95"}]},{"name":"uni_modules/uview-plus/components/u-form/props.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-form/props.js","uid":"af9a1c3d-97"}]},{"name":"uni_modules/uview-plus/components/u-icon/icons.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-icon/icons.js","uid":"af9a1c3d-99"}]},{"name":"uni_modules/uview-plus/components/u-icon/props.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-icon/props.js","uid":"af9a1c3d-101"}]},{"name":"uni_modules/uview-plus/components/u-input/props.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-input/props.js","uid":"af9a1c3d-103"}]},{"name":"uni_modules/uview-plus/components/u-line/props.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-line/props.js","uid":"af9a1c3d-105"}]},{"name":"uni_modules/uview-plus/components/u-link/props.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-link/props.js","uid":"af9a1c3d-107"}]},{"name":"uni_modules/uview-plus/components/u-list-item/props.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-list-item/props.js","uid":"af9a1c3d-109"}]},{"name":"uni_modules/uview-plus/components/u-list/props.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-list/props.js","uid":"af9a1c3d-111"}]},{"name":"uni_modules/uview-plus/components/u-loading-icon/props.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-loading-icon/props.js","uid":"af9a1c3d-113"}]},{"name":"uni_modules/uview-plus/components/u-loadmore/props.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-loadmore/props.js","uid":"af9a1c3d-115"}]},{"name":"uni_modules/uview-plus/components/u-number-box/props.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-number-box/props.js","uid":"af9a1c3d-117"}]},{"name":"uni_modules/uview-plus/components/u-search/props.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-search/props.js","uid":"af9a1c3d-119"}]},{"name":"uni_modules/uview-plus/components/u-sticky/props.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-sticky/props.js","uid":"af9a1c3d-121"}]},{"name":"uni_modules/uview-plus/components/u-subsection/props.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-subsection/props.js","uid":"af9a1c3d-123"}]},{"name":"uni_modules/uview-plus/components/u-tag/props.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-tag/props.js","uid":"af9a1c3d-125"}]},{"name":"uni_modules/uview-plus/components/u-text/props.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-text/props.js","uid":"af9a1c3d-127"}]},{"name":"uni_modules/uview-plus/components/u-text/value.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-text/value.js","uid":"af9a1c3d-129"}]},{"name":"uni_modules/uview-plus/libs/function/index.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/function/index.js","uid":"af9a1c3d-131"}]},{"name":"uni_modules/uview-plus/components/u-textarea/props.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-textarea/props.js","uid":"af9a1c3d-133"}]},{"name":"uni_modules/uview-plus/components/u-transition/props.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-transition/props.js","uid":"af9a1c3d-135"}]},{"name":"uni_modules/uview-plus/components/u-transition/transition.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-transition/transition.js","uid":"af9a1c3d-137"}]},{"name":"uni_modules/uview-plus/libs/mixin/mixin.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/mixin/mixin.js","uid":"af9a1c3d-139"}]},{"name":"uni_modules/uview-plus/libs/mixin/mpMixin.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/mixin/mpMixin.js","uid":"af9a1c3d-141"}]},{"name":"uni_modules/uview-plus/libs/luch-request/core/Request.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/luch-request/core/Request.js","uid":"af9a1c3d-143"}]},{"name":"uni_modules/uview-plus/libs/util/route.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/util/route.js","uid":"af9a1c3d-145"}]},{"name":"uni_modules/uview-plus/libs/function/colorGradient.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/function/colorGradient.js","uid":"af9a1c3d-147"}]},{"name":"uni_modules/uview-plus/libs/function/debounce.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/function/debounce.js","uid":"af9a1c3d-149"}]},{"name":"uni_modules/uview-plus/libs/function/throttle.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/function/throttle.js","uid":"af9a1c3d-151"}]},{"name":"uni_modules/uview-plus/libs/config/config.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/config.js","uid":"af9a1c3d-153"}]},{"name":"uni_modules/uview-plus/libs/config/zIndex.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/zIndex.js","uid":"af9a1c3d-155"}]},{"name":"uni_modules/uview-plus/libs/config/color.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/color.js","uid":"af9a1c3d-157"}]},{"name":"uni_modules/uview-plus/libs/function/platform.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/function/platform.js","uid":"af9a1c3d-159"}]},{"name":"uni_modules/uview-plus/libs/config/props/actionSheet.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/actionSheet.js","uid":"af9a1c3d-161"}]},{"name":"uni_modules/uview-plus/libs/config/props/album.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/album.js","uid":"af9a1c3d-163"}]},{"name":"uni_modules/uview-plus/libs/config/props/alert.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/alert.js","uid":"af9a1c3d-165"}]},{"name":"uni_modules/uview-plus/libs/config/props/avatar.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/avatar.js","uid":"af9a1c3d-167"}]},{"name":"uni_modules/uview-plus/libs/config/props/avatarGroup.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/avatarGroup.js","uid":"af9a1c3d-169"}]},{"name":"uni_modules/uview-plus/libs/config/props/backtop.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/backtop.js","uid":"af9a1c3d-171"}]},{"name":"uni_modules/uview-plus/libs/config/props/badge.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/badge.js","uid":"af9a1c3d-173"}]},{"name":"uni_modules/uview-plus/libs/config/props/button.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/button.js","uid":"af9a1c3d-175"}]},{"name":"uni_modules/uview-plus/libs/config/props/calendar.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/calendar.js","uid":"af9a1c3d-177"}]},{"name":"uni_modules/uview-plus/libs/config/props/carKeyboard.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/carKeyboard.js","uid":"af9a1c3d-179"}]},{"name":"uni_modules/uview-plus/libs/config/props/cell.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/cell.js","uid":"af9a1c3d-181"}]},{"name":"uni_modules/uview-plus/libs/config/props/cellGroup.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/cellGroup.js","uid":"af9a1c3d-183"}]},{"name":"uni_modules/uview-plus/libs/config/props/checkbox.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/checkbox.js","uid":"af9a1c3d-185"}]},{"name":"uni_modules/uview-plus/libs/config/props/checkboxGroup.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/checkboxGroup.js","uid":"af9a1c3d-187"}]},{"name":"uni_modules/uview-plus/libs/config/props/circleProgress.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/circleProgress.js","uid":"af9a1c3d-189"}]},{"name":"uni_modules/uview-plus/libs/config/props/code.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/code.js","uid":"af9a1c3d-191"}]},{"name":"uni_modules/uview-plus/libs/config/props/codeInput.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/codeInput.js","uid":"af9a1c3d-193"}]},{"name":"uni_modules/uview-plus/libs/config/props/col.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/col.js","uid":"af9a1c3d-195"}]},{"name":"uni_modules/uview-plus/libs/config/props/collapse.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/collapse.js","uid":"af9a1c3d-197"}]},{"name":"uni_modules/uview-plus/libs/config/props/collapseItem.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/collapseItem.js","uid":"af9a1c3d-199"}]},{"name":"uni_modules/uview-plus/libs/config/props/columnNotice.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/columnNotice.js","uid":"af9a1c3d-201"}]},{"name":"uni_modules/uview-plus/libs/config/props/countDown.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/countDown.js","uid":"af9a1c3d-203"}]},{"name":"uni_modules/uview-plus/libs/config/props/countTo.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/countTo.js","uid":"af9a1c3d-205"}]},{"name":"uni_modules/uview-plus/libs/config/props/datetimePicker.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/datetimePicker.js","uid":"af9a1c3d-207"}]},{"name":"uni_modules/uview-plus/libs/config/props/divider.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/divider.js","uid":"af9a1c3d-209"}]},{"name":"uni_modules/uview-plus/libs/config/props/empty.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/empty.js","uid":"af9a1c3d-211"}]},{"name":"uni_modules/uview-plus/libs/config/props/form.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/form.js","uid":"af9a1c3d-213"}]},{"name":"uni_modules/uview-plus/libs/config/props/formItem.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/formItem.js","uid":"af9a1c3d-215"}]},{"name":"uni_modules/uview-plus/libs/config/props/gap.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/gap.js","uid":"af9a1c3d-217"}]},{"name":"uni_modules/uview-plus/libs/config/props/grid.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/grid.js","uid":"af9a1c3d-219"}]},{"name":"uni_modules/uview-plus/libs/config/props/gridItem.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/gridItem.js","uid":"af9a1c3d-221"}]},{"name":"uni_modules/uview-plus/libs/config/props/icon.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/icon.js","uid":"af9a1c3d-223"}]},{"name":"uni_modules/uview-plus/libs/config/props/image.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/image.js","uid":"af9a1c3d-225"}]},{"name":"uni_modules/uview-plus/libs/config/props/indexAnchor.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/indexAnchor.js","uid":"af9a1c3d-227"}]},{"name":"uni_modules/uview-plus/libs/config/props/indexList.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/indexList.js","uid":"af9a1c3d-229"}]},{"name":"uni_modules/uview-plus/libs/config/props/input.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/input.js","uid":"af9a1c3d-231"}]},{"name":"uni_modules/uview-plus/libs/config/props/keyboard.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/keyboard.js","uid":"af9a1c3d-233"}]},{"name":"uni_modules/uview-plus/libs/config/props/line.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/line.js","uid":"af9a1c3d-235"}]},{"name":"uni_modules/uview-plus/libs/config/props/lineProgress.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/lineProgress.js","uid":"af9a1c3d-237"}]},{"name":"uni_modules/uview-plus/libs/config/props/link.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/link.js","uid":"af9a1c3d-239"}]},{"name":"uni_modules/uview-plus/libs/config/props/list.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/list.js","uid":"af9a1c3d-241"}]},{"name":"uni_modules/uview-plus/libs/config/props/listItem.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/listItem.js","uid":"af9a1c3d-243"}]},{"name":"uni_modules/uview-plus/libs/config/props/loadingIcon.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/loadingIcon.js","uid":"af9a1c3d-245"}]},{"name":"uni_modules/uview-plus/libs/config/props/loadingPage.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/loadingPage.js","uid":"af9a1c3d-247"}]},{"name":"uni_modules/uview-plus/libs/config/props/loadmore.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/loadmore.js","uid":"af9a1c3d-249"}]},{"name":"uni_modules/uview-plus/libs/config/props/modal.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/modal.js","uid":"af9a1c3d-251"}]},{"name":"uni_modules/uview-plus/libs/config/props/navbar.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/navbar.js","uid":"af9a1c3d-253"}]},{"name":"uni_modules/uview-plus/libs/config/props/noNetwork.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/noNetwork.js","uid":"af9a1c3d-255"}]},{"name":"uni_modules/uview-plus/libs/config/props/noticeBar.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/noticeBar.js","uid":"af9a1c3d-257"}]},{"name":"uni_modules/uview-plus/libs/config/props/notify.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/notify.js","uid":"af9a1c3d-259"}]},{"name":"uni_modules/uview-plus/libs/config/props/numberBox.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/numberBox.js","uid":"af9a1c3d-261"}]},{"name":"uni_modules/uview-plus/libs/config/props/numberKeyboard.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/numberKeyboard.js","uid":"af9a1c3d-263"}]},{"name":"uni_modules/uview-plus/libs/config/props/overlay.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/overlay.js","uid":"af9a1c3d-265"}]},{"name":"uni_modules/uview-plus/libs/config/props/parse.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/parse.js","uid":"af9a1c3d-267"}]},{"name":"uni_modules/uview-plus/libs/config/props/picker.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/picker.js","uid":"af9a1c3d-269"}]},{"name":"uni_modules/uview-plus/libs/config/props/popup.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/popup.js","uid":"af9a1c3d-271"}]},{"name":"uni_modules/uview-plus/libs/config/props/radio.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/radio.js","uid":"af9a1c3d-273"}]},{"name":"uni_modules/uview-plus/libs/config/props/radioGroup.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/radioGroup.js","uid":"af9a1c3d-275"}]},{"name":"uni_modules/uview-plus/libs/config/props/rate.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/rate.js","uid":"af9a1c3d-277"}]},{"name":"uni_modules/uview-plus/libs/config/props/readMore.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/readMore.js","uid":"af9a1c3d-279"}]},{"name":"uni_modules/uview-plus/libs/config/props/row.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/row.js","uid":"af9a1c3d-281"}]},{"name":"uni_modules/uview-plus/libs/config/props/rowNotice.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/rowNotice.js","uid":"af9a1c3d-283"}]},{"name":"uni_modules/uview-plus/libs/config/props/scrollList.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/scrollList.js","uid":"af9a1c3d-285"}]},{"name":"uni_modules/uview-plus/libs/config/props/search.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/search.js","uid":"af9a1c3d-287"}]},{"name":"uni_modules/uview-plus/libs/config/props/section.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/section.js","uid":"af9a1c3d-289"}]},{"name":"uni_modules/uview-plus/libs/config/props/skeleton.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/skeleton.js","uid":"af9a1c3d-291"}]},{"name":"uni_modules/uview-plus/libs/config/props/slider.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/slider.js","uid":"af9a1c3d-293"}]},{"name":"uni_modules/uview-plus/libs/config/props/statusBar.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/statusBar.js","uid":"af9a1c3d-295"}]},{"name":"uni_modules/uview-plus/libs/config/props/steps.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/steps.js","uid":"af9a1c3d-297"}]},{"name":"uni_modules/uview-plus/libs/config/props/stepsItem.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/stepsItem.js","uid":"af9a1c3d-299"}]},{"name":"uni_modules/uview-plus/libs/config/props/sticky.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/sticky.js","uid":"af9a1c3d-301"}]},{"name":"uni_modules/uview-plus/libs/config/props/subsection.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/subsection.js","uid":"af9a1c3d-303"}]},{"name":"uni_modules/uview-plus/libs/config/props/swipeAction.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/swipeAction.js","uid":"af9a1c3d-305"}]},{"name":"uni_modules/uview-plus/libs/config/props/swipeActionItem.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/swipeActionItem.js","uid":"af9a1c3d-307"}]},{"name":"uni_modules/uview-plus/libs/config/props/swiper.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/swiper.js","uid":"af9a1c3d-309"}]},{"name":"uni_modules/uview-plus/libs/config/props/swipterIndicator.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/swipterIndicator.js","uid":"af9a1c3d-311"}]},{"name":"uni_modules/uview-plus/libs/config/props/switch.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/switch.js","uid":"af9a1c3d-313"}]},{"name":"uni_modules/uview-plus/libs/config/props/tabbar.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/tabbar.js","uid":"af9a1c3d-315"}]},{"name":"uni_modules/uview-plus/libs/config/props/tabbarItem.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/tabbarItem.js","uid":"af9a1c3d-317"}]},{"name":"uni_modules/uview-plus/libs/config/props/tabs.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/tabs.js","uid":"af9a1c3d-319"}]},{"name":"uni_modules/uview-plus/libs/config/props/tag.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/tag.js","uid":"af9a1c3d-321"}]},{"name":"uni_modules/uview-plus/libs/config/props/text.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/text.js","uid":"af9a1c3d-323"}]},{"name":"uni_modules/uview-plus/libs/config/props/textarea.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/textarea.js","uid":"af9a1c3d-325"}]},{"name":"uni_modules/uview-plus/libs/config/props/toast.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/toast.js","uid":"af9a1c3d-327"}]},{"name":"uni_modules/uview-plus/libs/config/props/toolbar.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/toolbar.js","uid":"af9a1c3d-329"}]},{"name":"uni_modules/uview-plus/libs/config/props/tooltip.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/tooltip.js","uid":"af9a1c3d-331"}]},{"name":"uni_modules/uview-plus/libs/config/props/transition.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/transition.js","uid":"af9a1c3d-333"}]},{"name":"uni_modules/uview-plus/libs/config/props/upload.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/upload.js","uid":"af9a1c3d-335"}]},{"name":"uni_modules/uview-plus/libs/function/digit.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/function/digit.js","uid":"af9a1c3d-337"}]},{"name":"uni_modules/uview-plus/libs/luch-request/adapters/index.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/luch-request/adapters/index.js","uid":"af9a1c3d-339"}]},{"name":"uni_modules/uview-plus/libs/luch-request/helpers/buildURL.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/luch-request/helpers/buildURL.js","uid":"af9a1c3d-341"}]},{"name":"uni_modules/uview-plus/libs/luch-request/core/buildFullPath.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/luch-request/core/buildFullPath.js","uid":"af9a1c3d-343"}]},{"name":"uni_modules/uview-plus/libs/luch-request/core/settle.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/luch-request/core/settle.js","uid":"af9a1c3d-345"}]},{"name":"uni_modules/uview-plus/libs/luch-request/utils.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/luch-request/utils.js","uid":"af9a1c3d-347"}]},{"name":"uni_modules/uview-plus/libs/luch-request/core/InterceptorManager.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/luch-request/core/InterceptorManager.js","uid":"af9a1c3d-349"}]},{"name":"uni_modules/uview-plus/libs/luch-request/core/dispatchRequest.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/luch-request/core/dispatchRequest.js","uid":"af9a1c3d-351"}]},{"name":"uni_modules/uview-plus/libs/luch-request/core/mergeConfig.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/luch-request/core/mergeConfig.js","uid":"af9a1c3d-353"}]},{"name":"uni_modules/uview-plus/libs/luch-request/core/defaults.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/luch-request/core/defaults.js","uid":"af9a1c3d-355"}]},{"name":"uni_modules/uview-plus/libs/luch-request/utils/clone.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/luch-request/utils/clone.js","uid":"af9a1c3d-357"}]},{"name":"uni_modules/uview-plus/libs/luch-request/helpers/isAbsoluteURL.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/luch-request/helpers/isAbsoluteURL.js","uid":"af9a1c3d-359"}]},{"name":"uni_modules/uview-plus/libs/luch-request/helpers/combineURLs.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/luch-request/helpers/combineURLs.js","uid":"af9a1c3d-361"}]},{"name":"uni_modules/uview-plus/libs/luch-request/index.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/luch-request/index.js","uid":"af9a1c3d-363"}]},{"name":"uni_modules/uview-plus/libs/mixin/button.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/mixin/button.js","uid":"af9a1c3d-365"}]},{"name":"uni_modules/uview-plus/libs/mixin/mpShare.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/mixin/mpShare.js","uid":"af9a1c3d-367"}]},{"name":"uni_modules/uview-plus/libs/mixin/openType.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/mixin/openType.js","uid":"af9a1c3d-369"}]},{"name":"uni_modules/uview-plus/libs/util/async-validator.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/util/async-validator.js","uid":"af9a1c3d-371"}]},{"name":"pages/default/index.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/pages/default","children":[{"uid":"af9a1c3d-373","name":"index.vue?vue&type=style&index=0&lang.scss"},{"uid":"af9a1c3d-375","name":"index.vue"}]},{"name":"uniPage:/cGFnZXMvZGVmYXVsdC9pbmRleC52dWU","uid":"af9a1c3d-377"}]},{"name":"pages/index/index.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/pages/index","children":[{"uid":"af9a1c3d-379","name":"index.vue?vue&type=style&index=0&lang.scss"},{"uid":"af9a1c3d-381","name":"index.vue"}]},{"name":"uniPage:/cGFnZXMvaW5kZXgvaW5kZXgudnVl","uid":"af9a1c3d-383"}]},{"name":"pages/login/index.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/pages/login","children":[{"uid":"af9a1c3d-385","name":"index.vue?vue&type=style&index=0&scoped=45258083&lang.scss"},{"uid":"af9a1c3d-387","name":"index.vue"}]},{"name":"uniPage:/cGFnZXMvbG9naW4vaW5kZXgudnVl","uid":"af9a1c3d-389"}]},{"name":"pages/release/index.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/pages/release","children":[{"uid":"af9a1c3d-391","name":"index.vue?vue&type=style&index=0&lang.css"},{"uid":"af9a1c3d-393","name":"index.vue"}]},{"name":"uniPage:/cGFnZXMvcmVsZWFzZS9pbmRleC52dWU","uid":"af9a1c3d-395"}]},{"name":"pages/mine/index.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/pages/mine","children":[{"uid":"af9a1c3d-397","name":"index.vue?vue&type=style&index=0&lang.scss"},{"uid":"af9a1c3d-399","name":"index.vue"}]},{"name":"uniPage:/cGFnZXMvbWluZS9pbmRleC52dWU","uid":"af9a1c3d-401"}]},{"name":"pages/mine/mine.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/pages/mine","children":[{"uid":"af9a1c3d-403","name":"mine.vue?vue&type=style&index=0&lang.css"},{"uid":"af9a1c3d-405","name":"mine.vue"}]},{"name":"uniPage:/cGFnZXMvbWluZS9taW5lLnZ1ZQ","uid":"af9a1c3d-407"}]},{"name":"pages/mine/apply.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/pages/mine","children":[{"uid":"af9a1c3d-409","name":"apply.vue?vue&type=style&index=0&lang.css"},{"uid":"af9a1c3d-411","name":"apply.vue"}]},{"name":"uniPage:/cGFnZXMvbWluZS9hcHBseS52dWU","uid":"af9a1c3d-413"}]},{"name":"pages/test/test.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/pages/test","children":[{"uid":"af9a1c3d-415","name":"test.vue?vue&type=style&index=0&lang.css"},{"uid":"af9a1c3d-417","name":"test.vue"}]},{"name":"uniPage:/cGFnZXMvdGVzdC90ZXN0LnZ1ZQ","uid":"af9a1c3d-419"}]},{"name":"pages/income/income.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/pages/income","children":[{"uid":"af9a1c3d-421","name":"income.vue?vue&type=style&index=0&lang.scss"},{"uid":"af9a1c3d-423","name":"income.vue"}]},{"name":"uniPage:/cGFnZXMvaW5jb21lL2luY29tZS52dWU","uid":"af9a1c3d-425"}]},{"name":"pages/article/article.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/pages/article","children":[{"uid":"af9a1c3d-427","name":"article.vue?vue&type=style&index=0&lang.css"},{"uid":"af9a1c3d-429","name":"article.vue"}]},{"name":"uniPage:/cGFnZXMvYXJ0aWNsZS9hcnRpY2xlLnZ1ZQ","uid":"af9a1c3d-431"}]},{"name":"pages/worker/worker.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/pages/worker/worker.vue","uid":"af9a1c3d-433"},{"name":"uniPage:/cGFnZXMvd29ya2VyL3dvcmtlci52dWU","uid":"af9a1c3d-435"}]},{"name":"pages/checkin/index.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/pages/checkin","children":[{"uid":"af9a1c3d-437","name":"index.vue?vue&type=style&index=0&lang.css"},{"uid":"af9a1c3d-439","name":"index.vue"}]},{"name":"uniPage:/cGFnZXNcY2hlY2tpblxpbmRleC52dWU","uid":"af9a1c3d-441"}]},{"name":"pages/checkin/checkin.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/pages/checkin","children":[{"uid":"af9a1c3d-443","name":"checkin.vue?vue&type=style&index=0&lang.scss"},{"uid":"af9a1c3d-445","name":"checkin.vue"}]},{"name":"uniPage:/cGFnZXNcY2hlY2tpblxjaGVja2luLnZ1ZQ","uid":"af9a1c3d-447"}]},{"name":"pages/checkin/workdetail.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/pages/checkin","children":[{"uid":"af9a1c3d-449","name":"workdetail.vue?vue&type=style&index=0&lang.scss"},{"uid":"af9a1c3d-451","name":"workdetail.vue"}]},{"name":"uniPage:/cGFnZXNcY2hlY2tpblx3b3JrZGV0YWlsLnZ1ZQ","uid":"af9a1c3d-453"}]},{"name":"pages/enterprise/index.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/pages/enterprise","children":[{"uid":"af9a1c3d-455","name":"index.vue?vue&type=style&index=0&lang.css"},{"uid":"af9a1c3d-457","name":"index.vue"}]},{"name":"uniPage:/cGFnZXNcZW50ZXJwcmlzZVxpbmRleC52dWU","uid":"af9a1c3d-459"}]},{"name":"pages/enterprise/enterprise.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/pages/enterprise","children":[{"uid":"af9a1c3d-461","name":"enterprise.vue?vue&type=style&index=0&lang.css"},{"uid":"af9a1c3d-463","name":"enterprise.vue"}]},{"name":"uniPage:/cGFnZXNcZW50ZXJwcmlzZVxlbnRlcnByaXNlLnZ1ZQ","uid":"af9a1c3d-465"}]},{"name":"pages/detail/detail.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/pages/detail","children":[{"uid":"af9a1c3d-467","name":"detail.vue?vue&type=style&index=0&lang.css"},{"uid":"af9a1c3d-469","name":"detail.vue"}]},{"name":"uniPage:/cGFnZXNcZGV0YWlsXGRldGFpbC52dWU","uid":"af9a1c3d-471"}]},{"name":"pages/order/order.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/pages/order","children":[{"uid":"af9a1c3d-473","name":"order.vue?vue&type=style&index=0&lang.css"},{"uid":"af9a1c3d-475","name":"order.vue"}]},{"name":"uniPage:/cGFnZXNcb3JkZXJcb3JkZXIudnVl","uid":"af9a1c3d-477"}]},{"name":"pages/order/detail.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/pages/order","children":[{"uid":"af9a1c3d-479","name":"detail.vue?vue&type=style&index=0&lang.scss"},{"uid":"af9a1c3d-481","name":"detail.vue"}]},{"name":"uniPage:/cGFnZXNcb3JkZXJcZGV0YWlsLnZ1ZQ","uid":"af9a1c3d-483"}]},{"name":"pages/order/worker.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/pages/order","children":[{"uid":"af9a1c3d-485","name":"worker.vue?vue&type=style&index=0&lang.scss"},{"uid":"af9a1c3d-487","name":"worker.vue"}]},{"name":"uniPage:/cGFnZXNcb3JkZXJcd29ya2VyLnZ1ZQ","uid":"af9a1c3d-489"}]},{"name":"pages/order/myorder.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/pages/order","children":[{"uid":"af9a1c3d-491","name":"myorder.vue?vue&type=style&index=0&lang.css"},{"uid":"af9a1c3d-493","name":"myorder.vue"}]},{"name":"uniPage:/cGFnZXNcb3JkZXJcbXlvcmRlci52dWU","uid":"af9a1c3d-495"}]},{"name":"pages/company/index.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/pages/company","children":[{"uid":"af9a1c3d-497","name":"index.vue?vue&type=style&index=0&lang.css"},{"uid":"af9a1c3d-499","name":"index.vue"}]},{"name":"uniPage:/cGFnZXNcY29tcGFueVxpbmRleC52dWU","uid":"af9a1c3d-501"}]},{"name":"pages/company/record.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/pages/company","children":[{"uid":"af9a1c3d-503","name":"record.vue?vue&type=style&index=0&lang.scss"},{"uid":"af9a1c3d-505","name":"record.vue"}]},{"name":"uniPage:/cGFnZXNcY29tcGFueVxyZWNvcmQudnVl","uid":"af9a1c3d-507"}]},{"name":"pages/wallet/index.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/pages/wallet","children":[{"uid":"af9a1c3d-509","name":"index.vue?vue&type=style&index=0&lang.scss"},{"uid":"af9a1c3d-511","name":"index.vue"}]},{"name":"uniPage:/cGFnZXNcd2FsbGV0XGluZGV4LnZ1ZQ","uid":"af9a1c3d-513"}]},{"name":"pages/wallet/recharge.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/pages/wallet","children":[{"uid":"af9a1c3d-515","name":"recharge.vue?vue&type=style&index=0&lang.scss"},{"uid":"af9a1c3d-517","name":"recharge.vue"}]},{"name":"uniPage:/cGFnZXNcd2FsbGV0XHJlY2hhcmdlLnZ1ZQ","uid":"af9a1c3d-519"}]},{"name":"pages/wallet/withdrawal.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/pages/wallet","children":[{"uid":"af9a1c3d-521","name":"withdrawal.vue?vue&type=style&index=0&lang.scss"},{"uid":"af9a1c3d-523","name":"withdrawal.vue"}]},{"name":"uniPage:/cGFnZXNcd2FsbGV0XHdpdGhkcmF3YWwudnVl","uid":"af9a1c3d-525"}]},{"name":"uni_modules/uview-plus/components/u-icon/u-icon.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-icon","children":[{"uid":"af9a1c3d-527","name":"u-icon.vue?vue&type=style&index=0&scoped=bc34bf57&lang.scss"},{"uid":"af9a1c3d-529","name":"u-icon.vue"}]},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtaWNvbi91LWljb24udnVl","uid":"af9a1c3d-531"}]},{"name":"uni_modules/uview-plus/components/u-search/u-search.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-search","children":[{"uid":"af9a1c3d-533","name":"u-search.vue?vue&type=style&index=0&scoped=db25ac38&lang.scss"},{"uid":"af9a1c3d-535","name":"u-search.vue"}]},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3Utc2VhcmNoL3Utc2VhcmNoLnZ1ZQ","uid":"af9a1c3d-537"}]},{"name":"uni_modules/uview-plus/components/u-sticky/u-sticky.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-sticky","children":[{"uid":"af9a1c3d-539","name":"u-sticky.vue?vue&type=style&index=0&scoped=442db378&lang.scss"},{"uid":"af9a1c3d-541","name":"u-sticky.vue"}]},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3Utc3RpY2t5L3Utc3RpY2t5LnZ1ZQ","uid":"af9a1c3d-543"}]},{"name":"uni_modules/uview-plus/components/u-tag/u-tag.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-tag","children":[{"uid":"af9a1c3d-545","name":"u-tag.vue?vue&type=style&index=0&scoped=90ff8a51&lang.scss"},{"uid":"af9a1c3d-547","name":"u-tag.vue"}]},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtdGFnL3UtdGFnLnZ1ZQ","uid":"af9a1c3d-549"}]},{"name":"uni_modules/uview-plus/components/u-loadmore/u-loadmore.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-loadmore","children":[{"uid":"af9a1c3d-551","name":"u-loadmore.vue?vue&type=style&index=0&scoped=80ed34f9&lang.scss"},{"uid":"af9a1c3d-553","name":"u-loadmore.vue"}]},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtbG9hZG1vcmUvdS1sb2FkbW9yZS52dWU","uid":"af9a1c3d-555"}]},{"name":"uni_modules/uview-plus/components/u-empty/u-empty.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-empty","children":[{"uid":"af9a1c3d-557","name":"u-empty.vue?vue&type=style&index=0&scoped=2eac7384&lang.scss"},{"uid":"af9a1c3d-559","name":"u-empty.vue"}]},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtZW1wdHkvdS1lbXB0eS52dWU","uid":"af9a1c3d-561"}]},{"name":"components/firstui/fui-date-picker/fui-date-picker.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/components/firstui/fui-date-picker","children":[{"uid":"af9a1c3d-563","name":"fui-date-picker.vue?vue&type=style&index=0&scoped=42055a14&lang.css"},{"uid":"af9a1c3d-565","name":"fui-date-picker.vue"}]},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvY29tcG9uZW50cy9maXJzdHVpL2Z1aS1kYXRlLXBpY2tlci9mdWktZGF0ZS1waWNrZXIudnVl","uid":"af9a1c3d-567"}]},{"name":"uni_modules/uni-popup/components/uni-popup/uni-popup.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uni-popup/components/uni-popup","children":[{"uid":"af9a1c3d-569","name":"uni-popup.vue?vue&type=style&index=0&lang.scss"},{"uid":"af9a1c3d-571","name":"uni-popup.vue"}]},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdW5pLXBvcHVwL2NvbXBvbmVudHMvdW5pLXBvcHVwL3VuaS1wb3B1cC52dWU","uid":"af9a1c3d-573"}]},{"name":"uni_modules/uview-plus/components/u-input/u-input.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-input","children":[{"uid":"af9a1c3d-575","name":"u-input.vue?vue&type=style&index=0&scoped=a5e5d5c3&lang.scss"},{"uid":"af9a1c3d-577","name":"u-input.vue"}]},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtaW5wdXQvdS1pbnB1dC52dWU","uid":"af9a1c3d-579"}]},{"name":"uni_modules/uview-plus/components/u-form-item/u-form-item.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-form-item","children":[{"uid":"af9a1c3d-581","name":"u-form-item.vue?vue&type=style&index=0&scoped=98223e3d&lang.scss"},{"uid":"af9a1c3d-583","name":"u-form-item.vue"}]},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtZm9ybS1pdGVtL3UtZm9ybS1pdGVtLnZ1ZQ","uid":"af9a1c3d-585"}]},{"name":"uni_modules/uview-plus/components/u-textarea/u-textarea.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-textarea","children":[{"uid":"af9a1c3d-587","name":"u-textarea.vue?vue&type=style&index=0&scoped=574e2c9d&lang.scss"},{"uid":"af9a1c3d-589","name":"u-textarea.vue"}]},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtdGV4dGFyZWEvdS10ZXh0YXJlYS52dWU","uid":"af9a1c3d-591"}]},{"name":"uni_modules/uview-plus/components/u-number-box/u-number-box.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-number-box","children":[{"uid":"af9a1c3d-593","name":"u-number-box.vue?vue&type=style&index=0&scoped=ff7ec725&lang.scss"},{"uid":"af9a1c3d-595","name":"u-number-box.vue"}]},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtbnVtYmVyLWJveC91LW51bWJlci1ib3gudnVl","uid":"af9a1c3d-597"}]},{"name":"uni_modules/uview-plus/components/u-form/u-form.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-form/u-form.vue","uid":"af9a1c3d-599"},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtZm9ybS91LWZvcm0udnVl","uid":"af9a1c3d-601"}]},{"name":"uni_modules/uview-plus/components/u-button/u-button.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-button","children":[{"uid":"af9a1c3d-603","name":"u-button.vue?vue&type=script&lang.ts"},{"uid":"af9a1c3d-605","name":"u-button.vue?vue&type=style&index=0&scoped=52094d52&lang.scss"},{"uid":"af9a1c3d-607","name":"u-button.vue"}]},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtYnV0dG9uL3UtYnV0dG9uLnZ1ZQ","uid":"af9a1c3d-609"}]},{"name":"uni_modules/uview-plus/components/u-avatar/u-avatar.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-avatar","children":[{"uid":"af9a1c3d-611","name":"u-avatar.vue?vue&type=style&index=0&scoped=4139b3f3&lang.scss"},{"uid":"af9a1c3d-613","name":"u-avatar.vue"}]},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtYXZhdGFyL3UtYXZhdGFyLnZ1ZQ","uid":"af9a1c3d-615"}]},{"name":"uni_modules/uview-plus/components/u-cell/u-cell.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-cell","children":[{"uid":"af9a1c3d-617","name":"u-cell.vue?vue&type=style&index=0&scoped=3b946341&lang.scss"},{"uid":"af9a1c3d-619","name":"u-cell.vue"}]},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtY2VsbC91LWNlbGwudnVl","uid":"af9a1c3d-621"}]},{"name":"components/firstui/fui-upload/fui-upload.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/components/firstui/fui-upload","children":[{"uid":"af9a1c3d-623","name":"fui-upload.vue?vue&type=style&index=0&scoped=2d5d0fa0&lang.css"},{"uid":"af9a1c3d-625","name":"fui-upload.vue"}]},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvY29tcG9uZW50cy9maXJzdHVpL2Z1aS11cGxvYWQvZnVpLXVwbG9hZC52dWU","uid":"af9a1c3d-627"}]},{"name":"uni_modules/uview-plus/components/u-subsection/u-subsection.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-subsection","children":[{"uid":"af9a1c3d-629","name":"u-subsection.vue?vue&type=style&index=0&scoped=bb8563b6&lang.scss"},{"uid":"af9a1c3d-631","name":"u-subsection.vue"}]},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3Utc3Vic2VjdGlvbi91LXN1YnNlY3Rpb24udnVl","uid":"af9a1c3d-633"}]},{"name":"components/firstui/fui-icon/fui-icon.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/components/firstui/fui-icon","children":[{"uid":"af9a1c3d-635","name":"fui-icon.js"},{"uid":"af9a1c3d-637","name":"fui-icon.vue?vue&type=style&index=0&scoped=2cb4dbf4&lang.css"},{"uid":"af9a1c3d-639","name":"fui-icon.vue"}]},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvY29tcG9uZW50cy9maXJzdHVpL2Z1aS1pY29uL2Z1aS1pY29uLnZ1ZQ","uid":"af9a1c3d-641"}]},{"name":"components/firstui/fui-list-cell/fui-list-cell.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/components/firstui/fui-list-cell","children":[{"uid":"af9a1c3d-643","name":"fui-list-cell.vue?vue&type=style&index=0&scoped=77eef2c9&lang.css"},{"uid":"af9a1c3d-645","name":"fui-list-cell.vue"}]},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvY29tcG9uZW50cy9maXJzdHVpL2Z1aS1saXN0LWNlbGwvZnVpLWxpc3QtY2VsbC52dWU","uid":"af9a1c3d-647"}]},{"name":"components/firstui/fui-list/fui-list.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/components/firstui/fui-list","children":[{"uid":"af9a1c3d-649","name":"fui-list.vue?vue&type=style&index=0&scoped=61b84bd4&lang.css"},{"uid":"af9a1c3d-651","name":"fui-list.vue"}]},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvY29tcG9uZW50cy9maXJzdHVpL2Z1aS1saXN0L2Z1aS1saXN0LnZ1ZQ","uid":"af9a1c3d-653"}]},{"name":"uni_modules/uview-plus/components/u-list-item/u-list-item.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-list-item","children":[{"uid":"af9a1c3d-655","name":"u-list-item.vue?vue&type=style&index=0&scoped=f5ff7ac7&lang.scss"},{"uid":"af9a1c3d-657","name":"u-list-item.vue"}]},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtbGlzdC1pdGVtL3UtbGlzdC1pdGVtLnZ1ZQ","uid":"af9a1c3d-659"}]},{"name":"uni_modules/uview-plus/components/u-list/u-list.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-list","children":[{"uid":"af9a1c3d-661","name":"u-list.vue?vue&type=style&index=0&scoped=e8455553&lang.scss"},{"uid":"af9a1c3d-663","name":"u-list.vue"}]},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtbGlzdC91LWxpc3QudnVl","uid":"af9a1c3d-665"}]},{"name":"uni_modules/uview-plus/components/u-transition/u-transition.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-transition","children":[{"uid":"af9a1c3d-667","name":"u-transition.vue?vue&type=style&index=0&scoped=69991aca&lang.scss"},{"uid":"af9a1c3d-669","name":"u-transition.vue"}]},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtdHJhbnNpdGlvbi91LXRyYW5zaXRpb24udnVl","uid":"af9a1c3d-671"}]},{"name":"uni_modules/uview-plus/components/u-line/u-line.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-line","children":[{"uid":"af9a1c3d-673","name":"u-line.vue?vue&type=style&index=0&scoped=18143249&lang.scss"},{"uid":"af9a1c3d-675","name":"u-line.vue"}]},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtbGluZS91LWxpbmUudnVl","uid":"af9a1c3d-677"}]},{"name":"uni_modules/uview-plus/components/u-loading-icon/u-loading-icon.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-loading-icon","children":[{"uid":"af9a1c3d-679","name":"u-loading-icon.vue?vue&type=style&index=0&scoped=bfe4499f&lang.scss"},{"uid":"af9a1c3d-681","name":"u-loading-icon.vue"}]},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtbG9hZGluZy1pY29uL3UtbG9hZGluZy1pY29uLnZ1ZQ","uid":"af9a1c3d-683"}]},{"name":"uni_modules/uni-transition/components/uni-transition/uni-transition.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uni-transition/components/uni-transition/uni-transition.vue","uid":"af9a1c3d-685"},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdW5pLXRyYW5zaXRpb24vY29tcG9uZW50cy91bmktdHJhbnNpdGlvbi91bmktdHJhbnNpdGlvbi52dWU","uid":"af9a1c3d-687"}]},{"name":"uni_modules/uview-plus/components/u-text/u-text.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-text","children":[{"uid":"af9a1c3d-689","name":"u-text.vue?vue&type=style&index=0&scoped=8194d41c&lang.scss"},{"uid":"af9a1c3d-691","name":"u-text.vue"}]},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtdGV4dC91LXRleHQudnVl","uid":"af9a1c3d-693"}]},{"name":"uni_modules/uview-plus/components/u-link/u-link.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-link","children":[{"uid":"af9a1c3d-695","name":"u-link.vue?vue&type=style&index=0&scoped=d6e711cb&lang.scss"},{"uid":"af9a1c3d-697","name":"u-link.vue"}]},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtbGluay91LWxpbmsudnVl","uid":"af9a1c3d-699"}]}],"isRoot":true},"nodeParts":{"af9a1c3d-1":{"renderedLength":796,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-0"},"af9a1c3d-3":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-2"},"af9a1c3d-5":{"renderedLength":394,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-4"},"af9a1c3d-7":{"renderedLength":1450,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-6"},"af9a1c3d-9":{"renderedLength":48,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-8"},"af9a1c3d-11":{"renderedLength":48,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-10"},"af9a1c3d-13":{"renderedLength":46,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-12"},"af9a1c3d-15":{"renderedLength":46,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-14"},"af9a1c3d-17":{"renderedLength":46,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-16"},"af9a1c3d-19":{"renderedLength":46,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-18"},"af9a1c3d-21":{"renderedLength":957,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-20"},"af9a1c3d-23":{"renderedLength":721,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-22"},"af9a1c3d-25":{"renderedLength":82,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-24"},"af9a1c3d-27":{"renderedLength":6121,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-26"},"af9a1c3d-29":{"renderedLength":2717,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-28"},"af9a1c3d-31":{"renderedLength":3630,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-30"},"af9a1c3d-33":{"renderedLength":5863,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-32"},"af9a1c3d-35":{"renderedLength":982,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-34"},"af9a1c3d-37":{"renderedLength":6055,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-36"},"af9a1c3d-39":{"renderedLength":32368,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-38"},"af9a1c3d-41":{"renderedLength":159,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-40"},"af9a1c3d-43":{"renderedLength":150964,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-42"},"af9a1c3d-45":{"renderedLength":23003,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-44"},"af9a1c3d-47":{"renderedLength":20355,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-46"},"af9a1c3d-49":{"renderedLength":4688,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-48"},"af9a1c3d-51":{"renderedLength":6952,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-50"},"af9a1c3d-53":{"renderedLength":3962,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-52"},"af9a1c3d-55":{"renderedLength":1681,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-54"},"af9a1c3d-57":{"renderedLength":214,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-56"},"af9a1c3d-59":{"renderedLength":24721,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-58"},"af9a1c3d-61":{"renderedLength":562,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-60"},"af9a1c3d-63":{"renderedLength":54238,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-62"},"af9a1c3d-65":{"renderedLength":654,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-64"},"af9a1c3d-67":{"renderedLength":1858,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-66"},"af9a1c3d-69":{"renderedLength":1310,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-68"},"af9a1c3d-71":{"renderedLength":2142,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-70"},"af9a1c3d-73":{"renderedLength":7307,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-72"},"af9a1c3d-75":{"renderedLength":16971,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-74"},"af9a1c3d-77":{"renderedLength":1998,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-76"},"af9a1c3d-79":{"renderedLength":2630,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-78"},"af9a1c3d-81":{"renderedLength":2993,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-80"},"af9a1c3d-83":{"renderedLength":54,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-82"},"af9a1c3d-85":{"renderedLength":5935,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-84"},"af9a1c3d-87":{"renderedLength":6180,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-86"},"af9a1c3d-89":{"renderedLength":6727,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-88"},"af9a1c3d-91":{"renderedLength":4122,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-90"},"af9a1c3d-93":{"renderedLength":2129,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-92"},"af9a1c3d-95":{"renderedLength":2026,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-94"},"af9a1c3d-97":{"renderedLength":1754,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-96"},"af9a1c3d-99":{"renderedLength":7521,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-98"},"af9a1c3d-101":{"renderedLength":3376,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-100"},"af9a1c3d-103":{"renderedLength":7077,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-102"},"af9a1c3d-105":{"renderedLength":1312,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-104"},"af9a1c3d-107":{"renderedLength":1396,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-106"},"af9a1c3d-109":{"renderedLength":274,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-108"},"af9a1c3d-111":{"renderedLength":4155,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-110"},"af9a1c3d-113":{"renderedLength":2256,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-112"},"af9a1c3d-115":{"renderedLength":3587,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-114"},"af9a1c3d-117":{"renderedLength":4420,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-116"},"af9a1c3d-119":{"renderedLength":5171,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-118"},"af9a1c3d-121":{"renderedLength":1300,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-120"},"af9a1c3d-123":{"renderedLength":1799,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-122"},"af9a1c3d-125":{"renderedLength":3233,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-124"},"af9a1c3d-127":{"renderedLength":4129,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-126"},"af9a1c3d-129":{"renderedLength":4427,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-128"},"af9a1c3d-131":{"renderedLength":13491,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-130"},"af9a1c3d-133":{"renderedLength":4447,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-132"},"af9a1c3d-135":{"renderedLength":845,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-134"},"af9a1c3d-137":{"renderedLength":3135,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-136"},"af9a1c3d-139":{"renderedLength":7509,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-138"},"af9a1c3d-141":{"renderedLength":221,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-140"},"af9a1c3d-143":{"renderedLength":5812,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-142"},"af9a1c3d-145":{"renderedLength":4675,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-144"},"af9a1c3d-147":{"renderedLength":4601,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-146"},"af9a1c3d-149":{"renderedLength":948,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-148"},"af9a1c3d-151":{"renderedLength":851,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-150"},"af9a1c3d-153":{"renderedLength":873,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-152"},"af9a1c3d-155":{"renderedLength":389,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-154"},"af9a1c3d-157":{"renderedLength":488,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-156"},"af9a1c3d-159":{"renderedLength":358,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-158"},"af9a1c3d-161":{"renderedLength":622,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-160"},"af9a1c3d-163":{"renderedLength":615,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-162"},"af9a1c3d-165":{"renderedLength":487,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-164"},"af9a1c3d-167":{"renderedLength":619,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-166"},"af9a1c3d-169":{"renderedLength":508,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-168"},"af9a1c3d-171":{"renderedLength":585,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-170"},"af9a1c3d-173":{"renderedLength":594,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-172"},"af9a1c3d-175":{"renderedLength":995,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-174"},"af9a1c3d-177":{"renderedLength":1126,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-176"},"af9a1c3d-179":{"renderedLength":337,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-178"},"af9a1c3d-181":{"renderedLength":647,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-180"},"af9a1c3d-183":{"renderedLength":383,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-182"},"af9a1c3d-185":{"renderedLength":596,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-184"},"af9a1c3d-187":{"renderedLength":718,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-186"},"af9a1c3d-189":{"renderedLength":353,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-188"},"af9a1c3d-191":{"renderedLength":473,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-190"},"af9a1c3d-193":{"renderedLength":654,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-192"},"af9a1c3d-195":{"renderedLength":401,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-194"},"af9a1c3d-197":{"renderedLength":374,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-196"},"af9a1c3d-199":{"renderedLength":579,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-198"},"af9a1c3d-201":{"renderedLength":549,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-200"},"af9a1c3d-203":{"renderedLength":419,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-202"},"af9a1c3d-205":{"renderedLength":549,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-204"},"af9a1c3d-207":{"renderedLength":1010,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-206"},"af9a1c3d-209":{"renderedLength":500,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-208"},"af9a1c3d-211":{"renderedLength":538,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-210"},"af9a1c3d-213":{"renderedLength":492,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-212"},"af9a1c3d-215":{"renderedLength":536,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-214"},"af9a1c3d-217":{"renderedLength":408,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-216"},"af9a1c3d-219":{"renderedLength":350,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-218"},"af9a1c3d-221":{"renderedLength":357,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-220"},"af9a1c3d-223":{"renderedLength":774,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-222"},"af9a1c3d-225":{"renderedLength":694,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-224"},"af9a1c3d-227":{"renderedLength":427,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-226"},"af9a1c3d-229":{"renderedLength":478,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-228"},"af9a1c3d-231":{"renderedLength":1016,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-230"},"af9a1c3d-233":{"renderedLength":720,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-232"},"af9a1c3d-235":{"renderedLength":430,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-234"},"af9a1c3d-237":{"renderedLength":454,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-236"},"af9a1c3d-239":{"renderedLength":581,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-238"},"af9a1c3d-241":{"renderedLength":666,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-240"},"af9a1c3d-243":{"renderedLength":325,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-242"},"af9a1c3d-245":{"renderedLength":702,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-244"},"af9a1c3d-247":{"renderedLength":579,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-246"},"af9a1c3d-249":{"renderedLength":786,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-248"},"af9a1c3d-251":{"renderedLength":774,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-250"},"af9a1c3d-253":{"renderedLength":734,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-252"},"af9a1c3d-255":{"renderedLength":28917,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-254"},"af9a1c3d-257":{"renderedLength":605,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-256"},"af9a1c3d-259":{"renderedLength":484,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-258"},"af9a1c3d-261":{"renderedLength":835,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-260"},"af9a1c3d-263":{"renderedLength":395,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-262"},"af9a1c3d-265":{"renderedLength":389,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-264"},"af9a1c3d-267":{"renderedLength":484,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-266"},"af9a1c3d-269":{"renderedLength":716,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-268"},"af9a1c3d-271":{"renderedLength":684,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-270"},"af9a1c3d-273":{"renderedLength":582,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-272"},"af9a1c3d-275":{"renderedLength":725,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-274"},"af9a1c3d-277":{"renderedLength":587,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-276"},"af9a1c3d-279":{"renderedLength":508,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-278"},"af9a1c3d-281":{"renderedLength":348,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-280"},"af9a1c3d-283":{"renderedLength":457,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-282"},"af9a1c3d-285":{"renderedLength":494,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-284"},"af9a1c3d-287":{"renderedLength":916,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-286"},"af9a1c3d-289":{"renderedLength":535,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-288"},"af9a1c3d-291":{"renderedLength":563,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-290"},"af9a1c3d-293":{"renderedLength":602,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-292"},"af9a1c3d-295":{"renderedLength":334,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-294"},"af9a1c3d-297":{"renderedLength":474,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-296"},"af9a1c3d-299":{"renderedLength":390,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-298"},"af9a1c3d-301":{"renderedLength":442,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-300"},"af9a1c3d-303":{"renderedLength":529,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-302"},"af9a1c3d-305":{"renderedLength":342,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-304"},"af9a1c3d-307":{"renderedLength":489,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-306"},"af9a1c3d-309":{"renderedLength":966,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-308"},"af9a1c3d-311":{"renderedLength":468,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-310"},"af9a1c3d-313":{"renderedLength":548,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-312"},"af9a1c3d-315":{"renderedLength":501,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-314"},"af9a1c3d-317":{"renderedLength":435,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-316"},"af9a1c3d-319":{"renderedLength":700,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-318"},"af9a1c3d-321":{"renderedLength":574,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-320"},"af9a1c3d-323":{"renderedLength":782,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-322"},"af9a1c3d-325":{"renderedLength":773,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-324"},"af9a1c3d-327":{"renderedLength":617,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-326"},"af9a1c3d-329":{"renderedLength":467,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-328"},"af9a1c3d-331":{"renderedLength":559,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-330"},"af9a1c3d-333":{"renderedLength":430,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-332"},"af9a1c3d-335":{"renderedLength":785,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-334"},"af9a1c3d-337":{"renderedLength":2672,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-336"},"af9a1c3d-339":{"renderedLength":2342,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-338"},"af9a1c3d-341":{"renderedLength":1984,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-340"},"af9a1c3d-343":{"renderedLength":692,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-342"},"af9a1c3d-345":{"renderedLength":528,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-344"},"af9a1c3d-347":{"renderedLength":3369,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-346"},"af9a1c3d-349":{"renderedLength":1199,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-348"},"af9a1c3d-351":{"renderedLength":106,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-350"},"af9a1c3d-353":{"renderedLength":2368,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-352"},"af9a1c3d-355":{"renderedLength":337,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-354"},"af9a1c3d-357":{"renderedLength":8405,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-356"},"af9a1c3d-359":{"renderedLength":545,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-358"},"af9a1c3d-361":{"renderedLength":366,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-360"},"af9a1c3d-363":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-362"},"af9a1c3d-365":{"renderedLength":364,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-364"},"af9a1c3d-367":{"renderedLength":725,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-366"},"af9a1c3d-369":{"renderedLength":706,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-368"},"af9a1c3d-371":{"renderedLength":27130,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-370"},"af9a1c3d-373":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-372"},"af9a1c3d-375":{"renderedLength":1687,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-374"},"af9a1c3d-377":{"renderedLength":31,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-376"},"af9a1c3d-379":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-378"},"af9a1c3d-381":{"renderedLength":6777,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-380"},"af9a1c3d-383":{"renderedLength":31,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-382"},"af9a1c3d-385":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-384"},"af9a1c3d-387":{"renderedLength":7443,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-386"},"af9a1c3d-389":{"renderedLength":31,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-388"},"af9a1c3d-391":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-390"},"af9a1c3d-393":{"renderedLength":10950,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-392"},"af9a1c3d-395":{"renderedLength":31,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-394"},"af9a1c3d-397":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-396"},"af9a1c3d-399":{"renderedLength":38004,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-398"},"af9a1c3d-401":{"renderedLength":31,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-400"},"af9a1c3d-403":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-402"},"af9a1c3d-405":{"renderedLength":6881,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-404"},"af9a1c3d-407":{"renderedLength":31,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-406"},"af9a1c3d-409":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-408"},"af9a1c3d-411":{"renderedLength":11345,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-410"},"af9a1c3d-413":{"renderedLength":31,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-412"},"af9a1c3d-415":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-414"},"af9a1c3d-417":{"renderedLength":7809,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-416"},"af9a1c3d-419":{"renderedLength":31,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-418"},"af9a1c3d-421":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-420"},"af9a1c3d-423":{"renderedLength":2885,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-422"},"af9a1c3d-425":{"renderedLength":31,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-424"},"af9a1c3d-427":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-426"},"af9a1c3d-429":{"renderedLength":347,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-428"},"af9a1c3d-431":{"renderedLength":31,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-430"},"af9a1c3d-433":{"renderedLength":682,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-432"},"af9a1c3d-435":{"renderedLength":31,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-434"},"af9a1c3d-437":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-436"},"af9a1c3d-439":{"renderedLength":7554,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-438"},"af9a1c3d-441":{"renderedLength":31,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-440"},"af9a1c3d-443":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-442"},"af9a1c3d-445":{"renderedLength":6619,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-444"},"af9a1c3d-447":{"renderedLength":31,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-446"},"af9a1c3d-449":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-448"},"af9a1c3d-451":{"renderedLength":5865,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-450"},"af9a1c3d-453":{"renderedLength":31,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-452"},"af9a1c3d-455":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-454"},"af9a1c3d-457":{"renderedLength":3468,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-456"},"af9a1c3d-459":{"renderedLength":31,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-458"},"af9a1c3d-461":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-460"},"af9a1c3d-463":{"renderedLength":9997,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-462"},"af9a1c3d-465":{"renderedLength":31,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-464"},"af9a1c3d-467":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-466"},"af9a1c3d-469":{"renderedLength":2534,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-468"},"af9a1c3d-471":{"renderedLength":31,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-470"},"af9a1c3d-473":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-472"},"af9a1c3d-475":{"renderedLength":6874,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-474"},"af9a1c3d-477":{"renderedLength":31,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-476"},"af9a1c3d-479":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-478"},"af9a1c3d-481":{"renderedLength":5081,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-480"},"af9a1c3d-483":{"renderedLength":31,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-482"},"af9a1c3d-485":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-484"},"af9a1c3d-487":{"renderedLength":2548,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-486"},"af9a1c3d-489":{"renderedLength":31,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-488"},"af9a1c3d-491":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-490"},"af9a1c3d-493":{"renderedLength":7326,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-492"},"af9a1c3d-495":{"renderedLength":31,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-494"},"af9a1c3d-497":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-496"},"af9a1c3d-499":{"renderedLength":7653,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-498"},"af9a1c3d-501":{"renderedLength":31,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-500"},"af9a1c3d-503":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-502"},"af9a1c3d-505":{"renderedLength":6736,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-504"},"af9a1c3d-507":{"renderedLength":31,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-506"},"af9a1c3d-509":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-508"},"af9a1c3d-511":{"renderedLength":3820,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-510"},"af9a1c3d-513":{"renderedLength":31,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-512"},"af9a1c3d-515":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-514"},"af9a1c3d-517":{"renderedLength":1032,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-516"},"af9a1c3d-519":{"renderedLength":31,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-518"},"af9a1c3d-521":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-520"},"af9a1c3d-523":{"renderedLength":1034,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-522"},"af9a1c3d-525":{"renderedLength":31,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-524"},"af9a1c3d-527":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-526"},"af9a1c3d-529":{"renderedLength":6290,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-528"},"af9a1c3d-531":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-530"},"af9a1c3d-533":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-532"},"af9a1c3d-535":{"renderedLength":8529,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-534"},"af9a1c3d-537":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-536"},"af9a1c3d-539":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-538"},"af9a1c3d-541":{"renderedLength":6628,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-540"},"af9a1c3d-543":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-542"},"af9a1c3d-545":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-544"},"af9a1c3d-547":{"renderedLength":5580,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-546"},"af9a1c3d-549":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-548"},"af9a1c3d-551":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-550"},"af9a1c3d-553":{"renderedLength":5084,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-552"},"af9a1c3d-555":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-554"},"af9a1c3d-557":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-556"},"af9a1c3d-559":{"renderedLength":4038,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-558"},"af9a1c3d-561":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-560"},"af9a1c3d-563":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-562"},"af9a1c3d-565":{"renderedLength":26981,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-564"},"af9a1c3d-567":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-566"},"af9a1c3d-569":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-568"},"af9a1c3d-571":{"renderedLength":10850,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-570"},"af9a1c3d-573":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-572"},"af9a1c3d-575":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-574"},"af9a1c3d-577":{"renderedLength":14113,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-576"},"af9a1c3d-579":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-578"},"af9a1c3d-581":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-580"},"af9a1c3d-583":{"renderedLength":5696,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-582"},"af9a1c3d-585":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-584"},"af9a1c3d-587":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-586"},"af9a1c3d-589":{"renderedLength":9049,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-588"},"af9a1c3d-591":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-590"},"af9a1c3d-593":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-592"},"af9a1c3d-595":{"renderedLength":11970,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-594"},"af9a1c3d-597":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-596"},"af9a1c3d-599":{"renderedLength":6533,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-598"},"af9a1c3d-601":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-600"},"af9a1c3d-603":{"renderedLength":3576,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-602"},"af9a1c3d-605":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-604"},"af9a1c3d-607":{"renderedLength":2670,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-606"},"af9a1c3d-609":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-608"},"af9a1c3d-611":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-610"},"af9a1c3d-613":{"renderedLength":9787,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-612"},"af9a1c3d-615":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-614"},"af9a1c3d-617":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-616"},"af9a1c3d-619":{"renderedLength":5747,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-618"},"af9a1c3d-621":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-620"},"af9a1c3d-623":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-622"},"af9a1c3d-625":{"renderedLength":12586,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-624"},"af9a1c3d-627":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-626"},"af9a1c3d-629":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-628"},"af9a1c3d-631":{"renderedLength":7128,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-630"},"af9a1c3d-633":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-632"},"af9a1c3d-635":{"renderedLength":4098,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-634"},"af9a1c3d-637":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-636"},"af9a1c3d-639":{"renderedLength":2806,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-638"},"af9a1c3d-641":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-640"},"af9a1c3d-643":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-642"},"af9a1c3d-645":{"renderedLength":4058,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-644"},"af9a1c3d-647":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-646"},"af9a1c3d-649":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-648"},"af9a1c3d-651":{"renderedLength":3296,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-650"},"af9a1c3d-653":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-652"},"af9a1c3d-655":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-654"},"af9a1c3d-657":{"renderedLength":2507,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-656"},"af9a1c3d-659":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-658"},"af9a1c3d-661":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-660"},"af9a1c3d-663":{"renderedLength":5769,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-662"},"af9a1c3d-665":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-664"},"af9a1c3d-667":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-666"},"af9a1c3d-669":{"renderedLength":2815,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-668"},"af9a1c3d-671":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-670"},"af9a1c3d-673":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-672"},"af9a1c3d-675":{"renderedLength":2603,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-674"},"af9a1c3d-677":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-676"},"af9a1c3d-679":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-678"},"af9a1c3d-681":{"renderedLength":5260,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-680"},"af9a1c3d-683":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-682"},"af9a1c3d-685":{"renderedLength":7122,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-684"},"af9a1c3d-687":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-686"},"af9a1c3d-689":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-688"},"af9a1c3d-691":{"renderedLength":7024,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-690"},"af9a1c3d-693":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-692"},"af9a1c3d-695":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-694"},"af9a1c3d-697":{"renderedLength":2880,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-696"},"af9a1c3d-699":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"af9a1c3d-698"}},"nodeMetas":{"af9a1c3d-0":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages-json-js","moduleParts":{"app.js":"af9a1c3d-1"},"imported":[{"uid":"af9a1c3d-700"},{"uid":"af9a1c3d-376","dynamic":true},{"uid":"af9a1c3d-382","dynamic":true},{"uid":"af9a1c3d-388","dynamic":true},{"uid":"af9a1c3d-394","dynamic":true},{"uid":"af9a1c3d-400","dynamic":true},{"uid":"af9a1c3d-406","dynamic":true},{"uid":"af9a1c3d-412","dynamic":true},{"uid":"af9a1c3d-418","dynamic":true},{"uid":"af9a1c3d-424","dynamic":true},{"uid":"af9a1c3d-430","dynamic":true},{"uid":"af9a1c3d-434","dynamic":true},{"uid":"af9a1c3d-440","dynamic":true},{"uid":"af9a1c3d-446","dynamic":true},{"uid":"af9a1c3d-452","dynamic":true},{"uid":"af9a1c3d-458","dynamic":true},{"uid":"af9a1c3d-464","dynamic":true},{"uid":"af9a1c3d-470","dynamic":true},{"uid":"af9a1c3d-476","dynamic":true},{"uid":"af9a1c3d-482","dynamic":true},{"uid":"af9a1c3d-488","dynamic":true},{"uid":"af9a1c3d-494","dynamic":true},{"uid":"af9a1c3d-500","dynamic":true},{"uid":"af9a1c3d-506","dynamic":true},{"uid":"af9a1c3d-512","dynamic":true},{"uid":"af9a1c3d-518","dynamic":true},{"uid":"af9a1c3d-524","dynamic":true}],"importedBy":[{"uid":"af9a1c3d-6"}]},"af9a1c3d-2":{"id":"D:/zcweb/uniapp/temporaryworker/src/App.vue?vue&type=style&index=0&lang.scss","moduleParts":{"app.js":"af9a1c3d-3"},"imported":[],"importedBy":[{"uid":"af9a1c3d-4"}]},"af9a1c3d-4":{"id":"D:/zcweb/uniapp/temporaryworker/src/App.vue","moduleParts":{"app.js":"af9a1c3d-5"},"imported":[{"uid":"af9a1c3d-28"},{"uid":"af9a1c3d-2"},{"uid":"af9a1c3d-40"}],"importedBy":[{"uid":"af9a1c3d-6"}]},"af9a1c3d-6":{"id":"D:/zcweb/uniapp/temporaryworker/src/main.ts","moduleParts":{"app.js":"af9a1c3d-7"},"imported":[{"uid":"af9a1c3d-38"},{"uid":"af9a1c3d-40"},{"uid":"af9a1c3d-44"},{"uid":"af9a1c3d-0"},{"uid":"af9a1c3d-4"},{"uid":"af9a1c3d-76"},{"uid":"af9a1c3d-28"},{"uid":"af9a1c3d-72"},{"uid":"af9a1c3d-70"},{"uid":"af9a1c3d-68"},{"uid":"af9a1c3d-74"},{"uid":"af9a1c3d-66"},{"uid":"af9a1c3d-26"},{"uid":"af9a1c3d-22"},{"uid":"af9a1c3d-20"},{"uid":"af9a1c3d-366"},{"uid":"af9a1c3d-24"},{"uid":"af9a1c3d-42"},{"uid":"af9a1c3d-62"},{"uid":"af9a1c3d-30"}],"importedBy":[],"isEntry":true},"af9a1c3d-8":{"id":"D:/zcweb/uniapp/temporaryworker/src/static/logo.png","moduleParts":{"common/assets.js":"af9a1c3d-9"},"imported":[],"importedBy":[{"uid":"af9a1c3d-386"}]},"af9a1c3d-10":{"id":"D:/zcweb/uniapp/temporaryworker/src/static/image/fabu.png","moduleParts":{"common/assets.js":"af9a1c3d-11"},"imported":[],"importedBy":[{"uid":"af9a1c3d-398"}]},"af9a1c3d-12":{"id":"D:/zcweb/uniapp/temporaryworker/src/static/image/guanli.png","moduleParts":{"common/assets.js":"af9a1c3d-13"},"imported":[],"importedBy":[{"uid":"af9a1c3d-398"}]},"af9a1c3d-14":{"id":"D:/zcweb/uniapp/temporaryworker/src/static/image/qiye.png","moduleParts":{"common/assets.js":"af9a1c3d-15"},"imported":[],"importedBy":[{"uid":"af9a1c3d-398"}]},"af9a1c3d-16":{"id":"D:/zcweb/uniapp/temporaryworker/src/static/image/record.png","moduleParts":{"common/assets.js":"af9a1c3d-17"},"imported":[],"importedBy":[{"uid":"af9a1c3d-398"}]},"af9a1c3d-18":{"id":"D:/zcweb/uniapp/temporaryworker/src/static/image/dingwei.png","moduleParts":{"common/assets.js":"af9a1c3d-19"},"imported":[],"importedBy":[{"uid":"af9a1c3d-468"}]},"af9a1c3d-20":{"id":"D:/zcweb/uniapp/temporaryworker/src/common/locales/en.js","moduleParts":{"common/locales/en.js":"af9a1c3d-21"},"imported":[],"importedBy":[{"uid":"af9a1c3d-6"}]},"af9a1c3d-22":{"id":"D:/zcweb/uniapp/temporaryworker/src/common/locales/zh.js","moduleParts":{"common/locales/zh.js":"af9a1c3d-23"},"imported":[],"importedBy":[{"uid":"af9a1c3d-6"}]},"af9a1c3d-24":{"id":"D:/zcweb/uniapp/temporaryworker/src/common/mixin.js","moduleParts":{"common/mixin.js":"af9a1c3d-25"},"imported":[],"importedBy":[{"uid":"af9a1c3d-6"}]},"af9a1c3d-26":{"id":"D:/zcweb/uniapp/temporaryworker/src/common/request/http.api.js","moduleParts":{"common/request/http.api.js":"af9a1c3d-27"},"imported":[{"uid":"af9a1c3d-28"}],"importedBy":[{"uid":"af9a1c3d-6"}]},"af9a1c3d-28":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/index.js","moduleParts":{"uni_modules/uview-plus/index.js":"af9a1c3d-29"},"imported":[{"uid":"af9a1c3d-38"},{"uid":"af9a1c3d-138"},{"uid":"af9a1c3d-140"},{"uid":"af9a1c3d-362"},{"uid":"af9a1c3d-144"},{"uid":"af9a1c3d-146"},{"uid":"af9a1c3d-86"},{"uid":"af9a1c3d-148"},{"uid":"af9a1c3d-150"},{"uid":"af9a1c3d-130"},{"uid":"af9a1c3d-152"},{"uid":"af9a1c3d-84"},{"uid":"af9a1c3d-154"},{"uid":"af9a1c3d-156"},{"uid":"af9a1c3d-158"}],"importedBy":[{"uid":"af9a1c3d-6"},{"uid":"af9a1c3d-4"},{"uid":"af9a1c3d-26"},{"uid":"af9a1c3d-30"}]},"af9a1c3d-30":{"id":"D:/zcweb/uniapp/temporaryworker/src/common/request/request.js","moduleParts":{"common/request/request.js":"af9a1c3d-31"},"imported":[{"uid":"af9a1c3d-38"},{"uid":"af9a1c3d-28"},{"uid":"af9a1c3d-66"},{"uid":"af9a1c3d-68"}],"importedBy":[{"uid":"af9a1c3d-6"}]},"af9a1c3d-32":{"id":"\\node_modules\\@vue\\shared\\dist\\shared.esm-bundler.js","moduleParts":{"common/vendor.js":"af9a1c3d-33"},"imported":[],"importedBy":[{"uid":"af9a1c3d-38"},{"uid":"af9a1c3d-44"},{"uid":"af9a1c3d-42"},{"uid":"af9a1c3d-36"},{"uid":"af9a1c3d-64"}]},"af9a1c3d-34":{"id":"\\node_modules\\@dcloudio\\uni-i18n\\dist\\uni-i18n.es.js","moduleParts":{"common/vendor.js":"af9a1c3d-35"},"imported":[{"uid":"af9a1c3d-38"}],"importedBy":[{"uid":"af9a1c3d-38"},{"uid":"af9a1c3d-44"}]},"af9a1c3d-36":{"id":"\\node_modules\\@dcloudio\\uni-shared\\dist\\uni-shared.es.js","moduleParts":{"common/vendor.js":"af9a1c3d-37"},"imported":[{"uid":"af9a1c3d-32"}],"importedBy":[{"uid":"af9a1c3d-38"},{"uid":"af9a1c3d-44"},{"uid":"af9a1c3d-42"},{"uid":"af9a1c3d-64"}]},"af9a1c3d-38":{"id":"D:/zcweb/uniapp/temporaryworker/node_modules/@dcloudio/uni-mp-weixin/dist/uni.api.esm.js","moduleParts":{"common/vendor.js":"af9a1c3d-39"},"imported":[{"uid":"af9a1c3d-32"},{"uid":"af9a1c3d-34"},{"uid":"af9a1c3d-36"}],"importedBy":[{"uid":"af9a1c3d-6"},{"uid":"af9a1c3d-28"},{"uid":"af9a1c3d-72"},{"uid":"af9a1c3d-70"},{"uid":"af9a1c3d-68"},{"uid":"af9a1c3d-74"},{"uid":"af9a1c3d-42"},{"uid":"af9a1c3d-30"},{"uid":"af9a1c3d-34"},{"uid":"af9a1c3d-138"},{"uid":"af9a1c3d-144"},{"uid":"af9a1c3d-130"},{"uid":"af9a1c3d-374"},{"uid":"af9a1c3d-380"},{"uid":"af9a1c3d-386"},{"uid":"af9a1c3d-392"},{"uid":"af9a1c3d-398"},{"uid":"af9a1c3d-404"},{"uid":"af9a1c3d-410"},{"uid":"af9a1c3d-416"},{"uid":"af9a1c3d-438"},{"uid":"af9a1c3d-444"},{"uid":"af9a1c3d-450"},{"uid":"af9a1c3d-456"},{"uid":"af9a1c3d-462"},{"uid":"af9a1c3d-474"},{"uid":"af9a1c3d-480"},{"uid":"af9a1c3d-486"},{"uid":"af9a1c3d-492"},{"uid":"af9a1c3d-498"},{"uid":"af9a1c3d-504"},{"uid":"af9a1c3d-510"},{"uid":"af9a1c3d-64"},{"uid":"af9a1c3d-534"},{"uid":"af9a1c3d-540"},{"uid":"af9a1c3d-564"},{"uid":"af9a1c3d-570"},{"uid":"af9a1c3d-624"},{"uid":"af9a1c3d-630"},{"uid":"af9a1c3d-638"},{"uid":"af9a1c3d-644"},{"uid":"af9a1c3d-338"},{"uid":"af9a1c3d-690"},{"uid":"af9a1c3d-78"},{"uid":"af9a1c3d-696"}]},"af9a1c3d-40":{"id":"\u0000plugin-vue:export-helper","moduleParts":{"common/vendor.js":"af9a1c3d-41"},"imported":[],"importedBy":[{"uid":"af9a1c3d-6"},{"uid":"af9a1c3d-4"},{"uid":"af9a1c3d-374"},{"uid":"af9a1c3d-380"},{"uid":"af9a1c3d-386"},{"uid":"af9a1c3d-392"},{"uid":"af9a1c3d-398"},{"uid":"af9a1c3d-404"},{"uid":"af9a1c3d-410"},{"uid":"af9a1c3d-416"},{"uid":"af9a1c3d-422"},{"uid":"af9a1c3d-428"},{"uid":"af9a1c3d-432"},{"uid":"af9a1c3d-438"},{"uid":"af9a1c3d-444"},{"uid":"af9a1c3d-450"},{"uid":"af9a1c3d-456"},{"uid":"af9a1c3d-462"},{"uid":"af9a1c3d-468"},{"uid":"af9a1c3d-474"},{"uid":"af9a1c3d-480"},{"uid":"af9a1c3d-486"},{"uid":"af9a1c3d-492"},{"uid":"af9a1c3d-498"},{"uid":"af9a1c3d-504"},{"uid":"af9a1c3d-510"},{"uid":"af9a1c3d-516"},{"uid":"af9a1c3d-522"},{"uid":"af9a1c3d-528"},{"uid":"af9a1c3d-534"},{"uid":"af9a1c3d-540"},{"uid":"af9a1c3d-546"},{"uid":"af9a1c3d-552"},{"uid":"af9a1c3d-558"},{"uid":"af9a1c3d-564"},{"uid":"af9a1c3d-570"},{"uid":"af9a1c3d-576"},{"uid":"af9a1c3d-582"},{"uid":"af9a1c3d-588"},{"uid":"af9a1c3d-594"},{"uid":"af9a1c3d-598"},{"uid":"af9a1c3d-606"},{"uid":"af9a1c3d-612"},{"uid":"af9a1c3d-618"},{"uid":"af9a1c3d-624"},{"uid":"af9a1c3d-630"},{"uid":"af9a1c3d-638"},{"uid":"af9a1c3d-644"},{"uid":"af9a1c3d-650"},{"uid":"af9a1c3d-656"},{"uid":"af9a1c3d-662"},{"uid":"af9a1c3d-668"},{"uid":"af9a1c3d-674"},{"uid":"af9a1c3d-680"},{"uid":"af9a1c3d-684"},{"uid":"af9a1c3d-690"},{"uid":"af9a1c3d-696"}]},"af9a1c3d-42":{"id":"D:/zcweb/uniapp/temporaryworker/node_modules/@dcloudio/uni-mp-vue/dist/vue.runtime.esm.js","moduleParts":{"common/vendor.js":"af9a1c3d-43"},"imported":[{"uid":"af9a1c3d-38"},{"uid":"af9a1c3d-36"},{"uid":"af9a1c3d-32"}],"importedBy":[{"uid":"af9a1c3d-6"},{"uid":"af9a1c3d-44"},{"uid":"af9a1c3d-62"},{"uid":"af9a1c3d-46"},{"uid":"af9a1c3d-374"},{"uid":"af9a1c3d-380"},{"uid":"af9a1c3d-386"},{"uid":"af9a1c3d-392"},{"uid":"af9a1c3d-398"},{"uid":"af9a1c3d-404"},{"uid":"af9a1c3d-410"},{"uid":"af9a1c3d-416"},{"uid":"af9a1c3d-422"},{"uid":"af9a1c3d-438"},{"uid":"af9a1c3d-444"},{"uid":"af9a1c3d-450"},{"uid":"af9a1c3d-456"},{"uid":"af9a1c3d-462"},{"uid":"af9a1c3d-468"},{"uid":"af9a1c3d-474"},{"uid":"af9a1c3d-480"},{"uid":"af9a1c3d-486"},{"uid":"af9a1c3d-492"},{"uid":"af9a1c3d-498"},{"uid":"af9a1c3d-504"},{"uid":"af9a1c3d-510"},{"uid":"af9a1c3d-516"},{"uid":"af9a1c3d-522"},{"uid":"af9a1c3d-64"},{"uid":"af9a1c3d-528"},{"uid":"af9a1c3d-534"},{"uid":"af9a1c3d-540"},{"uid":"af9a1c3d-546"},{"uid":"af9a1c3d-552"},{"uid":"af9a1c3d-558"},{"uid":"af9a1c3d-564"},{"uid":"af9a1c3d-570"},{"uid":"af9a1c3d-576"},{"uid":"af9a1c3d-582"},{"uid":"af9a1c3d-588"},{"uid":"af9a1c3d-594"},{"uid":"af9a1c3d-606"},{"uid":"af9a1c3d-612"},{"uid":"af9a1c3d-618"},{"uid":"af9a1c3d-624"},{"uid":"af9a1c3d-630"},{"uid":"af9a1c3d-638"},{"uid":"af9a1c3d-644"},{"uid":"af9a1c3d-650"},{"uid":"af9a1c3d-656"},{"uid":"af9a1c3d-662"},{"uid":"af9a1c3d-668"},{"uid":"af9a1c3d-674"},{"uid":"af9a1c3d-680"},{"uid":"af9a1c3d-684"},{"uid":"af9a1c3d-690"},{"uid":"af9a1c3d-136"},{"uid":"af9a1c3d-696"}]},"af9a1c3d-44":{"id":"D:/zcweb/uniapp/temporaryworker/node_modules/@dcloudio/uni-mp-weixin/dist/uni.mp.esm.js","moduleParts":{"common/vendor.js":"af9a1c3d-45"},"imported":[{"uid":"af9a1c3d-36"},{"uid":"af9a1c3d-32"},{"uid":"af9a1c3d-42"},{"uid":"af9a1c3d-34"}],"importedBy":[{"uid":"af9a1c3d-6"}]},"af9a1c3d-46":{"id":"\\node_modules\\vuex\\dist\\vuex.esm-bundler.js","moduleParts":{"common/vendor.js":"af9a1c3d-47"},"imported":[{"uid":"af9a1c3d-42"}],"importedBy":[{"uid":"af9a1c3d-76"},{"uid":"af9a1c3d-392"}]},"af9a1c3d-48":{"id":"D:/zcweb/uniapp/temporaryworker/node_modules/@intlify/shared/dist/shared.esm-bundler.js","moduleParts":{"common/vendor.js":"af9a1c3d-49"},"imported":[],"importedBy":[{"uid":"af9a1c3d-62"},{"uid":"af9a1c3d-58"},{"uid":"af9a1c3d-52"},{"uid":"af9a1c3d-54"}]},"af9a1c3d-50":{"id":"D:/zcweb/uniapp/temporaryworker/node_modules/@intlify/message-resolver/dist/message-resolver.esm-bundler.js","moduleParts":{"common/vendor.js":"af9a1c3d-51"},"imported":[],"importedBy":[{"uid":"af9a1c3d-58"}]},"af9a1c3d-52":{"id":"D:/zcweb/uniapp/temporaryworker/node_modules/@intlify/runtime/dist/runtime.esm-bundler.js","moduleParts":{"common/vendor.js":"af9a1c3d-53"},"imported":[{"uid":"af9a1c3d-48"}],"importedBy":[{"uid":"af9a1c3d-58"}]},"af9a1c3d-54":{"id":"D:/zcweb/uniapp/temporaryworker/node_modules/@intlify/message-compiler/dist/message-compiler.esm-bundler.js","moduleParts":{"common/vendor.js":"af9a1c3d-55"},"imported":[{"uid":"af9a1c3d-48"}],"importedBy":[{"uid":"af9a1c3d-58"}]},"af9a1c3d-56":{"id":"D:/zcweb/uniapp/temporaryworker/node_modules/@intlify/devtools-if/dist/devtools-if.esm-bundler.js","moduleParts":{"common/vendor.js":"af9a1c3d-57"},"imported":[],"importedBy":[{"uid":"af9a1c3d-58"}]},"af9a1c3d-58":{"id":"D:/zcweb/uniapp/temporaryworker/node_modules/@intlify/core-base/dist/core-base.esm-bundler.js","moduleParts":{"common/vendor.js":"af9a1c3d-59"},"imported":[{"uid":"af9a1c3d-48"},{"uid":"af9a1c3d-50"},{"uid":"af9a1c3d-52"},{"uid":"af9a1c3d-54"},{"uid":"af9a1c3d-56"}],"importedBy":[{"uid":"af9a1c3d-62"}]},"af9a1c3d-60":{"id":"D:/zcweb/uniapp/temporaryworker/node_modules/@intlify/vue-devtools/dist/vue-devtools.esm-bundler.js","moduleParts":{"common/vendor.js":"af9a1c3d-61"},"imported":[],"importedBy":[{"uid":"af9a1c3d-62"}]},"af9a1c3d-62":{"id":"D:/zcweb/uniapp/temporaryworker/node_modules/@dcloudio/uni-cli-shared/lib/vue-i18n/dist/vue-i18n.runtime.esm-bundler.js","moduleParts":{"common/vendor.js":"af9a1c3d-63"},"imported":[{"uid":"af9a1c3d-48"},{"uid":"af9a1c3d-58"},{"uid":"af9a1c3d-42"},{"uid":"af9a1c3d-60"}],"importedBy":[{"uid":"af9a1c3d-6"}]},"af9a1c3d-64":{"id":"\\node_modules\\@dcloudio\\uni-app\\dist\\uni-app.es.js","moduleParts":{"common/vendor.js":"af9a1c3d-65"},"imported":[{"uid":"af9a1c3d-38"},{"uid":"af9a1c3d-42"},{"uid":"af9a1c3d-32"},{"uid":"af9a1c3d-36"}],"importedBy":[{"uid":"af9a1c3d-380"},{"uid":"af9a1c3d-392"},{"uid":"af9a1c3d-404"},{"uid":"af9a1c3d-410"},{"uid":"af9a1c3d-456"},{"uid":"af9a1c3d-462"},{"uid":"af9a1c3d-474"},{"uid":"af9a1c3d-480"},{"uid":"af9a1c3d-492"}]},"af9a1c3d-66":{"id":"D:/zcweb/uniapp/temporaryworker/src/common/setting/constVarsHelper.js","moduleParts":{"common/setting/constVarsHelper.js":"af9a1c3d-67"},"imported":[],"importedBy":[{"uid":"af9a1c3d-6"},{"uid":"af9a1c3d-72"},{"uid":"af9a1c3d-30"},{"uid":"af9a1c3d-404"},{"uid":"af9a1c3d-410"},{"uid":"af9a1c3d-444"},{"uid":"af9a1c3d-462"}]},"af9a1c3d-68":{"id":"D:/zcweb/uniapp/temporaryworker/src/common/utils/dbHelper.js","moduleParts":{"common/utils/dbHelper.js":"af9a1c3d-69"},"imported":[{"uid":"af9a1c3d-38"}],"importedBy":[{"uid":"af9a1c3d-6"},{"uid":"af9a1c3d-72"},{"uid":"af9a1c3d-30"}]},"af9a1c3d-70":{"id":"D:/zcweb/uniapp/temporaryworker/src/common/utils/commonHelper.js","moduleParts":{"common/utils/commonHelper.js":"af9a1c3d-71"},"imported":[{"uid":"af9a1c3d-38"}],"importedBy":[{"uid":"af9a1c3d-6"}]},"af9a1c3d-72":{"id":"D:/zcweb/uniapp/temporaryworker/src/common/utils/uploadHelper.js","moduleParts":{"common/utils/uploadHelper.js":"af9a1c3d-73"},"imported":[{"uid":"af9a1c3d-38"},{"uid":"af9a1c3d-66"},{"uid":"af9a1c3d-68"}],"importedBy":[{"uid":"af9a1c3d-6"}]},"af9a1c3d-74":{"id":"D:/zcweb/uniapp/temporaryworker/src/common/utils/util.js","moduleParts":{"common/utils/util.js":"af9a1c3d-75"},"imported":[{"uid":"af9a1c3d-38"}],"importedBy":[{"uid":"af9a1c3d-6"}]},"af9a1c3d-76":{"id":"D:/zcweb/uniapp/temporaryworker/src/store/index.js","moduleParts":{"store/index.js":"af9a1c3d-77"},"imported":[{"uid":"af9a1c3d-46"}],"importedBy":[{"uid":"af9a1c3d-6"}]},"af9a1c3d-78":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uni-transition/components/uni-transition/createAnimation.js","moduleParts":{"uni_modules/uni-transition/components/uni-transition/createAnimation.js":"af9a1c3d-79"},"imported":[{"uid":"af9a1c3d-38"}],"importedBy":[{"uid":"af9a1c3d-684"}]},"af9a1c3d-80":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-avatar/props.js","moduleParts":{"uni_modules/uview-plus/components/u-avatar/props.js":"af9a1c3d-81"},"imported":[{"uid":"af9a1c3d-82"},{"uid":"af9a1c3d-84"},{"uid":"af9a1c3d-86"}],"importedBy":[{"uid":"af9a1c3d-612"}]},"af9a1c3d-82":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/vue.js","moduleParts":{"uni_modules/uview-plus/libs/vue.js":"af9a1c3d-83"},"imported":[],"importedBy":[{"uid":"af9a1c3d-366"},{"uid":"af9a1c3d-138"},{"uid":"af9a1c3d-140"},{"uid":"af9a1c3d-100"},{"uid":"af9a1c3d-118"},{"uid":"af9a1c3d-120"},{"uid":"af9a1c3d-124"},{"uid":"af9a1c3d-114"},{"uid":"af9a1c3d-92"},{"uid":"af9a1c3d-102"},{"uid":"af9a1c3d-94"},{"uid":"af9a1c3d-132"},{"uid":"af9a1c3d-116"},{"uid":"af9a1c3d-96"},{"uid":"af9a1c3d-80"},{"uid":"af9a1c3d-90"},{"uid":"af9a1c3d-122"},{"uid":"af9a1c3d-108"},{"uid":"af9a1c3d-110"},{"uid":"af9a1c3d-364"},{"uid":"af9a1c3d-368"},{"uid":"af9a1c3d-88"},{"uid":"af9a1c3d-134"},{"uid":"af9a1c3d-104"},{"uid":"af9a1c3d-112"},{"uid":"af9a1c3d-126"},{"uid":"af9a1c3d-106"}]},"af9a1c3d-84":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props.js","moduleParts":{"uni_modules/uview-plus/libs/config/props.js":"af9a1c3d-85"},"imported":[{"uid":"af9a1c3d-152"},{"uid":"af9a1c3d-160"},{"uid":"af9a1c3d-162"},{"uid":"af9a1c3d-164"},{"uid":"af9a1c3d-166"},{"uid":"af9a1c3d-168"},{"uid":"af9a1c3d-170"},{"uid":"af9a1c3d-172"},{"uid":"af9a1c3d-174"},{"uid":"af9a1c3d-176"},{"uid":"af9a1c3d-178"},{"uid":"af9a1c3d-180"},{"uid":"af9a1c3d-182"},{"uid":"af9a1c3d-184"},{"uid":"af9a1c3d-186"},{"uid":"af9a1c3d-188"},{"uid":"af9a1c3d-190"},{"uid":"af9a1c3d-192"},{"uid":"af9a1c3d-194"},{"uid":"af9a1c3d-196"},{"uid":"af9a1c3d-198"},{"uid":"af9a1c3d-200"},{"uid":"af9a1c3d-202"},{"uid":"af9a1c3d-204"},{"uid":"af9a1c3d-206"},{"uid":"af9a1c3d-208"},{"uid":"af9a1c3d-210"},{"uid":"af9a1c3d-212"},{"uid":"af9a1c3d-214"},{"uid":"af9a1c3d-216"},{"uid":"af9a1c3d-218"},{"uid":"af9a1c3d-220"},{"uid":"af9a1c3d-222"},{"uid":"af9a1c3d-224"},{"uid":"af9a1c3d-226"},{"uid":"af9a1c3d-228"},{"uid":"af9a1c3d-230"},{"uid":"af9a1c3d-232"},{"uid":"af9a1c3d-234"},{"uid":"af9a1c3d-236"},{"uid":"af9a1c3d-238"},{"uid":"af9a1c3d-240"},{"uid":"af9a1c3d-242"},{"uid":"af9a1c3d-244"},{"uid":"af9a1c3d-246"},{"uid":"af9a1c3d-248"},{"uid":"af9a1c3d-250"},{"uid":"af9a1c3d-252"},{"uid":"af9a1c3d-254"},{"uid":"af9a1c3d-256"},{"uid":"af9a1c3d-258"},{"uid":"af9a1c3d-260"},{"uid":"af9a1c3d-262"},{"uid":"af9a1c3d-264"},{"uid":"af9a1c3d-266"},{"uid":"af9a1c3d-268"},{"uid":"af9a1c3d-270"},{"uid":"af9a1c3d-272"},{"uid":"af9a1c3d-274"},{"uid":"af9a1c3d-276"},{"uid":"af9a1c3d-278"},{"uid":"af9a1c3d-280"},{"uid":"af9a1c3d-282"},{"uid":"af9a1c3d-284"},{"uid":"af9a1c3d-286"},{"uid":"af9a1c3d-288"},{"uid":"af9a1c3d-290"},{"uid":"af9a1c3d-292"},{"uid":"af9a1c3d-294"},{"uid":"af9a1c3d-296"},{"uid":"af9a1c3d-298"},{"uid":"af9a1c3d-300"},{"uid":"af9a1c3d-302"},{"uid":"af9a1c3d-304"},{"uid":"af9a1c3d-306"},{"uid":"af9a1c3d-308"},{"uid":"af9a1c3d-310"},{"uid":"af9a1c3d-312"},{"uid":"af9a1c3d-314"},{"uid":"af9a1c3d-316"},{"uid":"af9a1c3d-318"},{"uid":"af9a1c3d-320"},{"uid":"af9a1c3d-322"},{"uid":"af9a1c3d-324"},{"uid":"af9a1c3d-326"},{"uid":"af9a1c3d-328"},{"uid":"af9a1c3d-330"},{"uid":"af9a1c3d-332"},{"uid":"af9a1c3d-334"}],"importedBy":[{"uid":"af9a1c3d-28"},{"uid":"af9a1c3d-582"},{"uid":"af9a1c3d-100"},{"uid":"af9a1c3d-118"},{"uid":"af9a1c3d-120"},{"uid":"af9a1c3d-124"},{"uid":"af9a1c3d-114"},{"uid":"af9a1c3d-92"},{"uid":"af9a1c3d-102"},{"uid":"af9a1c3d-94"},{"uid":"af9a1c3d-132"},{"uid":"af9a1c3d-116"},{"uid":"af9a1c3d-96"},{"uid":"af9a1c3d-80"},{"uid":"af9a1c3d-90"},{"uid":"af9a1c3d-122"},{"uid":"af9a1c3d-108"},{"uid":"af9a1c3d-110"},{"uid":"af9a1c3d-88"},{"uid":"af9a1c3d-134"},{"uid":"af9a1c3d-104"},{"uid":"af9a1c3d-112"},{"uid":"af9a1c3d-126"},{"uid":"af9a1c3d-106"}]},"af9a1c3d-86":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/function/test.js","moduleParts":{"uni_modules/uview-plus/libs/function/test.js":"af9a1c3d-87"},"imported":[],"importedBy":[{"uid":"af9a1c3d-28"},{"uid":"af9a1c3d-138"},{"uid":"af9a1c3d-130"},{"uid":"af9a1c3d-546"},{"uid":"af9a1c3d-598"},{"uid":"af9a1c3d-618"},{"uid":"af9a1c3d-80"},{"uid":"af9a1c3d-128"}]},"af9a1c3d-88":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-button/props.js","moduleParts":{"uni_modules/uview-plus/components/u-button/props.js":"af9a1c3d-89"},"imported":[{"uid":"af9a1c3d-82"},{"uid":"af9a1c3d-84"}],"importedBy":[{"uid":"af9a1c3d-602"}]},"af9a1c3d-90":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-cell/props.js","moduleParts":{"uni_modules/uview-plus/components/u-cell/props.js":"af9a1c3d-91"},"imported":[{"uid":"af9a1c3d-82"},{"uid":"af9a1c3d-84"}],"importedBy":[{"uid":"af9a1c3d-618"}]},"af9a1c3d-92":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-empty/props.js","moduleParts":{"uni_modules/uview-plus/components/u-empty/props.js":"af9a1c3d-93"},"imported":[{"uid":"af9a1c3d-82"},{"uid":"af9a1c3d-84"}],"importedBy":[{"uid":"af9a1c3d-558"}]},"af9a1c3d-94":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-form-item/props.js","moduleParts":{"uni_modules/uview-plus/components/u-form-item/props.js":"af9a1c3d-95"},"imported":[{"uid":"af9a1c3d-82"},{"uid":"af9a1c3d-84"}],"importedBy":[{"uid":"af9a1c3d-582"}]},"af9a1c3d-96":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-form/props.js","moduleParts":{"uni_modules/uview-plus/components/u-form/props.js":"af9a1c3d-97"},"imported":[{"uid":"af9a1c3d-82"},{"uid":"af9a1c3d-84"}],"importedBy":[{"uid":"af9a1c3d-598"}]},"af9a1c3d-98":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-icon/icons.js","moduleParts":{"uni_modules/uview-plus/components/u-icon/icons.js":"af9a1c3d-99"},"imported":[],"importedBy":[{"uid":"af9a1c3d-528"}]},"af9a1c3d-100":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-icon/props.js","moduleParts":{"uni_modules/uview-plus/components/u-icon/props.js":"af9a1c3d-101"},"imported":[{"uid":"af9a1c3d-82"},{"uid":"af9a1c3d-84"}],"importedBy":[{"uid":"af9a1c3d-528"}]},"af9a1c3d-102":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-input/props.js","moduleParts":{"uni_modules/uview-plus/components/u-input/props.js":"af9a1c3d-103"},"imported":[{"uid":"af9a1c3d-82"},{"uid":"af9a1c3d-84"}],"importedBy":[{"uid":"af9a1c3d-576"}]},"af9a1c3d-104":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-line/props.js","moduleParts":{"uni_modules/uview-plus/components/u-line/props.js":"af9a1c3d-105"},"imported":[{"uid":"af9a1c3d-82"},{"uid":"af9a1c3d-84"}],"importedBy":[{"uid":"af9a1c3d-674"}]},"af9a1c3d-106":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-link/props.js","moduleParts":{"uni_modules/uview-plus/components/u-link/props.js":"af9a1c3d-107"},"imported":[{"uid":"af9a1c3d-82"},{"uid":"af9a1c3d-84"}],"importedBy":[{"uid":"af9a1c3d-696"}]},"af9a1c3d-108":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-list-item/props.js","moduleParts":{"uni_modules/uview-plus/components/u-list-item/props.js":"af9a1c3d-109"},"imported":[{"uid":"af9a1c3d-82"},{"uid":"af9a1c3d-84"}],"importedBy":[{"uid":"af9a1c3d-656"}]},"af9a1c3d-110":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-list/props.js","moduleParts":{"uni_modules/uview-plus/components/u-list/props.js":"af9a1c3d-111"},"imported":[{"uid":"af9a1c3d-82"},{"uid":"af9a1c3d-84"}],"importedBy":[{"uid":"af9a1c3d-662"}]},"af9a1c3d-112":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-loading-icon/props.js","moduleParts":{"uni_modules/uview-plus/components/u-loading-icon/props.js":"af9a1c3d-113"},"imported":[{"uid":"af9a1c3d-82"},{"uid":"af9a1c3d-84"}],"importedBy":[{"uid":"af9a1c3d-680"}]},"af9a1c3d-114":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-loadmore/props.js","moduleParts":{"uni_modules/uview-plus/components/u-loadmore/props.js":"af9a1c3d-115"},"imported":[{"uid":"af9a1c3d-82"},{"uid":"af9a1c3d-84"}],"importedBy":[{"uid":"af9a1c3d-552"}]},"af9a1c3d-116":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-number-box/props.js","moduleParts":{"uni_modules/uview-plus/components/u-number-box/props.js":"af9a1c3d-117"},"imported":[{"uid":"af9a1c3d-82"},{"uid":"af9a1c3d-84"}],"importedBy":[{"uid":"af9a1c3d-594"}]},"af9a1c3d-118":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-search/props.js","moduleParts":{"uni_modules/uview-plus/components/u-search/props.js":"af9a1c3d-119"},"imported":[{"uid":"af9a1c3d-82"},{"uid":"af9a1c3d-84"}],"importedBy":[{"uid":"af9a1c3d-534"}]},"af9a1c3d-120":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-sticky/props.js","moduleParts":{"uni_modules/uview-plus/components/u-sticky/props.js":"af9a1c3d-121"},"imported":[{"uid":"af9a1c3d-82"},{"uid":"af9a1c3d-84"}],"importedBy":[{"uid":"af9a1c3d-540"}]},"af9a1c3d-122":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-subsection/props.js","moduleParts":{"uni_modules/uview-plus/components/u-subsection/props.js":"af9a1c3d-123"},"imported":[{"uid":"af9a1c3d-82"},{"uid":"af9a1c3d-84"}],"importedBy":[{"uid":"af9a1c3d-630"}]},"af9a1c3d-124":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-tag/props.js","moduleParts":{"uni_modules/uview-plus/components/u-tag/props.js":"af9a1c3d-125"},"imported":[{"uid":"af9a1c3d-82"},{"uid":"af9a1c3d-84"}],"importedBy":[{"uid":"af9a1c3d-546"}]},"af9a1c3d-126":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-text/props.js","moduleParts":{"uni_modules/uview-plus/components/u-text/props.js":"af9a1c3d-127"},"imported":[{"uid":"af9a1c3d-82"},{"uid":"af9a1c3d-84"}],"importedBy":[{"uid":"af9a1c3d-690"}]},"af9a1c3d-128":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-text/value.js","moduleParts":{"uni_modules/uview-plus/components/u-text/value.js":"af9a1c3d-129"},"imported":[{"uid":"af9a1c3d-130"},{"uid":"af9a1c3d-86"}],"importedBy":[{"uid":"af9a1c3d-690"}]},"af9a1c3d-130":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/function/index.js","moduleParts":{"uni_modules/uview-plus/libs/function/index.js":"af9a1c3d-131"},"imported":[{"uid":"af9a1c3d-38"},{"uid":"af9a1c3d-86"},{"uid":"af9a1c3d-336"},{"uid":"af9a1c3d-152"}],"importedBy":[{"uid":"af9a1c3d-28"},{"uid":"af9a1c3d-366"},{"uid":"af9a1c3d-138"},{"uid":"af9a1c3d-144"},{"uid":"af9a1c3d-528"},{"uid":"af9a1c3d-534"},{"uid":"af9a1c3d-540"},{"uid":"af9a1c3d-552"},{"uid":"af9a1c3d-558"},{"uid":"af9a1c3d-576"},{"uid":"af9a1c3d-582"},{"uid":"af9a1c3d-588"},{"uid":"af9a1c3d-594"},{"uid":"af9a1c3d-598"},{"uid":"af9a1c3d-612"},{"uid":"af9a1c3d-618"},{"uid":"af9a1c3d-630"},{"uid":"af9a1c3d-656"},{"uid":"af9a1c3d-662"},{"uid":"af9a1c3d-602"},{"uid":"af9a1c3d-668"},{"uid":"af9a1c3d-674"},{"uid":"af9a1c3d-680"},{"uid":"af9a1c3d-690"},{"uid":"af9a1c3d-136"},{"uid":"af9a1c3d-128"},{"uid":"af9a1c3d-696"}]},"af9a1c3d-132":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-textarea/props.js","moduleParts":{"uni_modules/uview-plus/components/u-textarea/props.js":"af9a1c3d-133"},"imported":[{"uid":"af9a1c3d-82"},{"uid":"af9a1c3d-84"}],"importedBy":[{"uid":"af9a1c3d-588"}]},"af9a1c3d-134":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-transition/props.js","moduleParts":{"uni_modules/uview-plus/components/u-transition/props.js":"af9a1c3d-135"},"imported":[{"uid":"af9a1c3d-82"},{"uid":"af9a1c3d-84"}],"importedBy":[{"uid":"af9a1c3d-668"}]},"af9a1c3d-136":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-transition/transition.js","moduleParts":{"uni_modules/uview-plus/components/u-transition/transition.js":"af9a1c3d-137"},"imported":[{"uid":"af9a1c3d-42"},{"uid":"af9a1c3d-130"}],"importedBy":[{"uid":"af9a1c3d-668"}]},"af9a1c3d-138":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/mixin/mixin.js","moduleParts":{"uni_modules/uview-plus/libs/mixin/mixin.js":"af9a1c3d-139"},"imported":[{"uid":"af9a1c3d-38"},{"uid":"af9a1c3d-82"},{"uid":"af9a1c3d-130"},{"uid":"af9a1c3d-86"},{"uid":"af9a1c3d-144"}],"importedBy":[{"uid":"af9a1c3d-28"},{"uid":"af9a1c3d-528"},{"uid":"af9a1c3d-534"},{"uid":"af9a1c3d-540"},{"uid":"af9a1c3d-546"},{"uid":"af9a1c3d-552"},{"uid":"af9a1c3d-558"},{"uid":"af9a1c3d-576"},{"uid":"af9a1c3d-582"},{"uid":"af9a1c3d-588"},{"uid":"af9a1c3d-594"},{"uid":"af9a1c3d-598"},{"uid":"af9a1c3d-612"},{"uid":"af9a1c3d-618"},{"uid":"af9a1c3d-630"},{"uid":"af9a1c3d-656"},{"uid":"af9a1c3d-662"},{"uid":"af9a1c3d-602"},{"uid":"af9a1c3d-668"},{"uid":"af9a1c3d-674"},{"uid":"af9a1c3d-680"},{"uid":"af9a1c3d-690"},{"uid":"af9a1c3d-696"}]},"af9a1c3d-140":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/mixin/mpMixin.js","moduleParts":{"uni_modules/uview-plus/libs/mixin/mpMixin.js":"af9a1c3d-141"},"imported":[{"uid":"af9a1c3d-82"}],"importedBy":[{"uid":"af9a1c3d-28"},{"uid":"af9a1c3d-528"},{"uid":"af9a1c3d-534"},{"uid":"af9a1c3d-540"},{"uid":"af9a1c3d-546"},{"uid":"af9a1c3d-552"},{"uid":"af9a1c3d-558"},{"uid":"af9a1c3d-576"},{"uid":"af9a1c3d-582"},{"uid":"af9a1c3d-588"},{"uid":"af9a1c3d-594"},{"uid":"af9a1c3d-598"},{"uid":"af9a1c3d-612"},{"uid":"af9a1c3d-618"},{"uid":"af9a1c3d-630"},{"uid":"af9a1c3d-656"},{"uid":"af9a1c3d-662"},{"uid":"af9a1c3d-602"},{"uid":"af9a1c3d-668"},{"uid":"af9a1c3d-674"},{"uid":"af9a1c3d-680"},{"uid":"af9a1c3d-690"},{"uid":"af9a1c3d-696"}]},"af9a1c3d-142":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/luch-request/core/Request.js","moduleParts":{"uni_modules/uview-plus/libs/luch-request/core/Request.js":"af9a1c3d-143"},"imported":[{"uid":"af9a1c3d-350"},{"uid":"af9a1c3d-348"},{"uid":"af9a1c3d-352"},{"uid":"af9a1c3d-354"},{"uid":"af9a1c3d-346"},{"uid":"af9a1c3d-356"}],"importedBy":[{"uid":"af9a1c3d-362"}]},"af9a1c3d-144":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/util/route.js","moduleParts":{"uni_modules/uview-plus/libs/util/route.js":"af9a1c3d-145"},"imported":[{"uid":"af9a1c3d-38"},{"uid":"af9a1c3d-130"}],"importedBy":[{"uid":"af9a1c3d-28"},{"uid":"af9a1c3d-138"}]},"af9a1c3d-146":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/function/colorGradient.js","moduleParts":{"uni_modules/uview-plus/libs/function/colorGradient.js":"af9a1c3d-147"},"imported":[],"importedBy":[{"uid":"af9a1c3d-28"},{"uid":"af9a1c3d-680"}]},"af9a1c3d-148":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/function/debounce.js","moduleParts":{"uni_modules/uview-plus/libs/function/debounce.js":"af9a1c3d-149"},"imported":[],"importedBy":[{"uid":"af9a1c3d-28"},{"uid":"af9a1c3d-576"}]},"af9a1c3d-150":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/function/throttle.js","moduleParts":{"uni_modules/uview-plus/libs/function/throttle.js":"af9a1c3d-151"},"imported":[],"importedBy":[{"uid":"af9a1c3d-28"},{"uid":"af9a1c3d-602"}]},"af9a1c3d-152":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/config.js","moduleParts":{"uni_modules/uview-plus/libs/config/config.js":"af9a1c3d-153"},"imported":[],"importedBy":[{"uid":"af9a1c3d-28"},{"uid":"af9a1c3d-130"},{"uid":"af9a1c3d-84"},{"uid":"af9a1c3d-222"},{"uid":"af9a1c3d-238"},{"uid":"af9a1c3d-244"},{"uid":"af9a1c3d-528"}]},"af9a1c3d-154":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/zIndex.js","moduleParts":{"uni_modules/uview-plus/libs/config/zIndex.js":"af9a1c3d-155"},"imported":[],"importedBy":[{"uid":"af9a1c3d-28"},{"uid":"af9a1c3d-540"}]},"af9a1c3d-156":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/color.js","moduleParts":{"uni_modules/uview-plus/libs/config/color.js":"af9a1c3d-157"},"imported":[],"importedBy":[{"uid":"af9a1c3d-28"},{"uid":"af9a1c3d-252"},{"uid":"af9a1c3d-582"},{"uid":"af9a1c3d-602"}]},"af9a1c3d-158":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/function/platform.js","moduleParts":{"uni_modules/uview-plus/libs/function/platform.js":"af9a1c3d-159"},"imported":[],"importedBy":[{"uid":"af9a1c3d-28"}]},"af9a1c3d-160":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/actionSheet.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/actionSheet.js":"af9a1c3d-161"},"imported":[],"importedBy":[{"uid":"af9a1c3d-84"}]},"af9a1c3d-162":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/album.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/album.js":"af9a1c3d-163"},"imported":[],"importedBy":[{"uid":"af9a1c3d-84"}]},"af9a1c3d-164":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/alert.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/alert.js":"af9a1c3d-165"},"imported":[],"importedBy":[{"uid":"af9a1c3d-84"}]},"af9a1c3d-166":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/avatar.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/avatar.js":"af9a1c3d-167"},"imported":[],"importedBy":[{"uid":"af9a1c3d-84"}]},"af9a1c3d-168":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/avatarGroup.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/avatarGroup.js":"af9a1c3d-169"},"imported":[],"importedBy":[{"uid":"af9a1c3d-84"}]},"af9a1c3d-170":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/backtop.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/backtop.js":"af9a1c3d-171"},"imported":[],"importedBy":[{"uid":"af9a1c3d-84"}]},"af9a1c3d-172":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/badge.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/badge.js":"af9a1c3d-173"},"imported":[],"importedBy":[{"uid":"af9a1c3d-84"}]},"af9a1c3d-174":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/button.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/button.js":"af9a1c3d-175"},"imported":[],"importedBy":[{"uid":"af9a1c3d-84"}]},"af9a1c3d-176":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/calendar.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/calendar.js":"af9a1c3d-177"},"imported":[],"importedBy":[{"uid":"af9a1c3d-84"}]},"af9a1c3d-178":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/carKeyboard.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/carKeyboard.js":"af9a1c3d-179"},"imported":[],"importedBy":[{"uid":"af9a1c3d-84"}]},"af9a1c3d-180":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/cell.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/cell.js":"af9a1c3d-181"},"imported":[],"importedBy":[{"uid":"af9a1c3d-84"}]},"af9a1c3d-182":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/cellGroup.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/cellGroup.js":"af9a1c3d-183"},"imported":[],"importedBy":[{"uid":"af9a1c3d-84"}]},"af9a1c3d-184":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/checkbox.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/checkbox.js":"af9a1c3d-185"},"imported":[],"importedBy":[{"uid":"af9a1c3d-84"}]},"af9a1c3d-186":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/checkboxGroup.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/checkboxGroup.js":"af9a1c3d-187"},"imported":[],"importedBy":[{"uid":"af9a1c3d-84"}]},"af9a1c3d-188":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/circleProgress.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/circleProgress.js":"af9a1c3d-189"},"imported":[],"importedBy":[{"uid":"af9a1c3d-84"}]},"af9a1c3d-190":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/code.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/code.js":"af9a1c3d-191"},"imported":[],"importedBy":[{"uid":"af9a1c3d-84"}]},"af9a1c3d-192":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/codeInput.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/codeInput.js":"af9a1c3d-193"},"imported":[],"importedBy":[{"uid":"af9a1c3d-84"}]},"af9a1c3d-194":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/col.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/col.js":"af9a1c3d-195"},"imported":[],"importedBy":[{"uid":"af9a1c3d-84"}]},"af9a1c3d-196":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/collapse.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/collapse.js":"af9a1c3d-197"},"imported":[],"importedBy":[{"uid":"af9a1c3d-84"}]},"af9a1c3d-198":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/collapseItem.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/collapseItem.js":"af9a1c3d-199"},"imported":[],"importedBy":[{"uid":"af9a1c3d-84"}]},"af9a1c3d-200":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/columnNotice.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/columnNotice.js":"af9a1c3d-201"},"imported":[],"importedBy":[{"uid":"af9a1c3d-84"}]},"af9a1c3d-202":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/countDown.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/countDown.js":"af9a1c3d-203"},"imported":[],"importedBy":[{"uid":"af9a1c3d-84"}]},"af9a1c3d-204":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/countTo.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/countTo.js":"af9a1c3d-205"},"imported":[],"importedBy":[{"uid":"af9a1c3d-84"}]},"af9a1c3d-206":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/datetimePicker.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/datetimePicker.js":"af9a1c3d-207"},"imported":[],"importedBy":[{"uid":"af9a1c3d-84"}]},"af9a1c3d-208":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/divider.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/divider.js":"af9a1c3d-209"},"imported":[],"importedBy":[{"uid":"af9a1c3d-84"}]},"af9a1c3d-210":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/empty.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/empty.js":"af9a1c3d-211"},"imported":[],"importedBy":[{"uid":"af9a1c3d-84"}]},"af9a1c3d-212":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/form.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/form.js":"af9a1c3d-213"},"imported":[],"importedBy":[{"uid":"af9a1c3d-84"}]},"af9a1c3d-214":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/formItem.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/formItem.js":"af9a1c3d-215"},"imported":[],"importedBy":[{"uid":"af9a1c3d-84"}]},"af9a1c3d-216":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/gap.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/gap.js":"af9a1c3d-217"},"imported":[],"importedBy":[{"uid":"af9a1c3d-84"}]},"af9a1c3d-218":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/grid.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/grid.js":"af9a1c3d-219"},"imported":[],"importedBy":[{"uid":"af9a1c3d-84"}]},"af9a1c3d-220":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/gridItem.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/gridItem.js":"af9a1c3d-221"},"imported":[],"importedBy":[{"uid":"af9a1c3d-84"}]},"af9a1c3d-222":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/icon.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/icon.js":"af9a1c3d-223"},"imported":[{"uid":"af9a1c3d-152"}],"importedBy":[{"uid":"af9a1c3d-84"}]},"af9a1c3d-224":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/image.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/image.js":"af9a1c3d-225"},"imported":[],"importedBy":[{"uid":"af9a1c3d-84"}]},"af9a1c3d-226":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/indexAnchor.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/indexAnchor.js":"af9a1c3d-227"},"imported":[],"importedBy":[{"uid":"af9a1c3d-84"}]},"af9a1c3d-228":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/indexList.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/indexList.js":"af9a1c3d-229"},"imported":[],"importedBy":[{"uid":"af9a1c3d-84"}]},"af9a1c3d-230":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/input.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/input.js":"af9a1c3d-231"},"imported":[],"importedBy":[{"uid":"af9a1c3d-84"}]},"af9a1c3d-232":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/keyboard.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/keyboard.js":"af9a1c3d-233"},"imported":[],"importedBy":[{"uid":"af9a1c3d-84"}]},"af9a1c3d-234":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/line.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/line.js":"af9a1c3d-235"},"imported":[],"importedBy":[{"uid":"af9a1c3d-84"}]},"af9a1c3d-236":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/lineProgress.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/lineProgress.js":"af9a1c3d-237"},"imported":[],"importedBy":[{"uid":"af9a1c3d-84"}]},"af9a1c3d-238":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/link.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/link.js":"af9a1c3d-239"},"imported":[{"uid":"af9a1c3d-152"}],"importedBy":[{"uid":"af9a1c3d-84"}]},"af9a1c3d-240":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/list.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/list.js":"af9a1c3d-241"},"imported":[],"importedBy":[{"uid":"af9a1c3d-84"}]},"af9a1c3d-242":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/listItem.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/listItem.js":"af9a1c3d-243"},"imported":[],"importedBy":[{"uid":"af9a1c3d-84"}]},"af9a1c3d-244":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/loadingIcon.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/loadingIcon.js":"af9a1c3d-245"},"imported":[{"uid":"af9a1c3d-152"}],"importedBy":[{"uid":"af9a1c3d-84"}]},"af9a1c3d-246":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/loadingPage.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/loadingPage.js":"af9a1c3d-247"},"imported":[],"importedBy":[{"uid":"af9a1c3d-84"}]},"af9a1c3d-248":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/loadmore.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/loadmore.js":"af9a1c3d-249"},"imported":[],"importedBy":[{"uid":"af9a1c3d-84"}]},"af9a1c3d-250":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/modal.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/modal.js":"af9a1c3d-251"},"imported":[],"importedBy":[{"uid":"af9a1c3d-84"}]},"af9a1c3d-252":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/navbar.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/navbar.js":"af9a1c3d-253"},"imported":[{"uid":"af9a1c3d-156"}],"importedBy":[{"uid":"af9a1c3d-84"}]},"af9a1c3d-254":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/noNetwork.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/noNetwork.js":"af9a1c3d-255"},"imported":[],"importedBy":[{"uid":"af9a1c3d-84"}]},"af9a1c3d-256":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/noticeBar.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/noticeBar.js":"af9a1c3d-257"},"imported":[],"importedBy":[{"uid":"af9a1c3d-84"}]},"af9a1c3d-258":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/notify.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/notify.js":"af9a1c3d-259"},"imported":[],"importedBy":[{"uid":"af9a1c3d-84"}]},"af9a1c3d-260":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/numberBox.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/numberBox.js":"af9a1c3d-261"},"imported":[],"importedBy":[{"uid":"af9a1c3d-84"}]},"af9a1c3d-262":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/numberKeyboard.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/numberKeyboard.js":"af9a1c3d-263"},"imported":[],"importedBy":[{"uid":"af9a1c3d-84"}]},"af9a1c3d-264":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/overlay.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/overlay.js":"af9a1c3d-265"},"imported":[],"importedBy":[{"uid":"af9a1c3d-84"}]},"af9a1c3d-266":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/parse.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/parse.js":"af9a1c3d-267"},"imported":[],"importedBy":[{"uid":"af9a1c3d-84"}]},"af9a1c3d-268":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/picker.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/picker.js":"af9a1c3d-269"},"imported":[],"importedBy":[{"uid":"af9a1c3d-84"}]},"af9a1c3d-270":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/popup.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/popup.js":"af9a1c3d-271"},"imported":[],"importedBy":[{"uid":"af9a1c3d-84"}]},"af9a1c3d-272":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/radio.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/radio.js":"af9a1c3d-273"},"imported":[],"importedBy":[{"uid":"af9a1c3d-84"}]},"af9a1c3d-274":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/radioGroup.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/radioGroup.js":"af9a1c3d-275"},"imported":[],"importedBy":[{"uid":"af9a1c3d-84"}]},"af9a1c3d-276":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/rate.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/rate.js":"af9a1c3d-277"},"imported":[],"importedBy":[{"uid":"af9a1c3d-84"}]},"af9a1c3d-278":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/readMore.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/readMore.js":"af9a1c3d-279"},"imported":[],"importedBy":[{"uid":"af9a1c3d-84"}]},"af9a1c3d-280":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/row.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/row.js":"af9a1c3d-281"},"imported":[],"importedBy":[{"uid":"af9a1c3d-84"}]},"af9a1c3d-282":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/rowNotice.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/rowNotice.js":"af9a1c3d-283"},"imported":[],"importedBy":[{"uid":"af9a1c3d-84"}]},"af9a1c3d-284":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/scrollList.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/scrollList.js":"af9a1c3d-285"},"imported":[],"importedBy":[{"uid":"af9a1c3d-84"}]},"af9a1c3d-286":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/search.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/search.js":"af9a1c3d-287"},"imported":[],"importedBy":[{"uid":"af9a1c3d-84"}]},"af9a1c3d-288":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/section.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/section.js":"af9a1c3d-289"},"imported":[],"importedBy":[{"uid":"af9a1c3d-84"}]},"af9a1c3d-290":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/skeleton.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/skeleton.js":"af9a1c3d-291"},"imported":[],"importedBy":[{"uid":"af9a1c3d-84"}]},"af9a1c3d-292":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/slider.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/slider.js":"af9a1c3d-293"},"imported":[],"importedBy":[{"uid":"af9a1c3d-84"}]},"af9a1c3d-294":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/statusBar.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/statusBar.js":"af9a1c3d-295"},"imported":[],"importedBy":[{"uid":"af9a1c3d-84"}]},"af9a1c3d-296":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/steps.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/steps.js":"af9a1c3d-297"},"imported":[],"importedBy":[{"uid":"af9a1c3d-84"}]},"af9a1c3d-298":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/stepsItem.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/stepsItem.js":"af9a1c3d-299"},"imported":[],"importedBy":[{"uid":"af9a1c3d-84"}]},"af9a1c3d-300":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/sticky.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/sticky.js":"af9a1c3d-301"},"imported":[],"importedBy":[{"uid":"af9a1c3d-84"}]},"af9a1c3d-302":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/subsection.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/subsection.js":"af9a1c3d-303"},"imported":[],"importedBy":[{"uid":"af9a1c3d-84"}]},"af9a1c3d-304":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/swipeAction.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/swipeAction.js":"af9a1c3d-305"},"imported":[],"importedBy":[{"uid":"af9a1c3d-84"}]},"af9a1c3d-306":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/swipeActionItem.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/swipeActionItem.js":"af9a1c3d-307"},"imported":[],"importedBy":[{"uid":"af9a1c3d-84"}]},"af9a1c3d-308":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/swiper.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/swiper.js":"af9a1c3d-309"},"imported":[],"importedBy":[{"uid":"af9a1c3d-84"}]},"af9a1c3d-310":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/swipterIndicator.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/swipterIndicator.js":"af9a1c3d-311"},"imported":[],"importedBy":[{"uid":"af9a1c3d-84"}]},"af9a1c3d-312":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/switch.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/switch.js":"af9a1c3d-313"},"imported":[],"importedBy":[{"uid":"af9a1c3d-84"}]},"af9a1c3d-314":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/tabbar.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/tabbar.js":"af9a1c3d-315"},"imported":[],"importedBy":[{"uid":"af9a1c3d-84"}]},"af9a1c3d-316":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/tabbarItem.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/tabbarItem.js":"af9a1c3d-317"},"imported":[],"importedBy":[{"uid":"af9a1c3d-84"}]},"af9a1c3d-318":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/tabs.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/tabs.js":"af9a1c3d-319"},"imported":[],"importedBy":[{"uid":"af9a1c3d-84"}]},"af9a1c3d-320":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/tag.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/tag.js":"af9a1c3d-321"},"imported":[],"importedBy":[{"uid":"af9a1c3d-84"}]},"af9a1c3d-322":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/text.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/text.js":"af9a1c3d-323"},"imported":[],"importedBy":[{"uid":"af9a1c3d-84"}]},"af9a1c3d-324":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/textarea.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/textarea.js":"af9a1c3d-325"},"imported":[],"importedBy":[{"uid":"af9a1c3d-84"}]},"af9a1c3d-326":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/toast.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/toast.js":"af9a1c3d-327"},"imported":[],"importedBy":[{"uid":"af9a1c3d-84"}]},"af9a1c3d-328":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/toolbar.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/toolbar.js":"af9a1c3d-329"},"imported":[],"importedBy":[{"uid":"af9a1c3d-84"}]},"af9a1c3d-330":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/tooltip.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/tooltip.js":"af9a1c3d-331"},"imported":[],"importedBy":[{"uid":"af9a1c3d-84"}]},"af9a1c3d-332":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/transition.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/transition.js":"af9a1c3d-333"},"imported":[],"importedBy":[{"uid":"af9a1c3d-84"}]},"af9a1c3d-334":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/upload.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/upload.js":"af9a1c3d-335"},"imported":[],"importedBy":[{"uid":"af9a1c3d-84"}]},"af9a1c3d-336":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/function/digit.js","moduleParts":{"uni_modules/uview-plus/libs/function/digit.js":"af9a1c3d-337"},"imported":[],"importedBy":[{"uid":"af9a1c3d-130"}]},"af9a1c3d-338":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/luch-request/adapters/index.js","moduleParts":{"uni_modules/uview-plus/libs/luch-request/adapters/index.js":"af9a1c3d-339"},"imported":[{"uid":"af9a1c3d-38"},{"uid":"af9a1c3d-340"},{"uid":"af9a1c3d-342"},{"uid":"af9a1c3d-344"},{"uid":"af9a1c3d-346"}],"importedBy":[{"uid":"af9a1c3d-350"}]},"af9a1c3d-340":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/luch-request/helpers/buildURL.js","moduleParts":{"uni_modules/uview-plus/libs/luch-request/helpers/buildURL.js":"af9a1c3d-341"},"imported":[{"uid":"af9a1c3d-346"}],"importedBy":[{"uid":"af9a1c3d-338"}]},"af9a1c3d-342":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/luch-request/core/buildFullPath.js","moduleParts":{"uni_modules/uview-plus/libs/luch-request/core/buildFullPath.js":"af9a1c3d-343"},"imported":[{"uid":"af9a1c3d-358"},{"uid":"af9a1c3d-360"}],"importedBy":[{"uid":"af9a1c3d-338"}]},"af9a1c3d-344":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/luch-request/core/settle.js","moduleParts":{"uni_modules/uview-plus/libs/luch-request/core/settle.js":"af9a1c3d-345"},"imported":[],"importedBy":[{"uid":"af9a1c3d-338"}]},"af9a1c3d-346":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/luch-request/utils.js","moduleParts":{"uni_modules/uview-plus/libs/luch-request/utils.js":"af9a1c3d-347"},"imported":[],"importedBy":[{"uid":"af9a1c3d-142"},{"uid":"af9a1c3d-352"},{"uid":"af9a1c3d-338"},{"uid":"af9a1c3d-340"}]},"af9a1c3d-348":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/luch-request/core/InterceptorManager.js","moduleParts":{"uni_modules/uview-plus/libs/luch-request/core/InterceptorManager.js":"af9a1c3d-349"},"imported":[],"importedBy":[{"uid":"af9a1c3d-142"}]},"af9a1c3d-350":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/luch-request/core/dispatchRequest.js","moduleParts":{"uni_modules/uview-plus/libs/luch-request/core/dispatchRequest.js":"af9a1c3d-351"},"imported":[{"uid":"af9a1c3d-338"}],"importedBy":[{"uid":"af9a1c3d-142"}]},"af9a1c3d-352":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/luch-request/core/mergeConfig.js","moduleParts":{"uni_modules/uview-plus/libs/luch-request/core/mergeConfig.js":"af9a1c3d-353"},"imported":[{"uid":"af9a1c3d-346"}],"importedBy":[{"uid":"af9a1c3d-142"}]},"af9a1c3d-354":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/luch-request/core/defaults.js","moduleParts":{"uni_modules/uview-plus/libs/luch-request/core/defaults.js":"af9a1c3d-355"},"imported":[],"importedBy":[{"uid":"af9a1c3d-142"}]},"af9a1c3d-356":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/luch-request/utils/clone.js","moduleParts":{"uni_modules/uview-plus/libs/luch-request/utils/clone.js":"af9a1c3d-357"},"imported":[],"importedBy":[{"uid":"af9a1c3d-142"}]},"af9a1c3d-358":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/luch-request/helpers/isAbsoluteURL.js","moduleParts":{"uni_modules/uview-plus/libs/luch-request/helpers/isAbsoluteURL.js":"af9a1c3d-359"},"imported":[],"importedBy":[{"uid":"af9a1c3d-342"}]},"af9a1c3d-360":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/luch-request/helpers/combineURLs.js","moduleParts":{"uni_modules/uview-plus/libs/luch-request/helpers/combineURLs.js":"af9a1c3d-361"},"imported":[],"importedBy":[{"uid":"af9a1c3d-342"}]},"af9a1c3d-362":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/luch-request/index.js","moduleParts":{"uni_modules/uview-plus/libs/luch-request/index.js":"af9a1c3d-363"},"imported":[{"uid":"af9a1c3d-142"}],"importedBy":[{"uid":"af9a1c3d-28"}]},"af9a1c3d-364":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/mixin/button.js","moduleParts":{"uni_modules/uview-plus/libs/mixin/button.js":"af9a1c3d-365"},"imported":[{"uid":"af9a1c3d-82"}],"importedBy":[{"uid":"af9a1c3d-602"},{"uid":"af9a1c3d-690"}]},"af9a1c3d-366":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/mixin/mpShare.js","moduleParts":{"uni_modules/uview-plus/libs/mixin/mpShare.js":"af9a1c3d-367"},"imported":[{"uid":"af9a1c3d-82"},{"uid":"af9a1c3d-130"}],"importedBy":[{"uid":"af9a1c3d-6"}]},"af9a1c3d-368":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/mixin/openType.js","moduleParts":{"uni_modules/uview-plus/libs/mixin/openType.js":"af9a1c3d-369"},"imported":[{"uid":"af9a1c3d-82"}],"importedBy":[{"uid":"af9a1c3d-602"},{"uid":"af9a1c3d-690"}]},"af9a1c3d-370":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/util/async-validator.js","moduleParts":{"uni_modules/uview-plus/libs/util/async-validator.js":"af9a1c3d-371"},"imported":[],"importedBy":[{"uid":"af9a1c3d-598"}]},"af9a1c3d-372":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/default/index.vue?vue&type=style&index=0&lang.scss","moduleParts":{"pages/default/index.js":"af9a1c3d-373"},"imported":[],"importedBy":[{"uid":"af9a1c3d-374"}]},"af9a1c3d-374":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/default/index.vue","moduleParts":{"pages/default/index.js":"af9a1c3d-375"},"imported":[{"uid":"af9a1c3d-38"},{"uid":"af9a1c3d-42"},{"uid":"af9a1c3d-372"},{"uid":"af9a1c3d-40"},{"uid":"af9a1c3d-530","dynamic":true}],"importedBy":[{"uid":"af9a1c3d-376"}]},"af9a1c3d-376":{"id":"uniPage://cGFnZXMvZGVmYXVsdC9pbmRleC52dWU","moduleParts":{"pages/default/index.js":"af9a1c3d-377"},"imported":[{"uid":"af9a1c3d-374"}],"importedBy":[{"uid":"af9a1c3d-0"}]},"af9a1c3d-378":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/index/index.vue?vue&type=style&index=0&lang.scss","moduleParts":{"pages/index/index.js":"af9a1c3d-379"},"imported":[],"importedBy":[{"uid":"af9a1c3d-380"}]},"af9a1c3d-380":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/index/index.vue","moduleParts":{"pages/index/index.js":"af9a1c3d-381"},"imported":[{"uid":"af9a1c3d-38"},{"uid":"af9a1c3d-64"},{"uid":"af9a1c3d-42"},{"uid":"af9a1c3d-378"},{"uid":"af9a1c3d-40"},{"uid":"af9a1c3d-536","dynamic":true},{"uid":"af9a1c3d-542","dynamic":true},{"uid":"af9a1c3d-548","dynamic":true},{"uid":"af9a1c3d-554","dynamic":true},{"uid":"af9a1c3d-560","dynamic":true},{"uid":"af9a1c3d-566","dynamic":true}],"importedBy":[{"uid":"af9a1c3d-382"}]},"af9a1c3d-382":{"id":"uniPage://cGFnZXMvaW5kZXgvaW5kZXgudnVl","moduleParts":{"pages/index/index.js":"af9a1c3d-383"},"imported":[{"uid":"af9a1c3d-380"}],"importedBy":[{"uid":"af9a1c3d-0"}]},"af9a1c3d-384":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/login/index.vue?vue&type=style&index=0&scoped=45258083&lang.scss","moduleParts":{"pages/login/index.js":"af9a1c3d-385"},"imported":[],"importedBy":[{"uid":"af9a1c3d-386"}]},"af9a1c3d-386":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/login/index.vue","moduleParts":{"pages/login/index.js":"af9a1c3d-387"},"imported":[{"uid":"af9a1c3d-38"},{"uid":"af9a1c3d-42"},{"uid":"af9a1c3d-8"},{"uid":"af9a1c3d-384"},{"uid":"af9a1c3d-40"},{"uid":"af9a1c3d-572","dynamic":true}],"importedBy":[{"uid":"af9a1c3d-388"}]},"af9a1c3d-388":{"id":"uniPage://cGFnZXMvbG9naW4vaW5kZXgudnVl","moduleParts":{"pages/login/index.js":"af9a1c3d-389"},"imported":[{"uid":"af9a1c3d-386"}],"importedBy":[{"uid":"af9a1c3d-0"}]},"af9a1c3d-390":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/release/index.vue?vue&type=style&index=0&lang.css","moduleParts":{"pages/release/index.js":"af9a1c3d-391"},"imported":[],"importedBy":[{"uid":"af9a1c3d-392"}]},"af9a1c3d-392":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/release/index.vue","moduleParts":{"pages/release/index.js":"af9a1c3d-393"},"imported":[{"uid":"af9a1c3d-38"},{"uid":"af9a1c3d-42"},{"uid":"af9a1c3d-64"},{"uid":"af9a1c3d-46"},{"uid":"af9a1c3d-390"},{"uid":"af9a1c3d-40"},{"uid":"af9a1c3d-578","dynamic":true},{"uid":"af9a1c3d-584","dynamic":true},{"uid":"af9a1c3d-530","dynamic":true},{"uid":"af9a1c3d-590","dynamic":true},{"uid":"af9a1c3d-596","dynamic":true},{"uid":"af9a1c3d-548","dynamic":true},{"uid":"af9a1c3d-600","dynamic":true},{"uid":"af9a1c3d-608","dynamic":true},{"uid":"af9a1c3d-566","dynamic":true}],"importedBy":[{"uid":"af9a1c3d-394"}]},"af9a1c3d-394":{"id":"uniPage://cGFnZXMvcmVsZWFzZS9pbmRleC52dWU","moduleParts":{"pages/release/index.js":"af9a1c3d-395"},"imported":[{"uid":"af9a1c3d-392"}],"importedBy":[{"uid":"af9a1c3d-0"}]},"af9a1c3d-396":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/mine/index.vue?vue&type=style&index=0&lang.scss","moduleParts":{"pages/mine/index.js":"af9a1c3d-397"},"imported":[],"importedBy":[{"uid":"af9a1c3d-398"}]},"af9a1c3d-398":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/mine/index.vue","moduleParts":{"pages/mine/index.js":"af9a1c3d-399"},"imported":[{"uid":"af9a1c3d-38"},{"uid":"af9a1c3d-42"},{"uid":"af9a1c3d-10"},{"uid":"af9a1c3d-12"},{"uid":"af9a1c3d-14"},{"uid":"af9a1c3d-16"},{"uid":"af9a1c3d-396"},{"uid":"af9a1c3d-40"},{"uid":"af9a1c3d-614","dynamic":true},{"uid":"af9a1c3d-530","dynamic":true}],"importedBy":[{"uid":"af9a1c3d-400"}]},"af9a1c3d-400":{"id":"uniPage://cGFnZXMvbWluZS9pbmRleC52dWU","moduleParts":{"pages/mine/index.js":"af9a1c3d-401"},"imported":[{"uid":"af9a1c3d-398"}],"importedBy":[{"uid":"af9a1c3d-0"}]},"af9a1c3d-402":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/mine/mine.vue?vue&type=style&index=0&lang.css","moduleParts":{"pages/mine/mine.js":"af9a1c3d-403"},"imported":[],"importedBy":[{"uid":"af9a1c3d-404"}]},"af9a1c3d-404":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/mine/mine.vue","moduleParts":{"pages/mine/mine.js":"af9a1c3d-405"},"imported":[{"uid":"af9a1c3d-38"},{"uid":"af9a1c3d-66"},{"uid":"af9a1c3d-64"},{"uid":"af9a1c3d-42"},{"uid":"af9a1c3d-402"},{"uid":"af9a1c3d-40"},{"uid":"af9a1c3d-614","dynamic":true},{"uid":"af9a1c3d-608","dynamic":true},{"uid":"af9a1c3d-578","dynamic":true},{"uid":"af9a1c3d-584","dynamic":true},{"uid":"af9a1c3d-600","dynamic":true},{"uid":"af9a1c3d-530","dynamic":true},{"uid":"af9a1c3d-620","dynamic":true}],"importedBy":[{"uid":"af9a1c3d-406"}]},"af9a1c3d-406":{"id":"uniPage://cGFnZXMvbWluZS9taW5lLnZ1ZQ","moduleParts":{"pages/mine/mine.js":"af9a1c3d-407"},"imported":[{"uid":"af9a1c3d-404"}],"importedBy":[{"uid":"af9a1c3d-0"}]},"af9a1c3d-408":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/mine/apply.vue?vue&type=style&index=0&lang.css","moduleParts":{"pages/mine/apply.js":"af9a1c3d-409"},"imported":[],"importedBy":[{"uid":"af9a1c3d-410"}]},"af9a1c3d-410":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/mine/apply.vue","moduleParts":{"pages/mine/apply.js":"af9a1c3d-411"},"imported":[{"uid":"af9a1c3d-38"},{"uid":"af9a1c3d-64"},{"uid":"af9a1c3d-66"},{"uid":"af9a1c3d-42"},{"uid":"af9a1c3d-408"},{"uid":"af9a1c3d-40"},{"uid":"af9a1c3d-626","dynamic":true},{"uid":"af9a1c3d-584","dynamic":true},{"uid":"af9a1c3d-578","dynamic":true},{"uid":"af9a1c3d-590","dynamic":true},{"uid":"af9a1c3d-608","dynamic":true},{"uid":"af9a1c3d-600","dynamic":true}],"importedBy":[{"uid":"af9a1c3d-412"}]},"af9a1c3d-412":{"id":"uniPage://cGFnZXMvbWluZS9hcHBseS52dWU","moduleParts":{"pages/mine/apply.js":"af9a1c3d-413"},"imported":[{"uid":"af9a1c3d-410"}],"importedBy":[{"uid":"af9a1c3d-0"}]},"af9a1c3d-414":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/test/test.vue?vue&type=style&index=0&lang.css","moduleParts":{"pages/test/test.js":"af9a1c3d-415"},"imported":[],"importedBy":[{"uid":"af9a1c3d-416"}]},"af9a1c3d-416":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/test/test.vue","moduleParts":{"pages/test/test.js":"af9a1c3d-417"},"imported":[{"uid":"af9a1c3d-38"},{"uid":"af9a1c3d-42"},{"uid":"af9a1c3d-414"},{"uid":"af9a1c3d-40"}],"importedBy":[{"uid":"af9a1c3d-418"}]},"af9a1c3d-418":{"id":"uniPage://cGFnZXMvdGVzdC90ZXN0LnZ1ZQ","moduleParts":{"pages/test/test.js":"af9a1c3d-419"},"imported":[{"uid":"af9a1c3d-416"}],"importedBy":[{"uid":"af9a1c3d-0"}]},"af9a1c3d-420":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/income/income.vue?vue&type=style&index=0&lang.scss","moduleParts":{"pages/income/income.js":"af9a1c3d-421"},"imported":[],"importedBy":[{"uid":"af9a1c3d-422"}]},"af9a1c3d-422":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/income/income.vue","moduleParts":{"pages/income/income.js":"af9a1c3d-423"},"imported":[{"uid":"af9a1c3d-42"},{"uid":"af9a1c3d-420"},{"uid":"af9a1c3d-40"},{"uid":"af9a1c3d-620","dynamic":true},{"uid":"af9a1c3d-554","dynamic":true},{"uid":"af9a1c3d-560","dynamic":true}],"importedBy":[{"uid":"af9a1c3d-424"}]},"af9a1c3d-424":{"id":"uniPage://cGFnZXMvaW5jb21lL2luY29tZS52dWU","moduleParts":{"pages/income/income.js":"af9a1c3d-425"},"imported":[{"uid":"af9a1c3d-422"}],"importedBy":[{"uid":"af9a1c3d-0"}]},"af9a1c3d-426":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/article/article.vue?vue&type=style&index=0&lang.css","moduleParts":{"pages/article/article.js":"af9a1c3d-427"},"imported":[],"importedBy":[{"uid":"af9a1c3d-428"}]},"af9a1c3d-428":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/article/article.vue","moduleParts":{"pages/article/article.js":"af9a1c3d-429"},"imported":[{"uid":"af9a1c3d-426"},{"uid":"af9a1c3d-40"}],"importedBy":[{"uid":"af9a1c3d-430"}]},"af9a1c3d-430":{"id":"uniPage://cGFnZXMvYXJ0aWNsZS9hcnRpY2xlLnZ1ZQ","moduleParts":{"pages/article/article.js":"af9a1c3d-431"},"imported":[{"uid":"af9a1c3d-428"}],"importedBy":[{"uid":"af9a1c3d-0"}]},"af9a1c3d-432":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/worker/worker.vue","moduleParts":{"pages/worker/worker.js":"af9a1c3d-433"},"imported":[{"uid":"af9a1c3d-40"}],"importedBy":[{"uid":"af9a1c3d-434"}]},"af9a1c3d-434":{"id":"uniPage://cGFnZXMvd29ya2VyL3dvcmtlci52dWU","moduleParts":{"pages/worker/worker.js":"af9a1c3d-435"},"imported":[{"uid":"af9a1c3d-432"}],"importedBy":[{"uid":"af9a1c3d-0"}]},"af9a1c3d-436":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/checkin/index.vue?vue&type=style&index=0&lang.css","moduleParts":{"pages/checkin/index.js":"af9a1c3d-437"},"imported":[],"importedBy":[{"uid":"af9a1c3d-438"}]},"af9a1c3d-438":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/checkin/index.vue","moduleParts":{"pages/checkin/index.js":"af9a1c3d-439"},"imported":[{"uid":"af9a1c3d-38"},{"uid":"af9a1c3d-42"},{"uid":"af9a1c3d-436"},{"uid":"af9a1c3d-40"},{"uid":"af9a1c3d-536","dynamic":true},{"uid":"af9a1c3d-632","dynamic":true},{"uid":"af9a1c3d-542","dynamic":true},{"uid":"af9a1c3d-548","dynamic":true},{"uid":"af9a1c3d-578","dynamic":true},{"uid":"af9a1c3d-608","dynamic":true},{"uid":"af9a1c3d-554","dynamic":true},{"uid":"af9a1c3d-560","dynamic":true},{"uid":"af9a1c3d-566","dynamic":true}],"importedBy":[{"uid":"af9a1c3d-440"}]},"af9a1c3d-440":{"id":"uniPage://cGFnZXNcY2hlY2tpblxpbmRleC52dWU","moduleParts":{"pages/checkin/index.js":"af9a1c3d-441"},"imported":[{"uid":"af9a1c3d-438"}],"importedBy":[{"uid":"af9a1c3d-0"}]},"af9a1c3d-442":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/checkin/checkin.vue?vue&type=style&index=0&lang.scss","moduleParts":{"pages/checkin/checkin.js":"af9a1c3d-443"},"imported":[],"importedBy":[{"uid":"af9a1c3d-444"}]},"af9a1c3d-444":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/checkin/checkin.vue","moduleParts":{"pages/checkin/checkin.js":"af9a1c3d-445"},"imported":[{"uid":"af9a1c3d-38"},{"uid":"af9a1c3d-66"},{"uid":"af9a1c3d-42"},{"uid":"af9a1c3d-442"},{"uid":"af9a1c3d-40"},{"uid":"af9a1c3d-640","dynamic":true},{"uid":"af9a1c3d-626","dynamic":true},{"uid":"af9a1c3d-614","dynamic":true},{"uid":"af9a1c3d-530","dynamic":true},{"uid":"af9a1c3d-608","dynamic":true}],"importedBy":[{"uid":"af9a1c3d-446"}]},"af9a1c3d-446":{"id":"uniPage://cGFnZXNcY2hlY2tpblxjaGVja2luLnZ1ZQ","moduleParts":{"pages/checkin/checkin.js":"af9a1c3d-447"},"imported":[{"uid":"af9a1c3d-444"}],"importedBy":[{"uid":"af9a1c3d-0"}]},"af9a1c3d-448":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/checkin/workdetail.vue?vue&type=style&index=0&lang.scss","moduleParts":{"pages/checkin/workdetail.js":"af9a1c3d-449"},"imported":[],"importedBy":[{"uid":"af9a1c3d-450"}]},"af9a1c3d-450":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/checkin/workdetail.vue","moduleParts":{"pages/checkin/workdetail.js":"af9a1c3d-451"},"imported":[{"uid":"af9a1c3d-38"},{"uid":"af9a1c3d-42"},{"uid":"af9a1c3d-448"},{"uid":"af9a1c3d-40"},{"uid":"af9a1c3d-614","dynamic":true},{"uid":"af9a1c3d-530","dynamic":true},{"uid":"af9a1c3d-620","dynamic":true},{"uid":"af9a1c3d-578","dynamic":true},{"uid":"af9a1c3d-608","dynamic":true}],"importedBy":[{"uid":"af9a1c3d-452"}]},"af9a1c3d-452":{"id":"uniPage://cGFnZXNcY2hlY2tpblx3b3JrZGV0YWlsLnZ1ZQ","moduleParts":{"pages/checkin/workdetail.js":"af9a1c3d-453"},"imported":[{"uid":"af9a1c3d-450"}],"importedBy":[{"uid":"af9a1c3d-0"}]},"af9a1c3d-454":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/enterprise/index.vue?vue&type=style&index=0&lang.css","moduleParts":{"pages/enterprise/index.js":"af9a1c3d-455"},"imported":[],"importedBy":[{"uid":"af9a1c3d-456"}]},"af9a1c3d-456":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/enterprise/index.vue","moduleParts":{"pages/enterprise/index.js":"af9a1c3d-457"},"imported":[{"uid":"af9a1c3d-38"},{"uid":"af9a1c3d-64"},{"uid":"af9a1c3d-42"},{"uid":"af9a1c3d-454"},{"uid":"af9a1c3d-40"},{"uid":"af9a1c3d-614","dynamic":true},{"uid":"af9a1c3d-646","dynamic":true},{"uid":"af9a1c3d-652","dynamic":true}],"importedBy":[{"uid":"af9a1c3d-458"}]},"af9a1c3d-458":{"id":"uniPage://cGFnZXNcZW50ZXJwcmlzZVxpbmRleC52dWU","moduleParts":{"pages/enterprise/index.js":"af9a1c3d-459"},"imported":[{"uid":"af9a1c3d-456"}],"importedBy":[{"uid":"af9a1c3d-0"}]},"af9a1c3d-460":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/enterprise/enterprise.vue?vue&type=style&index=0&lang.css","moduleParts":{"pages/enterprise/enterprise.js":"af9a1c3d-461"},"imported":[],"importedBy":[{"uid":"af9a1c3d-462"}]},"af9a1c3d-462":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/enterprise/enterprise.vue","moduleParts":{"pages/enterprise/enterprise.js":"af9a1c3d-463"},"imported":[{"uid":"af9a1c3d-38"},{"uid":"af9a1c3d-66"},{"uid":"af9a1c3d-64"},{"uid":"af9a1c3d-42"},{"uid":"af9a1c3d-460"},{"uid":"af9a1c3d-40"},{"uid":"af9a1c3d-626","dynamic":true},{"uid":"af9a1c3d-584","dynamic":true},{"uid":"af9a1c3d-578","dynamic":true},{"uid":"af9a1c3d-590","dynamic":true},{"uid":"af9a1c3d-608","dynamic":true},{"uid":"af9a1c3d-600","dynamic":true}],"importedBy":[{"uid":"af9a1c3d-464"}]},"af9a1c3d-464":{"id":"uniPage://cGFnZXNcZW50ZXJwcmlzZVxlbnRlcnByaXNlLnZ1ZQ","moduleParts":{"pages/enterprise/enterprise.js":"af9a1c3d-465"},"imported":[{"uid":"af9a1c3d-462"}],"importedBy":[{"uid":"af9a1c3d-0"}]},"af9a1c3d-466":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/detail/detail.vue?vue&type=style&index=0&lang.css","moduleParts":{"pages/detail/detail.js":"af9a1c3d-467"},"imported":[],"importedBy":[{"uid":"af9a1c3d-468"}]},"af9a1c3d-468":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/detail/detail.vue","moduleParts":{"pages/detail/detail.js":"af9a1c3d-469"},"imported":[{"uid":"af9a1c3d-42"},{"uid":"af9a1c3d-18"},{"uid":"af9a1c3d-466"},{"uid":"af9a1c3d-40"},{"uid":"af9a1c3d-530","dynamic":true},{"uid":"af9a1c3d-608","dynamic":true}],"importedBy":[{"uid":"af9a1c3d-470"}]},"af9a1c3d-470":{"id":"uniPage://cGFnZXNcZGV0YWlsXGRldGFpbC52dWU","moduleParts":{"pages/detail/detail.js":"af9a1c3d-471"},"imported":[{"uid":"af9a1c3d-468"}],"importedBy":[{"uid":"af9a1c3d-0"}]},"af9a1c3d-472":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/order/order.vue?vue&type=style&index=0&lang.css","moduleParts":{"pages/order/order.js":"af9a1c3d-473"},"imported":[],"importedBy":[{"uid":"af9a1c3d-474"}]},"af9a1c3d-474":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/order/order.vue","moduleParts":{"pages/order/order.js":"af9a1c3d-475"},"imported":[{"uid":"af9a1c3d-38"},{"uid":"af9a1c3d-64"},{"uid":"af9a1c3d-42"},{"uid":"af9a1c3d-472"},{"uid":"af9a1c3d-40"},{"uid":"af9a1c3d-536","dynamic":true},{"uid":"af9a1c3d-542","dynamic":true},{"uid":"af9a1c3d-548","dynamic":true},{"uid":"af9a1c3d-554","dynamic":true},{"uid":"af9a1c3d-560","dynamic":true},{"uid":"af9a1c3d-566","dynamic":true}],"importedBy":[{"uid":"af9a1c3d-476"}]},"af9a1c3d-476":{"id":"uniPage://cGFnZXNcb3JkZXJcb3JkZXIudnVl","moduleParts":{"pages/order/order.js":"af9a1c3d-477"},"imported":[{"uid":"af9a1c3d-474"}],"importedBy":[{"uid":"af9a1c3d-0"}]},"af9a1c3d-478":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/order/detail.vue?vue&type=style&index=0&lang.scss","moduleParts":{"pages/order/detail.js":"af9a1c3d-479"},"imported":[],"importedBy":[{"uid":"af9a1c3d-480"}]},"af9a1c3d-480":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/order/detail.vue","moduleParts":{"pages/order/detail.js":"af9a1c3d-481"},"imported":[{"uid":"af9a1c3d-38"},{"uid":"af9a1c3d-64"},{"uid":"af9a1c3d-42"},{"uid":"af9a1c3d-478"},{"uid":"af9a1c3d-40"},{"uid":"af9a1c3d-614","dynamic":true},{"uid":"af9a1c3d-608","dynamic":true},{"uid":"af9a1c3d-620","dynamic":true},{"uid":"af9a1c3d-658","dynamic":true},{"uid":"af9a1c3d-664","dynamic":true}],"importedBy":[{"uid":"af9a1c3d-482"}]},"af9a1c3d-482":{"id":"uniPage://cGFnZXNcb3JkZXJcZGV0YWlsLnZ1ZQ","moduleParts":{"pages/order/detail.js":"af9a1c3d-483"},"imported":[{"uid":"af9a1c3d-480"}],"importedBy":[{"uid":"af9a1c3d-0"}]},"af9a1c3d-484":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/order/worker.vue?vue&type=style&index=0&lang.scss","moduleParts":{"pages/order/worker.js":"af9a1c3d-485"},"imported":[],"importedBy":[{"uid":"af9a1c3d-486"}]},"af9a1c3d-486":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/order/worker.vue","moduleParts":{"pages/order/worker.js":"af9a1c3d-487"},"imported":[{"uid":"af9a1c3d-38"},{"uid":"af9a1c3d-42"},{"uid":"af9a1c3d-484"},{"uid":"af9a1c3d-40"},{"uid":"af9a1c3d-614","dynamic":true},{"uid":"af9a1c3d-620","dynamic":true},{"uid":"af9a1c3d-658","dynamic":true},{"uid":"af9a1c3d-664","dynamic":true},{"uid":"af9a1c3d-608","dynamic":true}],"importedBy":[{"uid":"af9a1c3d-488"}]},"af9a1c3d-488":{"id":"uniPage://cGFnZXNcb3JkZXJcd29ya2VyLnZ1ZQ","moduleParts":{"pages/order/worker.js":"af9a1c3d-489"},"imported":[{"uid":"af9a1c3d-486"}],"importedBy":[{"uid":"af9a1c3d-0"}]},"af9a1c3d-490":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/order/myorder.vue?vue&type=style&index=0&lang.css","moduleParts":{"pages/order/myorder.js":"af9a1c3d-491"},"imported":[],"importedBy":[{"uid":"af9a1c3d-492"}]},"af9a1c3d-492":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/order/myorder.vue","moduleParts":{"pages/order/myorder.js":"af9a1c3d-493"},"imported":[{"uid":"af9a1c3d-38"},{"uid":"af9a1c3d-64"},{"uid":"af9a1c3d-42"},{"uid":"af9a1c3d-490"},{"uid":"af9a1c3d-40"},{"uid":"af9a1c3d-536","dynamic":true},{"uid":"af9a1c3d-542","dynamic":true},{"uid":"af9a1c3d-548","dynamic":true},{"uid":"af9a1c3d-554","dynamic":true},{"uid":"af9a1c3d-560","dynamic":true},{"uid":"af9a1c3d-566","dynamic":true}],"importedBy":[{"uid":"af9a1c3d-494"}]},"af9a1c3d-494":{"id":"uniPage://cGFnZXNcb3JkZXJcbXlvcmRlci52dWU","moduleParts":{"pages/order/myorder.js":"af9a1c3d-495"},"imported":[{"uid":"af9a1c3d-492"}],"importedBy":[{"uid":"af9a1c3d-0"}]},"af9a1c3d-496":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/company/index.vue?vue&type=style&index=0&lang.css","moduleParts":{"pages/company/index.js":"af9a1c3d-497"},"imported":[],"importedBy":[{"uid":"af9a1c3d-498"}]},"af9a1c3d-498":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/company/index.vue","moduleParts":{"pages/company/index.js":"af9a1c3d-499"},"imported":[{"uid":"af9a1c3d-38"},{"uid":"af9a1c3d-42"},{"uid":"af9a1c3d-496"},{"uid":"af9a1c3d-40"},{"uid":"af9a1c3d-536","dynamic":true},{"uid":"af9a1c3d-632","dynamic":true},{"uid":"af9a1c3d-542","dynamic":true},{"uid":"af9a1c3d-548","dynamic":true},{"uid":"af9a1c3d-578","dynamic":true},{"uid":"af9a1c3d-608","dynamic":true},{"uid":"af9a1c3d-554","dynamic":true},{"uid":"af9a1c3d-560","dynamic":true},{"uid":"af9a1c3d-566","dynamic":true}],"importedBy":[{"uid":"af9a1c3d-500"}]},"af9a1c3d-500":{"id":"uniPage://cGFnZXNcY29tcGFueVxpbmRleC52dWU","moduleParts":{"pages/company/index.js":"af9a1c3d-501"},"imported":[{"uid":"af9a1c3d-498"}],"importedBy":[{"uid":"af9a1c3d-0"}]},"af9a1c3d-502":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/company/record.vue?vue&type=style&index=0&lang.scss","moduleParts":{"pages/company/record.js":"af9a1c3d-503"},"imported":[],"importedBy":[{"uid":"af9a1c3d-504"}]},"af9a1c3d-504":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/company/record.vue","moduleParts":{"pages/company/record.js":"af9a1c3d-505"},"imported":[{"uid":"af9a1c3d-38"},{"uid":"af9a1c3d-42"},{"uid":"af9a1c3d-502"},{"uid":"af9a1c3d-40"},{"uid":"af9a1c3d-614","dynamic":true},{"uid":"af9a1c3d-620","dynamic":true},{"uid":"af9a1c3d-658","dynamic":true},{"uid":"af9a1c3d-530","dynamic":true},{"uid":"af9a1c3d-578","dynamic":true},{"uid":"af9a1c3d-664","dynamic":true},{"uid":"af9a1c3d-608","dynamic":true}],"importedBy":[{"uid":"af9a1c3d-506"}]},"af9a1c3d-506":{"id":"uniPage://cGFnZXNcY29tcGFueVxyZWNvcmQudnVl","moduleParts":{"pages/company/record.js":"af9a1c3d-507"},"imported":[{"uid":"af9a1c3d-504"}],"importedBy":[{"uid":"af9a1c3d-0"}]},"af9a1c3d-508":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/wallet/index.vue?vue&type=style&index=0&lang.scss","moduleParts":{"pages/wallet/index.js":"af9a1c3d-509"},"imported":[],"importedBy":[{"uid":"af9a1c3d-510"}]},"af9a1c3d-510":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/wallet/index.vue","moduleParts":{"pages/wallet/index.js":"af9a1c3d-511"},"imported":[{"uid":"af9a1c3d-38"},{"uid":"af9a1c3d-42"},{"uid":"af9a1c3d-508"},{"uid":"af9a1c3d-40"},{"uid":"af9a1c3d-608","dynamic":true},{"uid":"af9a1c3d-530","dynamic":true},{"uid":"af9a1c3d-620","dynamic":true},{"uid":"af9a1c3d-560","dynamic":true}],"importedBy":[{"uid":"af9a1c3d-512"}]},"af9a1c3d-512":{"id":"uniPage://cGFnZXNcd2FsbGV0XGluZGV4LnZ1ZQ","moduleParts":{"pages/wallet/index.js":"af9a1c3d-513"},"imported":[{"uid":"af9a1c3d-510"}],"importedBy":[{"uid":"af9a1c3d-0"}]},"af9a1c3d-514":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/wallet/recharge.vue?vue&type=style&index=0&lang.scss","moduleParts":{"pages/wallet/recharge.js":"af9a1c3d-515"},"imported":[],"importedBy":[{"uid":"af9a1c3d-516"}]},"af9a1c3d-516":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/wallet/recharge.vue","moduleParts":{"pages/wallet/recharge.js":"af9a1c3d-517"},"imported":[{"uid":"af9a1c3d-42"},{"uid":"af9a1c3d-514"},{"uid":"af9a1c3d-40"},{"uid":"af9a1c3d-578","dynamic":true},{"uid":"af9a1c3d-608","dynamic":true}],"importedBy":[{"uid":"af9a1c3d-518"}]},"af9a1c3d-518":{"id":"uniPage://cGFnZXNcd2FsbGV0XHJlY2hhcmdlLnZ1ZQ","moduleParts":{"pages/wallet/recharge.js":"af9a1c3d-519"},"imported":[{"uid":"af9a1c3d-516"}],"importedBy":[{"uid":"af9a1c3d-0"}]},"af9a1c3d-520":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/wallet/withdrawal.vue?vue&type=style&index=0&lang.scss","moduleParts":{"pages/wallet/withdrawal.js":"af9a1c3d-521"},"imported":[],"importedBy":[{"uid":"af9a1c3d-522"}]},"af9a1c3d-522":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/wallet/withdrawal.vue","moduleParts":{"pages/wallet/withdrawal.js":"af9a1c3d-523"},"imported":[{"uid":"af9a1c3d-42"},{"uid":"af9a1c3d-520"},{"uid":"af9a1c3d-40"},{"uid":"af9a1c3d-578","dynamic":true},{"uid":"af9a1c3d-608","dynamic":true}],"importedBy":[{"uid":"af9a1c3d-524"}]},"af9a1c3d-524":{"id":"uniPage://cGFnZXNcd2FsbGV0XHdpdGhkcmF3YWwudnVl","moduleParts":{"pages/wallet/withdrawal.js":"af9a1c3d-525"},"imported":[{"uid":"af9a1c3d-522"}],"importedBy":[{"uid":"af9a1c3d-0"}]},"af9a1c3d-526":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-icon/u-icon.vue?vue&type=style&index=0&scoped=bc34bf57&lang.scss","moduleParts":{"uni_modules/uview-plus/components/u-icon/u-icon.js":"af9a1c3d-527"},"imported":[],"importedBy":[{"uid":"af9a1c3d-528"}]},"af9a1c3d-528":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-icon/u-icon.vue","moduleParts":{"uni_modules/uview-plus/components/u-icon/u-icon.js":"af9a1c3d-529"},"imported":[{"uid":"af9a1c3d-98"},{"uid":"af9a1c3d-100"},{"uid":"af9a1c3d-140"},{"uid":"af9a1c3d-138"},{"uid":"af9a1c3d-130"},{"uid":"af9a1c3d-152"},{"uid":"af9a1c3d-42"},{"uid":"af9a1c3d-526"},{"uid":"af9a1c3d-40"}],"importedBy":[{"uid":"af9a1c3d-530"}]},"af9a1c3d-530":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtaWNvbi91LWljb24udnVl","moduleParts":{"uni_modules/uview-plus/components/u-icon/u-icon.js":"af9a1c3d-531"},"imported":[{"uid":"af9a1c3d-528"}],"importedBy":[{"uid":"af9a1c3d-374"},{"uid":"af9a1c3d-392"},{"uid":"af9a1c3d-398"},{"uid":"af9a1c3d-404"},{"uid":"af9a1c3d-444"},{"uid":"af9a1c3d-450"},{"uid":"af9a1c3d-468"},{"uid":"af9a1c3d-504"},{"uid":"af9a1c3d-510"},{"uid":"af9a1c3d-534"},{"uid":"af9a1c3d-546"},{"uid":"af9a1c3d-558"},{"uid":"af9a1c3d-576"},{"uid":"af9a1c3d-582"},{"uid":"af9a1c3d-594"},{"uid":"af9a1c3d-606"},{"uid":"af9a1c3d-612"},{"uid":"af9a1c3d-618"},{"uid":"af9a1c3d-690"}]},"af9a1c3d-532":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-search/u-search.vue?vue&type=style&index=0&scoped=db25ac38&lang.scss","moduleParts":{"uni_modules/uview-plus/components/u-search/u-search.js":"af9a1c3d-533"},"imported":[],"importedBy":[{"uid":"af9a1c3d-534"}]},"af9a1c3d-534":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-search/u-search.vue","moduleParts":{"uni_modules/uview-plus/components/u-search/u-search.js":"af9a1c3d-535"},"imported":[{"uid":"af9a1c3d-38"},{"uid":"af9a1c3d-118"},{"uid":"af9a1c3d-140"},{"uid":"af9a1c3d-138"},{"uid":"af9a1c3d-130"},{"uid":"af9a1c3d-42"},{"uid":"af9a1c3d-532"},{"uid":"af9a1c3d-40"},{"uid":"af9a1c3d-530","dynamic":true}],"importedBy":[{"uid":"af9a1c3d-536"}]},"af9a1c3d-536":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3Utc2VhcmNoL3Utc2VhcmNoLnZ1ZQ","moduleParts":{"uni_modules/uview-plus/components/u-search/u-search.js":"af9a1c3d-537"},"imported":[{"uid":"af9a1c3d-534"}],"importedBy":[{"uid":"af9a1c3d-380"},{"uid":"af9a1c3d-438"},{"uid":"af9a1c3d-474"},{"uid":"af9a1c3d-492"},{"uid":"af9a1c3d-498"}]},"af9a1c3d-538":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-sticky/u-sticky.vue?vue&type=style&index=0&scoped=442db378&lang.scss","moduleParts":{"uni_modules/uview-plus/components/u-sticky/u-sticky.js":"af9a1c3d-539"},"imported":[],"importedBy":[{"uid":"af9a1c3d-540"}]},"af9a1c3d-540":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-sticky/u-sticky.vue","moduleParts":{"uni_modules/uview-plus/components/u-sticky/u-sticky.js":"af9a1c3d-541"},"imported":[{"uid":"af9a1c3d-38"},{"uid":"af9a1c3d-120"},{"uid":"af9a1c3d-140"},{"uid":"af9a1c3d-138"},{"uid":"af9a1c3d-130"},{"uid":"af9a1c3d-154"},{"uid":"af9a1c3d-42"},{"uid":"af9a1c3d-538"},{"uid":"af9a1c3d-40"}],"importedBy":[{"uid":"af9a1c3d-542"}]},"af9a1c3d-542":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3Utc3RpY2t5L3Utc3RpY2t5LnZ1ZQ","moduleParts":{"uni_modules/uview-plus/components/u-sticky/u-sticky.js":"af9a1c3d-543"},"imported":[{"uid":"af9a1c3d-540"}],"importedBy":[{"uid":"af9a1c3d-380"},{"uid":"af9a1c3d-438"},{"uid":"af9a1c3d-474"},{"uid":"af9a1c3d-492"},{"uid":"af9a1c3d-498"}]},"af9a1c3d-544":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-tag/u-tag.vue?vue&type=style&index=0&scoped=90ff8a51&lang.scss","moduleParts":{"uni_modules/uview-plus/components/u-tag/u-tag.js":"af9a1c3d-545"},"imported":[],"importedBy":[{"uid":"af9a1c3d-546"}]},"af9a1c3d-546":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-tag/u-tag.vue","moduleParts":{"uni_modules/uview-plus/components/u-tag/u-tag.js":"af9a1c3d-547"},"imported":[{"uid":"af9a1c3d-124"},{"uid":"af9a1c3d-140"},{"uid":"af9a1c3d-138"},{"uid":"af9a1c3d-86"},{"uid":"af9a1c3d-42"},{"uid":"af9a1c3d-544"},{"uid":"af9a1c3d-40"},{"uid":"af9a1c3d-530","dynamic":true},{"uid":"af9a1c3d-670","dynamic":true}],"importedBy":[{"uid":"af9a1c3d-548"}]},"af9a1c3d-548":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtdGFnL3UtdGFnLnZ1ZQ","moduleParts":{"uni_modules/uview-plus/components/u-tag/u-tag.js":"af9a1c3d-549"},"imported":[{"uid":"af9a1c3d-546"}],"importedBy":[{"uid":"af9a1c3d-380"},{"uid":"af9a1c3d-392"},{"uid":"af9a1c3d-438"},{"uid":"af9a1c3d-474"},{"uid":"af9a1c3d-492"},{"uid":"af9a1c3d-498"}]},"af9a1c3d-550":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-loadmore/u-loadmore.vue?vue&type=style&index=0&scoped=80ed34f9&lang.scss","moduleParts":{"uni_modules/uview-plus/components/u-loadmore/u-loadmore.js":"af9a1c3d-551"},"imported":[],"importedBy":[{"uid":"af9a1c3d-552"}]},"af9a1c3d-552":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-loadmore/u-loadmore.vue","moduleParts":{"uni_modules/uview-plus/components/u-loadmore/u-loadmore.js":"af9a1c3d-553"},"imported":[{"uid":"af9a1c3d-114"},{"uid":"af9a1c3d-140"},{"uid":"af9a1c3d-138"},{"uid":"af9a1c3d-130"},{"uid":"af9a1c3d-42"},{"uid":"af9a1c3d-550"},{"uid":"af9a1c3d-40"},{"uid":"af9a1c3d-676","dynamic":true},{"uid":"af9a1c3d-682","dynamic":true}],"importedBy":[{"uid":"af9a1c3d-554"}]},"af9a1c3d-554":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtbG9hZG1vcmUvdS1sb2FkbW9yZS52dWU","moduleParts":{"uni_modules/uview-plus/components/u-loadmore/u-loadmore.js":"af9a1c3d-555"},"imported":[{"uid":"af9a1c3d-552"}],"importedBy":[{"uid":"af9a1c3d-380"},{"uid":"af9a1c3d-422"},{"uid":"af9a1c3d-438"},{"uid":"af9a1c3d-474"},{"uid":"af9a1c3d-492"},{"uid":"af9a1c3d-498"}]},"af9a1c3d-556":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-empty/u-empty.vue?vue&type=style&index=0&scoped=2eac7384&lang.scss","moduleParts":{"uni_modules/uview-plus/components/u-empty/u-empty.js":"af9a1c3d-557"},"imported":[],"importedBy":[{"uid":"af9a1c3d-558"}]},"af9a1c3d-558":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-empty/u-empty.vue","moduleParts":{"uni_modules/uview-plus/components/u-empty/u-empty.js":"af9a1c3d-559"},"imported":[{"uid":"af9a1c3d-92"},{"uid":"af9a1c3d-140"},{"uid":"af9a1c3d-138"},{"uid":"af9a1c3d-130"},{"uid":"af9a1c3d-42"},{"uid":"af9a1c3d-556"},{"uid":"af9a1c3d-40"},{"uid":"af9a1c3d-530","dynamic":true}],"importedBy":[{"uid":"af9a1c3d-560"}]},"af9a1c3d-560":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtZW1wdHkvdS1lbXB0eS52dWU","moduleParts":{"uni_modules/uview-plus/components/u-empty/u-empty.js":"af9a1c3d-561"},"imported":[{"uid":"af9a1c3d-558"}],"importedBy":[{"uid":"af9a1c3d-380"},{"uid":"af9a1c3d-422"},{"uid":"af9a1c3d-438"},{"uid":"af9a1c3d-474"},{"uid":"af9a1c3d-492"},{"uid":"af9a1c3d-498"},{"uid":"af9a1c3d-510"}]},"af9a1c3d-562":{"id":"D:/zcweb/uniapp/temporaryworker/src/components/firstui/fui-date-picker/fui-date-picker.vue?vue&type=style&index=0&scoped=42055a14&lang.css","moduleParts":{"components/firstui/fui-date-picker/fui-date-picker.js":"af9a1c3d-563"},"imported":[],"importedBy":[{"uid":"af9a1c3d-564"}]},"af9a1c3d-564":{"id":"D:/zcweb/uniapp/temporaryworker/src/components/firstui/fui-date-picker/fui-date-picker.vue","moduleParts":{"components/firstui/fui-date-picker/fui-date-picker.js":"af9a1c3d-565"},"imported":[{"uid":"af9a1c3d-38"},{"uid":"af9a1c3d-42"},{"uid":"af9a1c3d-562"},{"uid":"af9a1c3d-40"}],"importedBy":[{"uid":"af9a1c3d-566"}]},"af9a1c3d-566":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvY29tcG9uZW50cy9maXJzdHVpL2Z1aS1kYXRlLXBpY2tlci9mdWktZGF0ZS1waWNrZXIudnVl","moduleParts":{"components/firstui/fui-date-picker/fui-date-picker.js":"af9a1c3d-567"},"imported":[{"uid":"af9a1c3d-564"}],"importedBy":[{"uid":"af9a1c3d-380"},{"uid":"af9a1c3d-392"},{"uid":"af9a1c3d-438"},{"uid":"af9a1c3d-474"},{"uid":"af9a1c3d-492"},{"uid":"af9a1c3d-498"}]},"af9a1c3d-568":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uni-popup/components/uni-popup/uni-popup.vue?vue&type=style&index=0&lang.scss","moduleParts":{"uni_modules/uni-popup/components/uni-popup/uni-popup.js":"af9a1c3d-569"},"imported":[],"importedBy":[{"uid":"af9a1c3d-570"}]},"af9a1c3d-570":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uni-popup/components/uni-popup/uni-popup.vue","moduleParts":{"uni_modules/uni-popup/components/uni-popup/uni-popup.js":"af9a1c3d-571"},"imported":[{"uid":"af9a1c3d-38"},{"uid":"af9a1c3d-42"},{"uid":"af9a1c3d-568"},{"uid":"af9a1c3d-40"},{"uid":"af9a1c3d-686","dynamic":true}],"importedBy":[{"uid":"af9a1c3d-572"}]},"af9a1c3d-572":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdW5pLXBvcHVwL2NvbXBvbmVudHMvdW5pLXBvcHVwL3VuaS1wb3B1cC52dWU","moduleParts":{"uni_modules/uni-popup/components/uni-popup/uni-popup.js":"af9a1c3d-573"},"imported":[{"uid":"af9a1c3d-570"}],"importedBy":[{"uid":"af9a1c3d-386"}]},"af9a1c3d-574":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-input/u-input.vue?vue&type=style&index=0&scoped=a5e5d5c3&lang.scss","moduleParts":{"uni_modules/uview-plus/components/u-input/u-input.js":"af9a1c3d-575"},"imported":[],"importedBy":[{"uid":"af9a1c3d-576"}]},"af9a1c3d-576":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-input/u-input.vue","moduleParts":{"uni_modules/uview-plus/components/u-input/u-input.js":"af9a1c3d-577"},"imported":[{"uid":"af9a1c3d-102"},{"uid":"af9a1c3d-140"},{"uid":"af9a1c3d-138"},{"uid":"af9a1c3d-148"},{"uid":"af9a1c3d-130"},{"uid":"af9a1c3d-42"},{"uid":"af9a1c3d-574"},{"uid":"af9a1c3d-40"},{"uid":"af9a1c3d-530","dynamic":true}],"importedBy":[{"uid":"af9a1c3d-578"}]},"af9a1c3d-578":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtaW5wdXQvdS1pbnB1dC52dWU","moduleParts":{"uni_modules/uview-plus/components/u-input/u-input.js":"af9a1c3d-579"},"imported":[{"uid":"af9a1c3d-576"}],"importedBy":[{"uid":"af9a1c3d-392"},{"uid":"af9a1c3d-404"},{"uid":"af9a1c3d-410"},{"uid":"af9a1c3d-438"},{"uid":"af9a1c3d-450"},{"uid":"af9a1c3d-462"},{"uid":"af9a1c3d-498"},{"uid":"af9a1c3d-504"},{"uid":"af9a1c3d-516"},{"uid":"af9a1c3d-522"}]},"af9a1c3d-580":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-form-item/u-form-item.vue?vue&type=style&index=0&scoped=98223e3d&lang.scss","moduleParts":{"uni_modules/uview-plus/components/u-form-item/u-form-item.js":"af9a1c3d-581"},"imported":[],"importedBy":[{"uid":"af9a1c3d-582"}]},"af9a1c3d-582":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-form-item/u-form-item.vue","moduleParts":{"uni_modules/uview-plus/components/u-form-item/u-form-item.js":"af9a1c3d-583"},"imported":[{"uid":"af9a1c3d-94"},{"uid":"af9a1c3d-140"},{"uid":"af9a1c3d-138"},{"uid":"af9a1c3d-84"},{"uid":"af9a1c3d-156"},{"uid":"af9a1c3d-130"},{"uid":"af9a1c3d-42"},{"uid":"af9a1c3d-580"},{"uid":"af9a1c3d-40"},{"uid":"af9a1c3d-530","dynamic":true},{"uid":"af9a1c3d-676","dynamic":true}],"importedBy":[{"uid":"af9a1c3d-584"}]},"af9a1c3d-584":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtZm9ybS1pdGVtL3UtZm9ybS1pdGVtLnZ1ZQ","moduleParts":{"uni_modules/uview-plus/components/u-form-item/u-form-item.js":"af9a1c3d-585"},"imported":[{"uid":"af9a1c3d-582"}],"importedBy":[{"uid":"af9a1c3d-392"},{"uid":"af9a1c3d-404"},{"uid":"af9a1c3d-410"},{"uid":"af9a1c3d-462"}]},"af9a1c3d-586":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-textarea/u-textarea.vue?vue&type=style&index=0&scoped=574e2c9d&lang.scss","moduleParts":{"uni_modules/uview-plus/components/u-textarea/u-textarea.js":"af9a1c3d-587"},"imported":[],"importedBy":[{"uid":"af9a1c3d-588"}]},"af9a1c3d-588":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-textarea/u-textarea.vue","moduleParts":{"uni_modules/uview-plus/components/u-textarea/u-textarea.js":"af9a1c3d-589"},"imported":[{"uid":"af9a1c3d-132"},{"uid":"af9a1c3d-140"},{"uid":"af9a1c3d-138"},{"uid":"af9a1c3d-130"},{"uid":"af9a1c3d-42"},{"uid":"af9a1c3d-586"},{"uid":"af9a1c3d-40"}],"importedBy":[{"uid":"af9a1c3d-590"}]},"af9a1c3d-590":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtdGV4dGFyZWEvdS10ZXh0YXJlYS52dWU","moduleParts":{"uni_modules/uview-plus/components/u-textarea/u-textarea.js":"af9a1c3d-591"},"imported":[{"uid":"af9a1c3d-588"}],"importedBy":[{"uid":"af9a1c3d-392"},{"uid":"af9a1c3d-410"},{"uid":"af9a1c3d-462"}]},"af9a1c3d-592":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-number-box/u-number-box.vue?vue&type=style&index=0&scoped=ff7ec725&lang.scss","moduleParts":{"uni_modules/uview-plus/components/u-number-box/u-number-box.js":"af9a1c3d-593"},"imported":[],"importedBy":[{"uid":"af9a1c3d-594"}]},"af9a1c3d-594":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-number-box/u-number-box.vue","moduleParts":{"uni_modules/uview-plus/components/u-number-box/u-number-box.js":"af9a1c3d-595"},"imported":[{"uid":"af9a1c3d-116"},{"uid":"af9a1c3d-140"},{"uid":"af9a1c3d-138"},{"uid":"af9a1c3d-130"},{"uid":"af9a1c3d-42"},{"uid":"af9a1c3d-592"},{"uid":"af9a1c3d-40"},{"uid":"af9a1c3d-530","dynamic":true}],"importedBy":[{"uid":"af9a1c3d-596"}]},"af9a1c3d-596":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtbnVtYmVyLWJveC91LW51bWJlci1ib3gudnVl","moduleParts":{"uni_modules/uview-plus/components/u-number-box/u-number-box.js":"af9a1c3d-597"},"imported":[{"uid":"af9a1c3d-594"}],"importedBy":[{"uid":"af9a1c3d-392"}]},"af9a1c3d-598":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-form/u-form.vue","moduleParts":{"uni_modules/uview-plus/components/u-form/u-form.js":"af9a1c3d-599"},"imported":[{"uid":"af9a1c3d-96"},{"uid":"af9a1c3d-140"},{"uid":"af9a1c3d-138"},{"uid":"af9a1c3d-370"},{"uid":"af9a1c3d-130"},{"uid":"af9a1c3d-86"},{"uid":"af9a1c3d-40"}],"importedBy":[{"uid":"af9a1c3d-600"}]},"af9a1c3d-600":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtZm9ybS91LWZvcm0udnVl","moduleParts":{"uni_modules/uview-plus/components/u-form/u-form.js":"af9a1c3d-601"},"imported":[{"uid":"af9a1c3d-598"}],"importedBy":[{"uid":"af9a1c3d-392"},{"uid":"af9a1c3d-404"},{"uid":"af9a1c3d-410"},{"uid":"af9a1c3d-462"}]},"af9a1c3d-602":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-button/u-button.vue?vue&type=script&lang.ts","moduleParts":{"uni_modules/uview-plus/components/u-button/u-button.js":"af9a1c3d-603"},"imported":[{"uid":"af9a1c3d-364"},{"uid":"af9a1c3d-368"},{"uid":"af9a1c3d-140"},{"uid":"af9a1c3d-138"},{"uid":"af9a1c3d-88"},{"uid":"af9a1c3d-130"},{"uid":"af9a1c3d-150"},{"uid":"af9a1c3d-156"}],"importedBy":[{"uid":"af9a1c3d-606"}]},"af9a1c3d-604":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-button/u-button.vue?vue&type=style&index=0&scoped=52094d52&lang.scss","moduleParts":{"uni_modules/uview-plus/components/u-button/u-button.js":"af9a1c3d-605"},"imported":[],"importedBy":[{"uid":"af9a1c3d-606"}]},"af9a1c3d-606":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-button/u-button.vue","moduleParts":{"uni_modules/uview-plus/components/u-button/u-button.js":"af9a1c3d-607"},"imported":[{"uid":"af9a1c3d-602"},{"uid":"af9a1c3d-42"},{"uid":"af9a1c3d-604"},{"uid":"af9a1c3d-40"},{"uid":"af9a1c3d-682","dynamic":true},{"uid":"af9a1c3d-530","dynamic":true}],"importedBy":[{"uid":"af9a1c3d-608"}]},"af9a1c3d-608":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtYnV0dG9uL3UtYnV0dG9uLnZ1ZQ","moduleParts":{"uni_modules/uview-plus/components/u-button/u-button.js":"af9a1c3d-609"},"imported":[{"uid":"af9a1c3d-606"}],"importedBy":[{"uid":"af9a1c3d-392"},{"uid":"af9a1c3d-404"},{"uid":"af9a1c3d-410"},{"uid":"af9a1c3d-438"},{"uid":"af9a1c3d-444"},{"uid":"af9a1c3d-450"},{"uid":"af9a1c3d-462"},{"uid":"af9a1c3d-468"},{"uid":"af9a1c3d-480"},{"uid":"af9a1c3d-486"},{"uid":"af9a1c3d-498"},{"uid":"af9a1c3d-504"},{"uid":"af9a1c3d-510"},{"uid":"af9a1c3d-516"},{"uid":"af9a1c3d-522"}]},"af9a1c3d-610":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-avatar/u-avatar.vue?vue&type=style&index=0&scoped=4139b3f3&lang.scss","moduleParts":{"uni_modules/uview-plus/components/u-avatar/u-avatar.js":"af9a1c3d-611"},"imported":[],"importedBy":[{"uid":"af9a1c3d-612"}]},"af9a1c3d-612":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-avatar/u-avatar.vue","moduleParts":{"uni_modules/uview-plus/components/u-avatar/u-avatar.js":"af9a1c3d-613"},"imported":[{"uid":"af9a1c3d-80"},{"uid":"af9a1c3d-140"},{"uid":"af9a1c3d-138"},{"uid":"af9a1c3d-130"},{"uid":"af9a1c3d-42"},{"uid":"af9a1c3d-610"},{"uid":"af9a1c3d-40"},{"uid":"af9a1c3d-530","dynamic":true},{"uid":"af9a1c3d-692","dynamic":true}],"importedBy":[{"uid":"af9a1c3d-614"}]},"af9a1c3d-614":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtYXZhdGFyL3UtYXZhdGFyLnZ1ZQ","moduleParts":{"uni_modules/uview-plus/components/u-avatar/u-avatar.js":"af9a1c3d-615"},"imported":[{"uid":"af9a1c3d-612"}],"importedBy":[{"uid":"af9a1c3d-398"},{"uid":"af9a1c3d-404"},{"uid":"af9a1c3d-444"},{"uid":"af9a1c3d-450"},{"uid":"af9a1c3d-456"},{"uid":"af9a1c3d-480"},{"uid":"af9a1c3d-486"},{"uid":"af9a1c3d-504"}]},"af9a1c3d-616":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-cell/u-cell.vue?vue&type=style&index=0&scoped=3b946341&lang.scss","moduleParts":{"uni_modules/uview-plus/components/u-cell/u-cell.js":"af9a1c3d-617"},"imported":[],"importedBy":[{"uid":"af9a1c3d-618"}]},"af9a1c3d-618":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-cell/u-cell.vue","moduleParts":{"uni_modules/uview-plus/components/u-cell/u-cell.js":"af9a1c3d-619"},"imported":[{"uid":"af9a1c3d-90"},{"uid":"af9a1c3d-140"},{"uid":"af9a1c3d-138"},{"uid":"af9a1c3d-130"},{"uid":"af9a1c3d-86"},{"uid":"af9a1c3d-42"},{"uid":"af9a1c3d-616"},{"uid":"af9a1c3d-40"},{"uid":"af9a1c3d-530","dynamic":true},{"uid":"af9a1c3d-676","dynamic":true}],"importedBy":[{"uid":"af9a1c3d-620"}]},"af9a1c3d-620":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtY2VsbC91LWNlbGwudnVl","moduleParts":{"uni_modules/uview-plus/components/u-cell/u-cell.js":"af9a1c3d-621"},"imported":[{"uid":"af9a1c3d-618"}],"importedBy":[{"uid":"af9a1c3d-404"},{"uid":"af9a1c3d-422"},{"uid":"af9a1c3d-450"},{"uid":"af9a1c3d-480"},{"uid":"af9a1c3d-486"},{"uid":"af9a1c3d-504"},{"uid":"af9a1c3d-510"}]},"af9a1c3d-622":{"id":"D:/zcweb/uniapp/temporaryworker/src/components/firstui/fui-upload/fui-upload.vue?vue&type=style&index=0&scoped=2d5d0fa0&lang.css","moduleParts":{"components/firstui/fui-upload/fui-upload.js":"af9a1c3d-623"},"imported":[],"importedBy":[{"uid":"af9a1c3d-624"}]},"af9a1c3d-624":{"id":"D:/zcweb/uniapp/temporaryworker/src/components/firstui/fui-upload/fui-upload.vue","moduleParts":{"components/firstui/fui-upload/fui-upload.js":"af9a1c3d-625"},"imported":[{"uid":"af9a1c3d-38"},{"uid":"af9a1c3d-42"},{"uid":"af9a1c3d-622"},{"uid":"af9a1c3d-40"},{"uid":"af9a1c3d-640","dynamic":true}],"importedBy":[{"uid":"af9a1c3d-626"}]},"af9a1c3d-626":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvY29tcG9uZW50cy9maXJzdHVpL2Z1aS11cGxvYWQvZnVpLXVwbG9hZC52dWU","moduleParts":{"components/firstui/fui-upload/fui-upload.js":"af9a1c3d-627"},"imported":[{"uid":"af9a1c3d-624"}],"importedBy":[{"uid":"af9a1c3d-410"},{"uid":"af9a1c3d-444"},{"uid":"af9a1c3d-462"}]},"af9a1c3d-628":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-subsection/u-subsection.vue?vue&type=style&index=0&scoped=bb8563b6&lang.scss","moduleParts":{"uni_modules/uview-plus/components/u-subsection/u-subsection.js":"af9a1c3d-629"},"imported":[],"importedBy":[{"uid":"af9a1c3d-630"}]},"af9a1c3d-630":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-subsection/u-subsection.vue","moduleParts":{"uni_modules/uview-plus/components/u-subsection/u-subsection.js":"af9a1c3d-631"},"imported":[{"uid":"af9a1c3d-38"},{"uid":"af9a1c3d-122"},{"uid":"af9a1c3d-140"},{"uid":"af9a1c3d-138"},{"uid":"af9a1c3d-130"},{"uid":"af9a1c3d-42"},{"uid":"af9a1c3d-628"},{"uid":"af9a1c3d-40"}],"importedBy":[{"uid":"af9a1c3d-632"}]},"af9a1c3d-632":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3Utc3Vic2VjdGlvbi91LXN1YnNlY3Rpb24udnVl","moduleParts":{"uni_modules/uview-plus/components/u-subsection/u-subsection.js":"af9a1c3d-633"},"imported":[{"uid":"af9a1c3d-630"}],"importedBy":[{"uid":"af9a1c3d-438"},{"uid":"af9a1c3d-498"}]},"af9a1c3d-634":{"id":"D:/zcweb/uniapp/temporaryworker/src/components/firstui/fui-icon/fui-icon.js","moduleParts":{"components/firstui/fui-icon/fui-icon.js":"af9a1c3d-635"},"imported":[],"importedBy":[{"uid":"af9a1c3d-638"}]},"af9a1c3d-636":{"id":"D:/zcweb/uniapp/temporaryworker/src/components/firstui/fui-icon/fui-icon.vue?vue&type=style&index=0&scoped=2cb4dbf4&lang.css","moduleParts":{"components/firstui/fui-icon/fui-icon.js":"af9a1c3d-637"},"imported":[],"importedBy":[{"uid":"af9a1c3d-638"}]},"af9a1c3d-638":{"id":"D:/zcweb/uniapp/temporaryworker/src/components/firstui/fui-icon/fui-icon.vue","moduleParts":{"components/firstui/fui-icon/fui-icon.js":"af9a1c3d-639"},"imported":[{"uid":"af9a1c3d-38"},{"uid":"af9a1c3d-634"},{"uid":"af9a1c3d-42"},{"uid":"af9a1c3d-636"},{"uid":"af9a1c3d-40"}],"importedBy":[{"uid":"af9a1c3d-640"}]},"af9a1c3d-640":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvY29tcG9uZW50cy9maXJzdHVpL2Z1aS1pY29uL2Z1aS1pY29uLnZ1ZQ","moduleParts":{"components/firstui/fui-icon/fui-icon.js":"af9a1c3d-641"},"imported":[{"uid":"af9a1c3d-638"}],"importedBy":[{"uid":"af9a1c3d-444"},{"uid":"af9a1c3d-624"}]},"af9a1c3d-642":{"id":"D:/zcweb/uniapp/temporaryworker/src/components/firstui/fui-list-cell/fui-list-cell.vue?vue&type=style&index=0&scoped=77eef2c9&lang.css","moduleParts":{"components/firstui/fui-list-cell/fui-list-cell.js":"af9a1c3d-643"},"imported":[],"importedBy":[{"uid":"af9a1c3d-644"}]},"af9a1c3d-644":{"id":"D:/zcweb/uniapp/temporaryworker/src/components/firstui/fui-list-cell/fui-list-cell.vue","moduleParts":{"components/firstui/fui-list-cell/fui-list-cell.js":"af9a1c3d-645"},"imported":[{"uid":"af9a1c3d-38"},{"uid":"af9a1c3d-42"},{"uid":"af9a1c3d-642"},{"uid":"af9a1c3d-40"}],"importedBy":[{"uid":"af9a1c3d-646"}]},"af9a1c3d-646":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvY29tcG9uZW50cy9maXJzdHVpL2Z1aS1saXN0LWNlbGwvZnVpLWxpc3QtY2VsbC52dWU","moduleParts":{"components/firstui/fui-list-cell/fui-list-cell.js":"af9a1c3d-647"},"imported":[{"uid":"af9a1c3d-644"}],"importedBy":[{"uid":"af9a1c3d-456"}]},"af9a1c3d-648":{"id":"D:/zcweb/uniapp/temporaryworker/src/components/firstui/fui-list/fui-list.vue?vue&type=style&index=0&scoped=61b84bd4&lang.css","moduleParts":{"components/firstui/fui-list/fui-list.js":"af9a1c3d-649"},"imported":[],"importedBy":[{"uid":"af9a1c3d-650"}]},"af9a1c3d-650":{"id":"D:/zcweb/uniapp/temporaryworker/src/components/firstui/fui-list/fui-list.vue","moduleParts":{"components/firstui/fui-list/fui-list.js":"af9a1c3d-651"},"imported":[{"uid":"af9a1c3d-42"},{"uid":"af9a1c3d-648"},{"uid":"af9a1c3d-40"}],"importedBy":[{"uid":"af9a1c3d-652"}]},"af9a1c3d-652":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvY29tcG9uZW50cy9maXJzdHVpL2Z1aS1saXN0L2Z1aS1saXN0LnZ1ZQ","moduleParts":{"components/firstui/fui-list/fui-list.js":"af9a1c3d-653"},"imported":[{"uid":"af9a1c3d-650"}],"importedBy":[{"uid":"af9a1c3d-456"}]},"af9a1c3d-654":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-list-item/u-list-item.vue?vue&type=style&index=0&scoped=f5ff7ac7&lang.scss","moduleParts":{"uni_modules/uview-plus/components/u-list-item/u-list-item.js":"af9a1c3d-655"},"imported":[],"importedBy":[{"uid":"af9a1c3d-656"}]},"af9a1c3d-656":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-list-item/u-list-item.vue","moduleParts":{"uni_modules/uview-plus/components/u-list-item/u-list-item.js":"af9a1c3d-657"},"imported":[{"uid":"af9a1c3d-108"},{"uid":"af9a1c3d-140"},{"uid":"af9a1c3d-138"},{"uid":"af9a1c3d-130"},{"uid":"af9a1c3d-42"},{"uid":"af9a1c3d-654"},{"uid":"af9a1c3d-40"}],"importedBy":[{"uid":"af9a1c3d-658"}]},"af9a1c3d-658":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtbGlzdC1pdGVtL3UtbGlzdC1pdGVtLnZ1ZQ","moduleParts":{"uni_modules/uview-plus/components/u-list-item/u-list-item.js":"af9a1c3d-659"},"imported":[{"uid":"af9a1c3d-656"}],"importedBy":[{"uid":"af9a1c3d-480"},{"uid":"af9a1c3d-486"},{"uid":"af9a1c3d-504"}]},"af9a1c3d-660":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-list/u-list.vue?vue&type=style&index=0&scoped=e8455553&lang.scss","moduleParts":{"uni_modules/uview-plus/components/u-list/u-list.js":"af9a1c3d-661"},"imported":[],"importedBy":[{"uid":"af9a1c3d-662"}]},"af9a1c3d-662":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-list/u-list.vue","moduleParts":{"uni_modules/uview-plus/components/u-list/u-list.js":"af9a1c3d-663"},"imported":[{"uid":"af9a1c3d-110"},{"uid":"af9a1c3d-140"},{"uid":"af9a1c3d-138"},{"uid":"af9a1c3d-130"},{"uid":"af9a1c3d-42"},{"uid":"af9a1c3d-660"},{"uid":"af9a1c3d-40"}],"importedBy":[{"uid":"af9a1c3d-664"}]},"af9a1c3d-664":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtbGlzdC91LWxpc3QudnVl","moduleParts":{"uni_modules/uview-plus/components/u-list/u-list.js":"af9a1c3d-665"},"imported":[{"uid":"af9a1c3d-662"}],"importedBy":[{"uid":"af9a1c3d-480"},{"uid":"af9a1c3d-486"},{"uid":"af9a1c3d-504"}]},"af9a1c3d-666":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-transition/u-transition.vue?vue&type=style&index=0&scoped=69991aca&lang.scss","moduleParts":{"uni_modules/uview-plus/components/u-transition/u-transition.js":"af9a1c3d-667"},"imported":[],"importedBy":[{"uid":"af9a1c3d-668"}]},"af9a1c3d-668":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-transition/u-transition.vue","moduleParts":{"uni_modules/uview-plus/components/u-transition/u-transition.js":"af9a1c3d-669"},"imported":[{"uid":"af9a1c3d-134"},{"uid":"af9a1c3d-140"},{"uid":"af9a1c3d-138"},{"uid":"af9a1c3d-130"},{"uid":"af9a1c3d-136"},{"uid":"af9a1c3d-42"},{"uid":"af9a1c3d-666"},{"uid":"af9a1c3d-40"}],"importedBy":[{"uid":"af9a1c3d-670"}]},"af9a1c3d-670":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtdHJhbnNpdGlvbi91LXRyYW5zaXRpb24udnVl","moduleParts":{"uni_modules/uview-plus/components/u-transition/u-transition.js":"af9a1c3d-671"},"imported":[{"uid":"af9a1c3d-668"}],"importedBy":[{"uid":"af9a1c3d-546"}]},"af9a1c3d-672":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-line/u-line.vue?vue&type=style&index=0&scoped=18143249&lang.scss","moduleParts":{"uni_modules/uview-plus/components/u-line/u-line.js":"af9a1c3d-673"},"imported":[],"importedBy":[{"uid":"af9a1c3d-674"}]},"af9a1c3d-674":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-line/u-line.vue","moduleParts":{"uni_modules/uview-plus/components/u-line/u-line.js":"af9a1c3d-675"},"imported":[{"uid":"af9a1c3d-104"},{"uid":"af9a1c3d-140"},{"uid":"af9a1c3d-138"},{"uid":"af9a1c3d-130"},{"uid":"af9a1c3d-42"},{"uid":"af9a1c3d-672"},{"uid":"af9a1c3d-40"}],"importedBy":[{"uid":"af9a1c3d-676"}]},"af9a1c3d-676":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtbGluZS91LWxpbmUudnVl","moduleParts":{"uni_modules/uview-plus/components/u-line/u-line.js":"af9a1c3d-677"},"imported":[{"uid":"af9a1c3d-674"}],"importedBy":[{"uid":"af9a1c3d-552"},{"uid":"af9a1c3d-582"},{"uid":"af9a1c3d-618"}]},"af9a1c3d-678":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-loading-icon/u-loading-icon.vue?vue&type=style&index=0&scoped=bfe4499f&lang.scss","moduleParts":{"uni_modules/uview-plus/components/u-loading-icon/u-loading-icon.js":"af9a1c3d-679"},"imported":[],"importedBy":[{"uid":"af9a1c3d-680"}]},"af9a1c3d-680":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-loading-icon/u-loading-icon.vue","moduleParts":{"uni_modules/uview-plus/components/u-loading-icon/u-loading-icon.js":"af9a1c3d-681"},"imported":[{"uid":"af9a1c3d-112"},{"uid":"af9a1c3d-140"},{"uid":"af9a1c3d-138"},{"uid":"af9a1c3d-130"},{"uid":"af9a1c3d-146"},{"uid":"af9a1c3d-42"},{"uid":"af9a1c3d-678"},{"uid":"af9a1c3d-40"}],"importedBy":[{"uid":"af9a1c3d-682"}]},"af9a1c3d-682":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtbG9hZGluZy1pY29uL3UtbG9hZGluZy1pY29uLnZ1ZQ","moduleParts":{"uni_modules/uview-plus/components/u-loading-icon/u-loading-icon.js":"af9a1c3d-683"},"imported":[{"uid":"af9a1c3d-680"}],"importedBy":[{"uid":"af9a1c3d-552"},{"uid":"af9a1c3d-606"}]},"af9a1c3d-684":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uni-transition/components/uni-transition/uni-transition.vue","moduleParts":{"uni_modules/uni-transition/components/uni-transition/uni-transition.js":"af9a1c3d-685"},"imported":[{"uid":"af9a1c3d-78"},{"uid":"af9a1c3d-42"},{"uid":"af9a1c3d-40"}],"importedBy":[{"uid":"af9a1c3d-686"}]},"af9a1c3d-686":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdW5pLXRyYW5zaXRpb24vY29tcG9uZW50cy91bmktdHJhbnNpdGlvbi91bmktdHJhbnNpdGlvbi52dWU","moduleParts":{"uni_modules/uni-transition/components/uni-transition/uni-transition.js":"af9a1c3d-687"},"imported":[{"uid":"af9a1c3d-684"}],"importedBy":[{"uid":"af9a1c3d-570"}]},"af9a1c3d-688":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-text/u-text.vue?vue&type=style&index=0&scoped=8194d41c&lang.scss","moduleParts":{"uni_modules/uview-plus/components/u-text/u-text.js":"af9a1c3d-689"},"imported":[],"importedBy":[{"uid":"af9a1c3d-690"}]},"af9a1c3d-690":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-text/u-text.vue","moduleParts":{"uni_modules/uview-plus/components/u-text/u-text.js":"af9a1c3d-691"},"imported":[{"uid":"af9a1c3d-38"},{"uid":"af9a1c3d-126"},{"uid":"af9a1c3d-128"},{"uid":"af9a1c3d-140"},{"uid":"af9a1c3d-138"},{"uid":"af9a1c3d-364"},{"uid":"af9a1c3d-368"},{"uid":"af9a1c3d-130"},{"uid":"af9a1c3d-42"},{"uid":"af9a1c3d-688"},{"uid":"af9a1c3d-40"},{"uid":"af9a1c3d-530","dynamic":true},{"uid":"af9a1c3d-698","dynamic":true}],"importedBy":[{"uid":"af9a1c3d-692"}]},"af9a1c3d-692":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtdGV4dC91LXRleHQudnVl","moduleParts":{"uni_modules/uview-plus/components/u-text/u-text.js":"af9a1c3d-693"},"imported":[{"uid":"af9a1c3d-690"}],"importedBy":[{"uid":"af9a1c3d-612"}]},"af9a1c3d-694":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-link/u-link.vue?vue&type=style&index=0&scoped=d6e711cb&lang.scss","moduleParts":{"uni_modules/uview-plus/components/u-link/u-link.js":"af9a1c3d-695"},"imported":[],"importedBy":[{"uid":"af9a1c3d-696"}]},"af9a1c3d-696":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-link/u-link.vue","moduleParts":{"uni_modules/uview-plus/components/u-link/u-link.js":"af9a1c3d-697"},"imported":[{"uid":"af9a1c3d-38"},{"uid":"af9a1c3d-106"},{"uid":"af9a1c3d-140"},{"uid":"af9a1c3d-138"},{"uid":"af9a1c3d-130"},{"uid":"af9a1c3d-42"},{"uid":"af9a1c3d-694"},{"uid":"af9a1c3d-40"}],"importedBy":[{"uid":"af9a1c3d-698"}]},"af9a1c3d-698":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtbGluay91LWxpbmsudnVl","moduleParts":{"uni_modules/uview-plus/components/u-link/u-link.js":"af9a1c3d-699"},"imported":[{"uid":"af9a1c3d-696"}],"importedBy":[{"uid":"af9a1c3d-690"}]},"af9a1c3d-700":{"id":"D:/zcweb/uniapp/temporaryworker/src/manifest-json-js","moduleParts":{},"imported":[],"importedBy":[{"uid":"af9a1c3d-0"}]}},"env":{"rollup":"4.20.0"},"options":{"gzip":false,"brotli":false,"sourcemap":false}};
 
     const run = () => {
       const width = window.innerWidth;

--
Gitblit v1.9.1