From 5abcde36961125cbf436f91b8c17610a6b5f8308 Mon Sep 17 00:00:00 2001
From: sen <sen@qq.com>
Date: 星期三, 15 四月 2026 12:15:08 +0800
Subject: [PATCH] 修改调度单必填校验

---
 ui/admin-ui3/src/views/tms/collectionTmsQuotePlan/index.vue |   14 ++++++++------
 1 files changed, 8 insertions(+), 6 deletions(-)

diff --git a/ui/admin-ui3/src/views/tms/collectionTmsQuotePlan/index.vue b/ui/admin-ui3/src/views/tms/collectionTmsQuotePlan/index.vue
index 078d375..2fd3b21 100644
--- a/ui/admin-ui3/src/views/tms/collectionTmsQuotePlan/index.vue
+++ b/ui/admin-ui3/src/views/tms/collectionTmsQuotePlan/index.vue
@@ -163,6 +163,7 @@
             let active = table.active;
             if (Array.isArray(active)) active = active[0];
             if (active) {
+              console.log(active)
               Object.assign(form.value, {
                 projectId: active.id,
                 projectName: active.projectName,
@@ -173,7 +174,7 @@
               });
             }
           },
-          type: 'table',suffixIcon:'search',dataType: 'string',
+          type: 'table',suffixIcon:'search',dataType: 'object',
           children:{
             border: true,
             searchMenuSpan: 5,
@@ -226,7 +227,7 @@
                 id = value[0]
               }
               getTmsProject(id).then(res=>{
-                return callback(res.data||{})
+                return callback(res.data ? [res.data] : [])
               })
             }else{
               listTmsProject({pageSize:page.pageSize,pageNum:page.currentPage,...data}).then(res=>{
@@ -444,14 +445,15 @@
   handleSelectionChangeFunc: (selection: any) => {
     selectionList.value = selection;
   },
-  getBeginListFunc:()=>{
+  getBeginListFunc:(params = {})=>{
     queryParams.value.planType = '0'
+    return params;
   },
   handleBeforeOpenFunc:(type:string)=>{
     form.value.items = [];
     if (type === 'add'){
       form.value.items = sys_quotation_items.value.map((item:any)=>{
-        return { rowKey: randomId() ,freeName: item.label,unit: '娆�'}
+        return { rowKey: randomId() ,freeName: item.label,free: item.value,unit: '娆�'}
       })
     }
   },
@@ -493,12 +495,12 @@
       });
       form.value.items = sys_quotation_items.value.map((item:any)=>{
         let find = selectionList2.value.find((ele:any)=>
-          ele.freeName === item.label
+          ele.free == item.value
         );
         if ( find){
           return find;
         }else{
-          return { rowKey: randomId() ,freeName: item.label,unit: '娆�'}
+          return { rowKey: randomId() ,freeName: item.label,free: item.value,unit: '娆�'}
         }
       })
       nextTick( ()=>{

--
Gitblit v1.8.0