1.单据类型数据列表增加备注字段展示

fencang
x_z 3 years ago
parent 8ce0b0bea8
commit d9e5981bcb

@ -72,6 +72,7 @@
</template>
</el-table-column>
<el-table-column label="关联业务单据" prop="localName" fixed></el-table-column>
<el-table-column label="备注" prop="remark" fixed></el-table-column>
<el-table-column label="操作" fixed="right">
<template slot-scope="scope">
<el-button
@ -292,9 +293,13 @@ export default {
}
insertBussinessType(this.inputQuery)
.then((response) => {
this.loading = false;
this.cancelDialog();
this.getList();
if (response.code === 20000) {
this.loading = false;
this.cancelDialog();
this.getList();
} else {
this.$message.error(response.message);
}
})
.catch(() => {
this.loading = false;

@ -48,8 +48,7 @@
<span>{{ enableMap[scope.row.spUse] }}</span>
</template>
</el-table-column>
<el-table-column label="备注" prop="remark" fixed></el-table-column>
<el-table-column label="操作" fixed="right">
<template slot-scope="scope">
<el-button

Loading…
Cancel
Save