fix: modify

develop
sqlnice 2024-11-01 18:09:41 +08:00
parent 96c9e63691
commit 679347783f
1 changed files with 1 additions and 1 deletions

View File

@ -89,7 +89,7 @@ export default {
},
goPage(row) {
if (!this.yunkongUrl) return this.$message.error('运控系统地址未配置, 请联系管理员查看 管理中心-系统配置-系统对接-运控系统地址 页面是否配置正确')
const url = row ? `${this.yunkongUrl}/faultRepairs?nodeId=${row.nodeId || row.node_id}&record_id=${row.recordId || row.record_id}&proc_inst_id=${row.procInstId || row.proc_inst_id}&isView=true&token=${getTrxToken()}` : `${this.yunkongUrl}/faultRepairsList`
const url = row ? `${this.yunkongUrl}/faultRepairs?nodeId=${row.nodeId || row.node_id}&record_id=${row.recordId || row.record_id}&proc_inst_id=${row.procInstId || row.proc_inst_id}&isView=true&token=${getTrxToken()}` : `${this.yunkongUrl}/faultRepairsList?token=${getTrxToken()}`
console.log(url)
window.open(url, '_blank')
}