|
|
@ -41,10 +41,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
<el-table v-loading="loading" :data="list" style="width: 100%">
|
|
|
|
<el-table v-loading="loading" :data="list" style="width: 100%">
|
|
|
|
<el-table-column label="序号" type="index" width="55"></el-table-column>
|
|
|
|
<el-table-column label="序号" type="index" width="55"></el-table-column>
|
|
|
|
|
|
|
|
|
|
|
|
<el-table-column label="单据类型名称" prop="name"></el-table-column>
|
|
|
|
<el-table-column label="单据类型名称" prop="name"></el-table-column>
|
|
|
|
<el-table-column label="单据类型代码" prop="action"></el-table-column>
|
|
|
|
<el-table-column label="单据类型代码" prop="action"></el-table-column>
|
|
|
|
<el-table-column label="第三方系统" prop="thirdSys"></el-table-column>
|
|
|
|
<el-table-column label="第三方系统" prop="thirdSysName"></el-table-column>
|
|
|
|
<el-table-column label="备注" prop="remark"></el-table-column>
|
|
|
|
<el-table-column label="备注" prop="remark"></el-table-column>
|
|
|
|
<el-table-column label="操作" width="100" fixed="right">
|
|
|
|
<el-table-column label="操作" width="100" fixed="right">
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<template slot-scope="scope">
|
|
|
@ -195,6 +194,15 @@ export default {
|
|
|
|
.then((response) => {
|
|
|
|
.then((response) => {
|
|
|
|
this.loading = false;
|
|
|
|
this.loading = false;
|
|
|
|
this.list = response.data.list || [];
|
|
|
|
this.list = response.data.list || [];
|
|
|
|
|
|
|
|
if (this.list.length > 0) {
|
|
|
|
|
|
|
|
this.list.forEach(item => {
|
|
|
|
|
|
|
|
this.thirdSys.forEach(third => {
|
|
|
|
|
|
|
|
if (item.thirdSys === third.thirdId) {
|
|
|
|
|
|
|
|
item.thirdSysName = third.thirdName;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
})
|
|
|
|
|
|
|
|
})
|
|
|
|
|
|
|
|
}
|
|
|
|
this.total = response.data.total || 0;
|
|
|
|
this.total = response.data.total || 0;
|
|
|
|
})
|
|
|
|
})
|
|
|
|
.catch(() => {
|
|
|
|
.catch(() => {
|
|
|
|