From 300833fb40ffd6c16d3099901c0f2212505c3fe4 Mon Sep 17 00:00:00 2001
From: gaoluyang <2820782392@qq.com>
Date: 星期三, 26 八月 2026 09:56:19 +0800
Subject: [PATCH] 实验室赋默认值
---
src/views/business/productOrder/index.vue | 25 ++++++++++++++++---------
1 files changed, 16 insertions(+), 9 deletions(-)
diff --git a/src/views/business/productOrder/index.vue b/src/views/business/productOrder/index.vue
index d551fbe..720cfa7 100644
--- a/src/views/business/productOrder/index.vue
+++ b/src/views/business/productOrder/index.vue
@@ -1213,15 +1213,22 @@
upPlanUser2({
orderId: row.id,
}).then(res => {
- if (res.code === 200 && res.data.length > 0) {
- this.sonLaboratoryList = [];
- res.data.forEach(m => {
- this.sonLaboratoryList.push({
- value: m,
- label: m
- })
- })
- }
+ this.sonLaboratoryList = [
+ {
+ value: '鏂拌仛',
+ label: '鏂拌仛'
+ }
+ ]
+ this.distributeData.sonLaboratory = '鏂拌仛'
+ // if (res.code === 200 && res.data.length > 0) {
+ // this.sonLaboratoryList = [];
+ // res.data.forEach(m => {
+ // this.sonLaboratoryList.push({
+ // value: m,
+ // label: m
+ // })
+ // })
+ // }
})
},
submitForm2() {
--
Gitblit v1.9.3