待处理单据查询问题

yanshishuju
yewj 7 months ago
parent f2e8f300df
commit a8cd04d519

@ -718,7 +718,10 @@ export default {
getList() {
this.loading = true;
orderPage(this.filterQuery).then(res => {
let query = JSON.parse(JSON.stringify(this.filterQuery));
query.workPlaceCode = null
query.busType =
orderPage(query).then(res => {
this.loading = false
this.list = res.data.list || []
this.total = res.data.total || 0
@ -817,6 +820,7 @@ export default {
if (this.$route.query.workplaceId != null) {
this.isLinkDisabled = true
this.filterQuery.workPlaceCode = this.$route.query.workplaceId
this.filterQuery.busType = this.$route.query.busType
this.showType = 2
}
this.findWorkPlace(this, "");

@ -193,9 +193,9 @@
</el-button-group>
</el-col>
</el-row>
<el-row :gutter="0" >
<el-col :span="20" style="margin-top: 0px;margin-bottom: 10px;margin-left: 80px">
<el-checkbox v-model="checked" v-if="!this.formData.billNo"></el-checkbox>
<el-row :gutter="0">
<el-col :span="20" style="margin-top: 0px;margin-bottom: 10px;margin-left: 80px">
<el-checkbox v-model="checked" v-if="!this.formData.billNo"></el-checkbox>
</el-col>
</el-row>
<el-alert
@ -1257,6 +1257,8 @@ export default {
this.valiCodes.push(item.code);
}
});
this.$refs.inputRef.focus();
this.$refs.inputRef.select();
this.printMutiCodeResult(list)
if (this.valiCodes != null && this.valiCodes.length > 0) {
//

Loading…
Cancel
Save