|
@@ -165,10 +165,10 @@ const queryClauseData = () => {
|
|
|
edit: false
|
|
edit: false
|
|
|
}
|
|
}
|
|
|
})
|
|
})
|
|
|
- clauseList.value = tableData.value?.filter(item => item.clientStatus != '2')
|
|
|
|
|
|
|
+ clauseList.value = tableData.value?.filter(item => item.clientStatus != '3')
|
|
|
nextTick(() => {
|
|
nextTick(() => {
|
|
|
tableData.value?.forEach(item => {
|
|
tableData.value?.forEach(item => {
|
|
|
- if(item.clientStatus != '2') {
|
|
|
|
|
|
|
+ if(item.clientStatus != '3') {
|
|
|
console.log(123123123123213123123213)
|
|
console.log(123123123123213123123213)
|
|
|
ClauseRefs.value.toggleRowSelection(item, true)
|
|
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) => {
|
|
const selectionChange = (val) => {
|
|
|
clauseList.value = val
|
|
clauseList.value = val
|
|
|
}
|
|
}
|