|
|
@ -73,12 +73,11 @@
|
|
|
|
<el-table v-loading="loading" :data="list" style="width: 100%" border highlight-current-row
|
|
|
|
<el-table v-loading="loading" :data="list" style="width: 100%" border highlight-current-row
|
|
|
|
@current-change="handleDetail">
|
|
|
|
@current-change="handleDetail">
|
|
|
|
<el-table-column label="序号" type="index" width="60"></el-table-column>
|
|
|
|
<el-table-column label="序号" type="index" width="60"></el-table-column>
|
|
|
|
<el-table-column label="第三方单据类型" prop="billType"></el-table-column>
|
|
|
|
<el-table-column label="第三方单据类型" prop="billTypeName"></el-table-column>
|
|
|
|
<el-table-column label="单据号" prop="billNo"></el-table-column>
|
|
|
|
<el-table-column label="单据号" prop="billNo"></el-table-column>
|
|
|
|
<el-table-column label="往来单位ID" prop="corpId"></el-table-column>
|
|
|
|
<el-table-column label="往来单位ID" prop="corpId"></el-table-column>
|
|
|
|
<el-table-column label="往来单位" prop="corpName"
|
|
|
|
<el-table-column label="往来单位" prop="corpName"
|
|
|
|
show-overflow-tooltip="true"></el-table-column>
|
|
|
|
show-overflow-tooltip="true"></el-table-column>
|
|
|
|
<el-table-column label="单据状态" prop="billFlag"></el-table-column>
|
|
|
|
|
|
|
|
<el-table-column label="单据日期" prop="billdate"></el-table-column>
|
|
|
|
<el-table-column label="单据日期" prop="billdate"></el-table-column>
|
|
|
|
<el-table-column label="操作" width="60">
|
|
|
|
<el-table-column label="操作" width="60">
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<template slot-scope="scope">
|
|
|
@ -394,7 +393,7 @@ export default {
|
|
|
|
getBussinessType(query)
|
|
|
|
getBussinessType(query)
|
|
|
|
.then((response) => {
|
|
|
|
.then((response) => {
|
|
|
|
this.busTypes = response.data.list || [];
|
|
|
|
this.busTypes = response.data.list || [];
|
|
|
|
// this.getList();
|
|
|
|
this.getList();
|
|
|
|
})
|
|
|
|
})
|
|
|
|
.catch(() => {
|
|
|
|
.catch(() => {
|
|
|
|
});
|
|
|
|
});
|
|
|
|