|
|
|
@ -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();
|
|
|
|
|