第三方bug修改

prod
郑明梁 2 years ago
parent e3fb944dd2
commit 382eef32e2

@ -21,8 +21,8 @@ export function getCloudErp(query) {
export function getThirdSysOrder(query) {
return axios({
url: "/udiwms/thirdOrder/filter",
method: "get",
params: query
method: "post",
data: query
});
}

@ -73,12 +73,11 @@
<el-table v-loading="loading" :data="list" style="width: 100%" border highlight-current-row
@current-change="handleDetail">
<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="往来单位ID" prop="corpId"></el-table-column>
<el-table-column label="往来单位" prop="corpName"
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="操作" width="60">
<template slot-scope="scope">
@ -394,7 +393,7 @@ export default {
getBussinessType(query)
.then((response) => {
this.busTypes = response.data.list || [];
// this.getList();
this.getList();
})
.catch(() => {
});

@ -72,15 +72,7 @@
<el-table-column label="往来单位ID" prop="corpId" width="100"></el-table-column>
<el-table-column label="往来单位" prop="corpName" width="300"
show-overflow-tooltip="true"></el-table-column>
<el-table-column label="第三方单据类型" prop="originType"></el-table-column>
<el-table-column label="扫码单据类型" prop="billType">
<template slot-scope="scope">
<span>{{ geActionName(scope.row.billType) }}</span>
</template>
</el-table-column>
<el-table-column label="单据状态" prop="billFlag" width="80"></el-table-column>
<el-table-column label="第三方单据类型" prop="billTypeName"></el-table-column>
<el-table-column label="单据日期" prop="billdate"></el-table-column>
<el-table-column label="操作" v-if="thirdSysDetail.fromType!=0" width="60">
@ -241,6 +233,7 @@ export default {
this.loading = true;
this.filterQuery.isDownThrSys = this.isDownThrSys;
console.log(this.filterQuery)
getThirdSysOrder(this.filterQuery)
.then((response) => {
if (response.code == 20000) {

Loading…
Cancel
Save