|
|
@@ -67,6 +67,14 @@
|
|
|
class="!w-150px"
|
|
|
/>
|
|
|
</el-form-item>
|
|
|
+ <el-form-item label="检验员" prop="shiftCheckerName">
|
|
|
+ <el-input
|
|
|
+ v-model="shiftCheckerName"
|
|
|
+ placeholder="输入检验员姓名"
|
|
|
+ clearable
|
|
|
+ class="!w-180px"
|
|
|
+ />
|
|
|
+ </el-form-item>
|
|
|
<el-form-item label="状态" prop="shiftStatus">
|
|
|
<el-select
|
|
|
v-model="shiftStatus"
|
|
|
@@ -271,6 +279,7 @@
|
|
|
:check-type="queryParams.checkType"
|
|
|
:unit-name="queryParams.unitName"
|
|
|
:status="shiftStatus"
|
|
|
+ :checker-name="shiftCheckerName"
|
|
|
/>
|
|
|
</div>
|
|
|
</ContentWrap>
|
|
|
@@ -322,6 +331,7 @@ const taskList = ref<Record<string, PipePlanSchedulingCalendarVO>>({})
|
|
|
const shiftStartDate = ref(dayjs().startOf('month').format('YYYY-MM-DD'))
|
|
|
const shiftEndDate = ref(dayjs().endOf('month').format('YYYY-MM-DD'))
|
|
|
const shiftStatus = ref('')
|
|
|
+const shiftCheckerName = ref('')
|
|
|
const shiftExportLoading = ref(false)
|
|
|
const shiftScheduleRef = ref() // ShiftSchedule 组件引用
|
|
|
|
|
|
@@ -487,6 +497,7 @@ const resetQuery = () => {
|
|
|
shiftStartDate.value = dayjs().startOf('month').format('YYYY-MM-DD')
|
|
|
shiftEndDate.value = dayjs().endOf('month').format('YYYY-MM-DD')
|
|
|
shiftStatus.value = ''
|
|
|
+ shiftCheckerName.value = ''
|
|
|
handleQuery()
|
|
|
}
|
|
|
|