From 3fb674916994deff93d3335e263e07dfb5946a8d Mon Sep 17 00:00:00 2001
From: MrShi <1878285526@qq.com>
Date: 星期四, 21 八月 2025 17:47:52 +0800
Subject: [PATCH] 优化

---
 small-program/pages/using-workers/using-workers.vue |   74 +++++++++++++++++++++---------------
 1 files changed, 43 insertions(+), 31 deletions(-)

diff --git a/small-program/pages/using-workers/using-workers.vue b/small-program/pages/using-workers/using-workers.vue
index a7bddd6..379a5c5 100644
--- a/small-program/pages/using-workers/using-workers.vue
+++ b/small-program/pages/using-workers/using-workers.vue
@@ -23,8 +23,11 @@
 					</view>
 					<view class="list-item-row">
 						<view class="list-item-row-label">鍦扮偣鎻忚堪</view>
-						<view class="list-item-row-val">
+						<!-- <view class="list-item-row-val">
 							<input type="text" v-model="form.locationRemark" placeholder="璇疯緭鍏�" />
+						</view> -->
+						<view class="list-item-row-val">
+							<textarea v-model="form.locationRemark" cols="30" rows="10" placeholder="璇疯緭鍏�" maxlength="200"></textarea>
 						</view>
 					</view>
 				</template>
@@ -195,18 +198,22 @@
 				this.$u.api.getDetail({
 					orderId: option.id
 				}).then(res => {
-					this.info = res.data
-					for (const key in this.form) {
-						this.form[key] = res.data[key]
+					if (res.code === 200) {
+						this.info = res.data
+						for (const key in this.form) {
+							this.form[key] = res.data[key]
+						}
+						this.form.days = res.data.totalDays
+						this.form.price = Number(this.form.price) / 100
+						if (!this.form.multifileList) {
+							this.form.multifileList = []
+						}
 					}
-					this.form.days = res.data.totalDays
-					this.form.price = Number(this.form.price) / 100
-					if (!this.form.multifileList) {
-						this.form.multifileList = []
-					}
+					
 				})
 			} else {
 				this.form.linkPhone = this.userInfo.telephone
+				this.form.linkName = this.userInfo.name
 				this.form.days = option.days
 				this.form.startDate = option.startDate
 				this.form.endDate = option.endDate
@@ -253,7 +260,7 @@
 								})
 								setTimeout(() => {
 									uni.navigateBack({ delta: 1 });
-									uni.$emit('refresh')
+									// uni.$emit('refresh')
 								}, 1500)
 								
 							}
@@ -271,8 +278,10 @@
 						type: this.form.type,
 						workType: this.form.workType
 					}).then(res => {
-						this.modify = true
-						this.form.estimatedAccount = res.data
+						if (res.code === 200) {
+							this.modify = true
+							this.form.estimatedAccount = res.data
+						}
 					})
 				}
 			},
@@ -300,30 +309,33 @@
 				this.$u.api.getCategoryList({
 					type: 0
 				}).then(res => {
-					this.cateList = [res.data]
+					if (res.code === 200) {
+						this.cateList = [res.data]
+					}
 				})
 			},
 			uploadImg() {
 				uni.chooseImage({
 					success: (chooseImageRes) => {
-						const tempFilePaths = chooseImageRes.tempFilePaths;
-						uni.uploadFile({
-							url: this.$baseUrl + '/web/public/upload',
-							filePath: tempFilePaths[0],
-							name: 'file',
-							formData: {
-								'folder': 'orders'
-							},
-							success: (uploadFileRes) => {
-								const res = JSON.parse(uploadFileRes.data)
-								this.form.multifileList.push({
-									fileurl: res.data.imgaddr,
-									name: res.data.originname,
-									url: res.data.url,
-									type: 0
-								})
-							}
-						});
+						for (let i = 0; i < chooseImageRes.tempFilePaths.length; i++) {
+							uni.uploadFile({
+								url: this.$baseUrl + '/web/public/upload',
+								filePath: chooseImageRes.tempFilePaths[i],
+								name: 'file',
+								formData: {
+									'folder': 'orders'
+								},
+								success: (uploadFileRes) => {
+									const res = JSON.parse(uploadFileRes.data)
+									this.form.multifileList.push({
+										fileurl: res.data.imgaddr,
+										name: res.data.originname,
+										url: res.data.url,
+										type: 0
+									})
+								}
+							});
+						}
 					}
 				});
 			}

--
Gitblit v1.9.3