|
@@ -352,7 +352,7 @@ export default {
|
|
|
this.$emit('updateNodeOption',this.currentCollapses)
|
|
|
},
|
|
|
// 查看历史
|
|
|
- open(dicts, type = null,currentStatus = null) {
|
|
|
+ open(dicts, type = null,currentStatus = null,kind = null) {
|
|
|
this.currentStatus = currentStatus
|
|
|
this.checkingVisible = false
|
|
|
if (type == '1' || type == '2') {
|
|
@@ -375,6 +375,9 @@ export default {
|
|
|
} else {
|
|
|
console.log(dicts)
|
|
|
this.dialogVisible = true
|
|
|
+ if (type=='check'&&kind=='基建'){
|
|
|
+ dicts=dicts.filter(item=>['水电施工','防水'].includes(item.value))
|
|
|
+ }
|
|
|
this.currentDicts = dicts
|
|
|
}
|
|
|
|