修改bug

ywj_dev
wangwei 2 years ago
parent 2572425673
commit d129c20613

@ -88,6 +88,7 @@
:loading="corpLoading"
@change="corpChange"
style="width: 90%"
@clear="clear"
>
<el-option
v-for="item in fromOptions"
@ -272,6 +273,11 @@ export default {
event.target.select();
},
clear(){
this.findMethod();
},
getList() {
this.loading = true;
// this.filterQuery.supId = this.$store.getters.customerId;

@ -88,6 +88,7 @@
:loading="corpLoading"
@change="corpChange"
style="width: 90%"
@clear="clear"
>
<el-option
v-for="item in fromOptions"
@ -270,6 +271,9 @@ export default {
this.getList();
event.target.select();
},
clear(){
this.findMethod();
},
getList() {
this.loading = true;

@ -87,6 +87,7 @@
:loading="corpLoading"
@change="corpChange"
style="width: 90%"
@clear="clear"
>
<el-option
v-for="item in fromOptions"
@ -280,7 +281,9 @@ export default {
this.getList();
event.target.select();
},
clear(){
this.findMethod();
},
onSubmit() {
this.filterQuery.page = 1;

@ -28,7 +28,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="createScheduleDialog(1)">
</el-button>
<!-- :disabled="!configParms.orderScanFinish&& !configParms.orderUnReceive&& !configParms.orderUnCheck"-->
@ -191,12 +191,16 @@ export default {
id: null,
status: null,
page: 1,
limit: 20,
limit: 10,
};
this.syncTime = null;
this.getList();
},
search(){
this.filterQuery.page=1;
this.getList();
},
getList() {
this.loading = true;
this.filterQuery.syncTime = this.syncTime;

Loading…
Cancel
Save