bug修复的

purchase
anthonyywj2 3 years ago
parent 99f2c2bc49
commit 5419240811

@ -897,7 +897,7 @@ export default {
bussinessTypeQuery: { bussinessTypeQuery: {
enabled: true, enabled: true,
page: 1, page: 1,
limit: 10 limit: 100
}, },
bussinessTypeTotal: 0, bussinessTypeTotal: 0,
curSeleUser: null, curSeleUser: null,

@ -1091,7 +1091,7 @@ export default {
this.curAction = this.getActionItem(item); this.curAction = this.getActionItem(item);
this.findMethod(); this.findMethod();
this.$set(this.formData, "vailIn", this.curAction.vailInv); this.$set(this.formData, "vailInv", this.curAction.vailInv);
this.$set(this.formData, "preCheck", this.curAction.scanPreIn); this.$set(this.formData, "preCheck", this.curAction.scanPreIn);
this.$set(this.formData, "outChangeEnable", this.curAction.ullageFill); this.$set(this.formData, "outChangeEnable", this.curAction.ullageFill);
this.$set(this.formData, "codeFillCheck", this.curAction.codeFillCheck); this.$set(this.formData, "codeFillCheck", this.curAction.codeFillCheck);

@ -142,6 +142,8 @@
<el-dialog <el-dialog
title="库存详情" title="库存详情"
:visible.sync="codeDetailVisible" :visible.sync="codeDetailVisible"
:close-on-click-modal="false"
:close-on-press-escape="false"
width="85%" width="85%"
v-if="codeDetailVisible" v-if="codeDetailVisible"
> >

@ -122,6 +122,8 @@
<el-dialog <el-dialog
title="库存详情" title="库存详情"
:visible.sync="codeDetailVisible" :visible.sync="codeDetailVisible"
:close-on-click-modal="false"
:close-on-press-escape="false"
width="85%" width="85%"
v-if="codeDetailVisible" v-if="codeDetailVisible"
> >

@ -119,6 +119,8 @@
<el-dialog <el-dialog
title="库存详情" title="库存详情"
:visible.sync="codeDetailVisible" :visible.sync="codeDetailVisible"
:close-on-click-modal="false"
:close-on-press-escape="false"
width="85%" width="85%"
v-if="codeDetailVisible" v-if="codeDetailVisible"
> >

@ -127,6 +127,8 @@
<el-dialog <el-dialog
title="库存详情" title="库存详情"
:visible.sync="codeDetailVisible" :visible.sync="codeDetailVisible"
:close-on-click-modal="false"
:close-on-press-escape="false"
width="85%" width="85%"
v-if="codeDetailVisible" v-if="codeDetailVisible"
> >

@ -20,7 +20,6 @@
@keypress.enter.native="enterKey($event)" @keypress.enter.native="enterKey($event)"
clearable clearable
></el-input> ></el-input>
<el-checkbox v-model="sitcomScan" style="margin-left: 15px"></el-checkbox>
</el-form-item> </el-form-item>
</el-row> </el-row>
@ -412,12 +411,8 @@ export default {
}, },
enterKey(event) { enterKey(event) {
if (this.sitcomScan) {
return;
} else {
this.$refs.inputRef.select(); this.$refs.inputRef.select();
this.onSubmit(); this.onSubmit();
}
}, },
onSubmit() { onSubmit() {
this.getList(); this.getList();

@ -145,7 +145,8 @@
<el-row :gutter="20" class="el-row" type="flex"> <el-row :gutter="20" class="el-row" type="flex">
<el-col :span="10" class="el-col" type="flex"> <el-col :span="10" class="el-col" type="flex">
<div class="text item"> <div class="text item">
<el-form-item label="备&nbsp&nbsp注" prop="comments"> <el-form-item prop="comments">
<label slot="label">&emsp;&emsp;</label>
<el-input v-model="formData.comments" size="small" style="width: 80%"></el-input> <el-input v-model="formData.comments" size="small" style="width: 80%"></el-input>
</el-form-item> </el-form-item>
</div> </div>

@ -563,7 +563,7 @@ export default {
}, },
getModuleList() { getModuleList() {
this.moduleLoading = true; this.moduleLoading = true;
systemPDFModuleList(this.selectTemplateQuery) systemPDFModuleList(this.moduleQuery)
.then(response => { .then(response => {
this.moduleLoading = false; this.moduleLoading = false;
this.moduleList = response.data.list || []; this.moduleList = response.data.list || [];

@ -82,6 +82,7 @@
@current-change="handleCurrentChange" @current-change="handleCurrentChange"
layout="prev, pager, next" layout="prev, pager, next"
:total="total" :total="total"
:current-page="query.page"
> >
</el-pagination> </el-pagination>
</el-card> </el-card>
@ -351,7 +352,7 @@ export default {
name: "", name: "",
module: null, module: null,
page: 1, page: 1,
limit: 20 limit: 10
}, },
headers: {}, headers: {},
list: [], list: [],
@ -423,7 +424,7 @@ export default {
name: "", name: "",
module: null, module: null,
page: 1, page: 1,
limit: 20 limit: 10
}; };
this.getList(); this.getList();
}, },

Loading…
Cancel
Save