调拨出入库展示仓库号问题

featFunction
anthonywj 2 years ago
parent b00b20d615
commit 432e6a9e9b

@ -93,6 +93,7 @@
:page-size="query.limit" :page-size="query.limit"
@current-change="handleCurrentChange" @current-change="handleCurrentChange"
layout="prev, pager, next" layout="prev, pager, next"
:current-page="query.page"
:total="total" :total="total"
> >
</el-pagination> </el-pagination>
@ -326,7 +327,7 @@ export default {
this.getList(); this.getList();
}, },
handleCurrentChange(val) { handleCurrentChange(val) {
this.query.page = val; this.query.page = val;
this.getList(); this.getList();
}, },
@ -467,7 +468,7 @@ export default {
}, },
formSubmit() { formSubmit() {
var regu = "^[ ]+$"; var regu = "^[ ]+$";
var re = new RegExp(regu); var re = new RegExp(regu);
if (this.$isBlank(this.formData.name) || re.test(this.formData.name)) { if (this.$isBlank(this.formData.name) || re.test(this.formData.name)) {
this.$message.error("请输入角色名称!"); this.$message.error("请输入角色名称!");
return; return;

@ -1035,7 +1035,7 @@ export default {
}); });
}, },
findSubStorageMethod() { findSubStorageMethod(val) {
let cQuery = { let cQuery = {
pcode: this.formData.fromCorpId, pcode: this.formData.fromCorpId,
filter: 2, filter: 2,
@ -1043,7 +1043,10 @@ export default {
filterSubByInv(cQuery) filterSubByInv(cQuery)
.then((response) => { .then((response) => {
this.fromSubStorageOptions = response.data || []; this.fromSubStorageOptions = response.data || [];
this.formData.fromSubInvCode = this.fromSubStorageOptions[0].code; if (val == 1) {
} else
this.formData.fromSubInvCode = this.fromSubStorageOptions[0].code;
}) })
.catch(() => { .catch(() => {
}); });
@ -1231,6 +1234,8 @@ export default {
this.formData.preCheck = this.idQuery.preCheck; this.formData.preCheck = this.idQuery.preCheck;
this.actionEnable = true; this.actionEnable = true;
this.getCodeList(); this.getCodeList();
this.findSubStorageMethod(1);
} else { } else {
this.corpOrderIdDisabled = false; this.corpOrderIdDisabled = false;
if (JSON.stringify(this.$route.query) === '{}') { if (JSON.stringify(this.$route.query) === '{}') {

Loading…
Cancel
Save