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

fencang
x_z 3 years ago
parent 8ce0b0bea8
commit d9e5981bcb

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

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

Loading…
Cancel
Save