修改监控流程详情

This commit is contained in:
zhoulingpo
2023-04-21 14:11:25 +08:00
parent 37d570641d
commit 6ed94496e7
8 changed files with 71 additions and 96 deletions
@@ -17,7 +17,7 @@
return {
modelId : '',
name: '',
actUrl: 'http://10.0.10.87:7060/bat-wkflow/modeler.html?modelId='
actUrl: 'http://10.0.10.173:7060/modeler.html?modelId='
}
},
created() {
+5 -2
View File
@@ -39,7 +39,7 @@
<template #default="{ row }">
<el-button type="text" @click="editRow(row)">编辑</el-button>
<el-button type="text" @click="deploy(row)">部署</el-button>
<el-button type="text" @click="deleteRow(row)">删除</el-button>
<el-button type="text" class="deleRed" @click="deleteRow(row)">删除</el-button>
</template>
</vxe-column>
</vxe-table>
@@ -162,7 +162,7 @@ export default {
type: 'warning'
}).then(() => {
this.$api.process.deploy({id: row.id}).then(res=>{
this.$api.process.deploy({modelId: row.id}).then(res=>{
this.$message.warning(res.message)
this.queryTablePage()
})
@@ -286,5 +286,8 @@ export default {
padding: 20px 20px;
}
}
.deleRed{
color: red !important;
}
</style>