修改bug

prod
wangwei 2 years ago
parent 382eef32e2
commit bef40eff8d

@ -33,7 +33,7 @@
v-for="item in corpList"
:key="item.code"
:label="item.name"
:value="item.code">
:value="item.name">
</el-option>
</el-select>
</el-form-item>

@ -33,7 +33,7 @@
v-for="item in corpList"
:key="item.code"
:label="item.name"
:value="item.code">
:value="item.name">
</el-option>
</el-select>
</el-form-item>

@ -33,7 +33,7 @@
v-for="item in corpList"
:key="item.code"
:label="item.name"
:value="item.code">
:value="item.name">
</el-option>
</el-select>
</el-form-item>

@ -24,7 +24,7 @@
<el-form-item>
<el-button-group style="display:flex;">
<el-button type="primary" icon="el-icon-refresh" @click="onReset"></el-button>
<el-button type="primary" icon="search" @click="getList"></el-button>
<el-button type="primary" icon="search" @click="search"></el-button>
<el-button type="primary" icon="search" @click="uploadData('IO_ORDER')"
>
同步单据
@ -174,6 +174,11 @@ export default {
this.syncTime = null;
this.getList();
},
search(){
this.filterQuery.page=1;
this.getList();
},
getList() {
this.loading = true;
filterLog(this.filterQuery)

@ -219,6 +219,8 @@ export default {
this.mainThirdSys = this.thirdSys[i].thirdId;
}
}
this.filterQuery.thirdSys= this.mainThirdSys;
this.getList();
this.getThirdSysDetail();
})
.catch(() => {
@ -440,7 +442,7 @@ export default {
this.init();
this.getSyncConfig();
this.getBasicThirdSys();
this.getList();
},
};

Loading…
Cancel
Save