工位选择单据修改

20240912_adapter
yewj 2 months ago
parent dff3031ebe
commit a16362af4b

@ -51,7 +51,8 @@
</el-row> </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-row :gutter="0" style="margin-top: 5px">
<el-col :span="20"> <el-col :span="20">
<el-form-item prop="code" :label="scanTip" label-width="80px"> <el-form-item prop="code" :label="scanTip" label-width="80px">
@ -208,6 +209,7 @@
:confirmSelect="this.confirmSelect" :confirmSelect="this.confirmSelect"
:closeDialog="this.closeDialog" :closeDialog="this.closeDialog"
:viewType="viewType" :viewType="viewType"
:isAudit="true"
></selectPrescribeDialog> ></selectPrescribeDialog>
</el-dialog> </el-dialog>
</div> </div>

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

Loading…
Cancel
Save