修改bug

This commit is contained in:
liuxi 2025-02-12 09:30:31 +08:00
parent 0b9e063bb7
commit 5d15f6edd7
2 changed files with 17 additions and 2 deletions

View File

@ -148,7 +148,7 @@ import caseManagement from "@/services/caseManagement";
this.$emit('handleUploadFile') this.$emit('handleUploadFile')
}catch (e) { }catch (e) {
this.$message.error(e.msg) // this.$message.error(e.msg)
} }
}, },
}, },

View File

@ -57,6 +57,11 @@ import api from "@/services/caseManagement";
type: String, type: String,
default: () => {}, default: () => {},
}, },
singleofficevisible: {
type: Boolean,
default: () => {return false},
},
}, },
data() { data() {
return { return {
@ -70,8 +75,18 @@ import api from "@/services/caseManagement";
}; };
}, },
watch: {
singleofficevisible: {
deep: true,
handler: function (val) {
if (this.singleofficevisible){
this.getWritCaseList()
}
}
}
},
mounted () { mounted () {
this.getWritCaseList() // this.getWritCaseList()
}, },
methods: { methods: {
// //