فهرست منبع

fix: 调整样式

wuguojie 9 ماه پیش
والد
کامیت
516c5b2da4
1فایلهای تغییر یافته به همراه3 افزوده شده و 3 حذف شده
  1. 3 3
      src/views/insurancePolicy/modules/underwriting.vue

+ 3 - 3
src/views/insurancePolicy/modules/underwriting.vue

@@ -165,10 +165,10 @@ const queryClauseData = () => {
                     edit: false
                 }
             })
-            clauseList.value = tableData.value?.filter(item => item.clientStatus != '2')
+            clauseList.value = tableData.value?.filter(item => item.clientStatus != '3')
             nextTick(() => {
                 tableData.value?.forEach(item => {
-                    if(item.clientStatus != '2') {
+                    if(item.clientStatus != '3') {
                         console.log(123123123123213123123213)
                         ClauseRefs.value.toggleRowSelection(item, true)
                     }
@@ -182,7 +182,7 @@ const queryClauseData = () => {
         }
     })
 }
-const selectable = (row) => !['1'].includes(row.clientStatus)
+const selectable = (row) => !['2'].includes(row.clientStatus)
 const selectionChange = (val) => {
     clauseList.value = val
 }