出账账户自定义节点开发完成

This commit is contained in:
2024-11-02 17:22:58 +08:00
parent 1c152e2d1a
commit 090728452f
17 changed files with 1088 additions and 407 deletions

View File

@@ -98,6 +98,7 @@
</el-table-column>
<el-table-column label="操作" align="center" width="250" class-name="small-padding fixed-width">
<template slot-scope="scope">
<el-button
size="mini"
type="text"
@@ -106,8 +107,11 @@
v-hasPermi="['oa:project:edit']"
>合同管理
</el-button>
</template>
</el-table-column>
</el-table>
<pagination
@@ -813,6 +817,7 @@ export default {
}
listProject(this.queryParams).then(response => {
this.projectList = response.rows;
console.log(this.projectList)
//项目周期
this.total = response.total;
this.loading = false;
@@ -1041,6 +1046,7 @@ export default {
/** 删除按钮操作 */
handleDelete(row) {
const contractIds = row.contractId || this.ids;
console.log(row)
this.$modal.confirm('是否确认删除合同管理编号为"' + contractIds + '"的数据项?').then(() => {
this.loading = true;
return delOaContract(contractIds);