修改bug

prod
wangwei 2 years ago
parent 382eef32e2
commit bef40eff8d

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

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

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

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

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

Loading…
Cancel
Save