[update 拆分] 查看和编辑验证企标权限

This commit is contained in:
danshihao
2024-08-06 09:38:51 +08:00
parent 263561af78
commit 592e138e64
4 changed files with 61 additions and 28 deletions
+6 -4
View File
@@ -218,9 +218,7 @@ export default {
},
// 查询
searchQuery () {
const query = Object.assign({}, this.queryParam)
query.serial_number = this.spiltInfo.serialNumber
this.initDetailInfo(query)
this.initDetailInfo(this.queryParam)
},
// 重置
searchReset () {
@@ -235,7 +233,9 @@ export default {
},
initDetailInfo (query) {
this.loading = true
const params = Object.assign({}, this.queryParams, query)
const params = Object.assign({
serial_number: this.spiltInfo.serialNumber
}, this.queryParams, query)
if (this.horizontalOverstep) {
params.horizontalOverstep = true
}
@@ -247,6 +247,8 @@ export default {
this.treeData = data.sarFileSplitMenuEO || []
this.spiltInfo = data.documentSplitInfo || {}
this.clauseContentList = data.documentSplitDetail || []
} else {
this.$message.warn(res.message)
}
}).finally(() => {
this.loading = false