关联第三方仓库 添加重置按钮

ywj_dev
wangwei 2 years ago
parent 59ca76d301
commit 79e7a45877

@ -288,6 +288,7 @@
<el-form-item>
<el-button-group>
<el-button type="primary" icon="search" @click="intentSubSelect"></el-button>
<el-button type="primary" icon="el-icon-refresh" @click="onResetintent"></el-button>
</el-button-group>
</el-form-item>
</el-form>
@ -501,6 +502,33 @@ export default {
};
},
onResetintent(){
debugger
this.$router.push({
path: "",
});
this.thirdSubQuery = {
thirdSysFk: this.thirdSubQuery.thirdSysFk,
page:1,
limit: 10
}
filterThridSubByInv(this.thirdSubQuery).then((res) => {
if (res.code == 20000) {
this.thrSubWarehouseData = res.data.list;
this.subTotal = res.data.total || 0;
} else {
this.$message.error(res.message);
}
}).catch((error) => {
this.thrWarehouseData = [];
this.subTotal = 0;
this.$message.error("第三方分库库数据加载失败");
});
},
onSubmit() { //
this.query.advanceType=this.subDataType.advanceType;
this.getList();

Loading…
Cancel
Save