工位选择单据修改

20240912_adapter
yewj 2 months ago
parent dff3031ebe
commit a16362af4b

@ -51,7 +51,8 @@
</el-row>
<div style="border: 1px solid #ebeef5;border-radius: 2px;margin-top: 15px;padding: 15px" v-loading="this.loading">
<div style="border: 1px solid #ebeef5;border-radius: 2px;margin-top: 15px;padding: 15px"
v-loading="this.loading">
<el-row :gutter="0" style="margin-top: 5px">
<el-col :span="20">
<el-form-item prop="code" :label="scanTip" label-width="80px">
@ -208,6 +209,7 @@
:confirmSelect="this.confirmSelect"
:closeDialog="this.closeDialog"
:viewType="viewType"
:isAudit="true"
></selectPrescribeDialog>
</el-dialog>
</div>

@ -516,6 +516,11 @@ export default {
type: Object,
required: false,
},
isAudit: {
type: Boolean,
required: false,
},
},
data() {
return {
@ -642,8 +647,13 @@ export default {
this.filterQuery.startTime = null;
this.filterQuery.endTime = null;
}
// this.filterQuery.workPlaceCode = null
if (this.isAudit != null) {
this.filterQuery.workPlaceCode = null
} else {
this.filterQuery.workPlaceCode = this.$route.query.workplaceId
}
// this.filterQuery.workPlaceCode = null
// workPlaceCode: this.workplaceId,
this.filterQuery.busType = this.busType
// this.filterQuery.fromCorp = this.fromCorp

Loading…
Cancel
Save