|
@@ -1,236 +1,191 @@
|
|
|
<template>
|
|
<template>
|
|
|
- <el-row :gutter="20">
|
|
|
|
|
- <DeptTree @node-click="handleDeptNodeClick" v-model:collapsed="isLeftContentCollapsed" />
|
|
|
|
|
- <el-col :xs="24" :span="isLeftContentCollapsed ? 24 : 20">
|
|
|
|
|
- <div
|
|
|
|
|
- style="border: none; background: #fff; display: flex; align-items: center"
|
|
|
|
|
- class="py-2 rounded-sm px-2"
|
|
|
|
|
- >
|
|
|
|
|
- <!-- 搜索工作栏 -->
|
|
|
|
|
- <el-form
|
|
|
|
|
- class="-mb-15px"
|
|
|
|
|
- :model="queryParams"
|
|
|
|
|
- ref="queryFormRef"
|
|
|
|
|
- :inline="true"
|
|
|
|
|
- label-width="68px"
|
|
|
|
|
- >
|
|
|
|
|
- <el-form-item :label="t('bomList.name')" prop="inspectOrderTitle">
|
|
|
|
|
- <el-input
|
|
|
|
|
- v-model="queryParams.inspectOrderTitle"
|
|
|
|
|
- :placeholder="t('bomList.nHolder')"
|
|
|
|
|
- clearable
|
|
|
|
|
- @keyup.enter="handleQuery"
|
|
|
|
|
- class="!w-180px"
|
|
|
|
|
- />
|
|
|
|
|
- </el-form-item>
|
|
|
|
|
- <!-- <el-form-item label="工单编码" prop="inspectOrderCode">-->
|
|
|
|
|
- <!-- <el-input-->
|
|
|
|
|
- <!-- v-model="queryParams.inspectOrderCode"-->
|
|
|
|
|
- <!-- placeholder="请输入工单编码"-->
|
|
|
|
|
- <!-- clearable-->
|
|
|
|
|
- <!-- @keyup.enter="handleQuery"-->
|
|
|
|
|
- <!-- class="!w-240px"-->
|
|
|
|
|
- <!-- />-->
|
|
|
|
|
- <!-- </el-form-item>-->
|
|
|
|
|
- <el-form-item :label="t('operationFill.status')" prop="status">
|
|
|
|
|
- <el-select
|
|
|
|
|
- v-model="queryParams.status"
|
|
|
|
|
- :placeholder="t('operationFill.status')"
|
|
|
|
|
- clearable
|
|
|
|
|
- class="!w-180px"
|
|
|
|
|
- >
|
|
|
|
|
- <el-option
|
|
|
|
|
- v-for="dict in getStrDictOptions(DICT_TYPE.PMS_INSPECT_ORDER_STATUS)"
|
|
|
|
|
- :key="dict.value"
|
|
|
|
|
- :label="dict.label"
|
|
|
|
|
- :value="dict.value"
|
|
|
|
|
- />
|
|
|
|
|
- </el-select>
|
|
|
|
|
- </el-form-item>
|
|
|
|
|
- <el-form-item label="创建时间" prop="createTime">
|
|
|
|
|
- <el-date-picker
|
|
|
|
|
- v-model="queryParams.createTime"
|
|
|
|
|
- value-format="YYYY-MM-DD HH:mm:ss"
|
|
|
|
|
- type="daterange"
|
|
|
|
|
- start-placeholder="开始日期"
|
|
|
|
|
- end-placeholder="结束日期"
|
|
|
|
|
- :default-time="[new Date('1 00:00:00'), new Date('1 23:59:59')]"
|
|
|
|
|
- class="!w-180px"
|
|
|
|
|
- />
|
|
|
|
|
- </el-form-item>
|
|
|
|
|
- <el-form-item>
|
|
|
|
|
- <el-button @click="handleQuery"
|
|
|
|
|
- ><Icon icon="ep:search" class="mr-5px" /> {{ t('operationFill.search') }}</el-button
|
|
|
|
|
- >
|
|
|
|
|
- <el-button @click="resetQuery"
|
|
|
|
|
- ><Icon icon="ep:refresh" class="mr-5px" /> {{ t('operationFill.reset') }}</el-button
|
|
|
|
|
- >
|
|
|
|
|
- <!-- <el-button-->
|
|
|
|
|
- <!-- type="primary"-->
|
|
|
|
|
- <!-- plain-->
|
|
|
|
|
- <!-- @click="openForm('create')"-->
|
|
|
|
|
- <!-- v-hasPermi="['rq:iot-inspect-order:create']"-->
|
|
|
|
|
- <!-- >-->
|
|
|
|
|
- <!-- <Icon icon="ep:plus" class="mr-5px" /> 新增-->
|
|
|
|
|
- <!-- </el-button>-->
|
|
|
|
|
- <el-button
|
|
|
|
|
- type="success"
|
|
|
|
|
- plain
|
|
|
|
|
- @click="handleExport"
|
|
|
|
|
- :loading="exportLoading"
|
|
|
|
|
- v-hasPermi="['rq:iot-inspect-order:export']"
|
|
|
|
|
- >
|
|
|
|
|
- <Icon icon="ep:download" class="mr-5px" /> 导出
|
|
|
|
|
- </el-button>
|
|
|
|
|
- </el-form-item>
|
|
|
|
|
- </el-form>
|
|
|
|
|
|
|
+ <div
|
|
|
|
|
+ class="inspect-order-page grid grid-cols-[auto_1fr] grid-rows-[auto_1fr] gap-4 h-[calc(100vh-20px-var(--top-tool-height)-var(--tags-view-height)-var(--app-footer-height))]">
|
|
|
|
|
+ <DeptTreeSelect
|
|
|
|
|
+ :top-id="rootDeptId"
|
|
|
|
|
+ :deptId="currentDeptId"
|
|
|
|
|
+ v-model="queryParams.deptId"
|
|
|
|
|
+ :init-select="false"
|
|
|
|
|
+ :show-title="false"
|
|
|
|
|
+ request-api="getSimpleDeptList"
|
|
|
|
|
+ class="inspect-order-tree row-span-2"
|
|
|
|
|
+ @node-click="handleDeptNodeClick" />
|
|
|
|
|
+
|
|
|
|
|
+ <el-form
|
|
|
|
|
+ ref="queryFormRef"
|
|
|
|
|
+ :model="queryParams"
|
|
|
|
|
+ size="default"
|
|
|
|
|
+ label-width="88px"
|
|
|
|
|
+ class="inspect-order-query bg-white dark:bg-[#1d1e1f] rounded-lg shadow px-6 py-3 min-w-0">
|
|
|
|
|
+ <div class="query-row">
|
|
|
|
|
+ <el-form-item :label="t('bomList.name')" prop="inspectOrderTitle">
|
|
|
|
|
+ <el-input
|
|
|
|
|
+ v-model="queryParams.inspectOrderTitle"
|
|
|
|
|
+ :placeholder="t('bomList.nHolder')"
|
|
|
|
|
+ clearable
|
|
|
|
|
+ class="query-control"
|
|
|
|
|
+ @keyup.enter="handleQuery" />
|
|
|
|
|
+ </el-form-item>
|
|
|
|
|
+ <el-form-item :label="t('operationFill.status')" prop="status">
|
|
|
|
|
+ <el-select
|
|
|
|
|
+ v-model="queryParams.status"
|
|
|
|
|
+ :placeholder="t('operationFill.status')"
|
|
|
|
|
+ clearable
|
|
|
|
|
+ class="query-control">
|
|
|
|
|
+ <el-option
|
|
|
|
|
+ v-for="dict in getStrDictOptions(DICT_TYPE.PMS_INSPECT_ORDER_STATUS)"
|
|
|
|
|
+ :key="dict.value"
|
|
|
|
|
+ :label="dict.label"
|
|
|
|
|
+ :value="dict.value" />
|
|
|
|
|
+ </el-select>
|
|
|
|
|
+ </el-form-item>
|
|
|
|
|
+ <el-form-item :label="t('common.createTime')" prop="createTime" label-width="100px">
|
|
|
|
|
+ <el-date-picker
|
|
|
|
|
+ v-model="queryParams.createTime"
|
|
|
|
|
+ value-format="YYYY-MM-DD HH:mm:ss"
|
|
|
|
|
+ type="daterange"
|
|
|
|
|
+ :start-placeholder="t('info.start')"
|
|
|
|
|
+ :end-placeholder="t('info.end')"
|
|
|
|
|
+ :default-time="[new Date('1 00:00:00'), new Date('1 23:59:59')]"
|
|
|
|
|
+ class="query-control query-control--date" />
|
|
|
|
|
+ </el-form-item>
|
|
|
</div>
|
|
</div>
|
|
|
|
|
|
|
|
- <!-- 列表 -->
|
|
|
|
|
- <ContentWrap style="border: none; margin-top: 20px">
|
|
|
|
|
- <zm-table :loading="loading" :data="list" height="calc(85vh - 138px)">
|
|
|
|
|
- <zm-table-column :label="t('iotDevice.serial')" width="70" align="center">
|
|
|
|
|
- <template #default="scope">
|
|
|
|
|
- {{ scope.$index + 1 }}
|
|
|
|
|
- </template>
|
|
|
|
|
- </zm-table-column>
|
|
|
|
|
- <zm-table-column :label="t('bomList.name')" align="center" prop="inspectOrderTitle" />
|
|
|
|
|
- <!-- <el-table-column label="工单编码" align="center" prop="inspectOrderCode" />-->
|
|
|
|
|
- <zm-table-column
|
|
|
|
|
- :label="t('route.orderType')"
|
|
|
|
|
- align="center"
|
|
|
|
|
- prop="type"
|
|
|
|
|
- min-width="90"
|
|
|
|
|
- />
|
|
|
|
|
- <zm-table-column
|
|
|
|
|
- :label="t('operationFill.status')"
|
|
|
|
|
- align="center"
|
|
|
|
|
- prop="status"
|
|
|
|
|
- min-width="95"
|
|
|
|
|
- >
|
|
|
|
|
- <template #default="scope">
|
|
|
|
|
- <dict-tag :type="DICT_TYPE.PMS_INSPECT_ORDER_STATUS" :value="scope.row.status" />
|
|
|
|
|
- </template>
|
|
|
|
|
- </zm-table-column>
|
|
|
|
|
- <zm-table-column
|
|
|
|
|
- :label="t('iotMaintain.PersonInCharge')"
|
|
|
|
|
- align="center"
|
|
|
|
|
- prop="chargeName"
|
|
|
|
|
- min-width="110"
|
|
|
|
|
- />
|
|
|
|
|
- <zm-table-column
|
|
|
|
|
- :label="t('inspect.deviceCount')"
|
|
|
|
|
- align="center"
|
|
|
|
|
- prop="deviceCount"
|
|
|
|
|
- min-width="100"
|
|
|
|
|
- >
|
|
|
|
|
- <template #default="scope">
|
|
|
|
|
- <el-tag type="info"> {{ scope.row.deviceCount }}</el-tag>
|
|
|
|
|
- </template>
|
|
|
|
|
- </zm-table-column>
|
|
|
|
|
- <zm-table-column
|
|
|
|
|
- :label="t('inspect.needDevice')"
|
|
|
|
|
- align="center"
|
|
|
|
|
- prop="needDevice"
|
|
|
|
|
- min-width="100"
|
|
|
|
|
- >
|
|
|
|
|
- <template #default="scope">
|
|
|
|
|
- <el-tag type="success"> {{ scope.row.needDevice }}</el-tag>
|
|
|
|
|
- </template>
|
|
|
|
|
- </zm-table-column>
|
|
|
|
|
- <zm-table-column
|
|
|
|
|
- :label="t('inspect.exceptionCount')"
|
|
|
|
|
- align="center"
|
|
|
|
|
- prop="exceptionCount"
|
|
|
|
|
- min-width="100"
|
|
|
|
|
- >
|
|
|
|
|
- <template #default="scope">
|
|
|
|
|
- <el-tag type="danger"> {{ scope.row.exceptionCount }}</el-tag>
|
|
|
|
|
- </template>
|
|
|
|
|
- </zm-table-column>
|
|
|
|
|
- <!-- <el-table-column label="备注" align="center" prop="remark" />-->
|
|
|
|
|
- <zm-table-column
|
|
|
|
|
- :label="t('inspect.generateTime')"
|
|
|
|
|
- align="center"
|
|
|
|
|
- prop="createTime"
|
|
|
|
|
- :formatter="dateFormatter"
|
|
|
|
|
- min-width="180px"
|
|
|
|
|
- />
|
|
|
|
|
- <zm-table-column
|
|
|
|
|
- :label="t('inspect.executeTime')"
|
|
|
|
|
- align="center"
|
|
|
|
|
- prop="executeDate"
|
|
|
|
|
- :formatter="dateFormatter"
|
|
|
|
|
- min-width="180px"
|
|
|
|
|
- />
|
|
|
|
|
- <zm-table-column
|
|
|
|
|
- :label="t('iotMaintain.operation')"
|
|
|
|
|
- align="center"
|
|
|
|
|
- min-width="160px"
|
|
|
|
|
- fixed="right"
|
|
|
|
|
- action
|
|
|
|
|
- >
|
|
|
|
|
- <template #default="scope">
|
|
|
|
|
- <el-button link type="primary" @click="openForm(scope.row.id)">
|
|
|
|
|
- {{ t('operationFill.view') }}
|
|
|
|
|
- </el-button>
|
|
|
|
|
- <el-button
|
|
|
|
|
- v-if="scope.row.status === 'todo'"
|
|
|
|
|
- link
|
|
|
|
|
- type="primary"
|
|
|
|
|
- @click="openWrite(scope.row.id)"
|
|
|
|
|
- v-hasPermi="['rq:iot-inspect-order:update']"
|
|
|
|
|
- >
|
|
|
|
|
- {{ t('operationFill.fill') }}
|
|
|
|
|
- </el-button>
|
|
|
|
|
- <el-button
|
|
|
|
|
- link
|
|
|
|
|
- type="warning"
|
|
|
|
|
- v-if="scope.row.status === 'todo'"
|
|
|
|
|
- @click="openDialog(scope.row.id)"
|
|
|
|
|
- >
|
|
|
|
|
- {{ t('inspect.ignore') }}
|
|
|
|
|
- </el-button>
|
|
|
|
|
- <!-- <el-button link type="primary" @click="openForm(scope.row.id)"> {{ t('inspect.ignore') }} </el-button>-->
|
|
|
|
|
- </template>
|
|
|
|
|
- </zm-table-column>
|
|
|
|
|
- </zm-table>
|
|
|
|
|
- <el-dialog
|
|
|
|
|
- v-model="dialogVisible"
|
|
|
|
|
- title="忽略理由"
|
|
|
|
|
- :width="600"
|
|
|
|
|
- :before-close="handleClose"
|
|
|
|
|
- append-to-body
|
|
|
|
|
- :close-on-click-modal="false"
|
|
|
|
|
- >
|
|
|
|
|
- <el-form ref="reasonFormRef" :model="form" :rules="rules" label-width="60px">
|
|
|
|
|
- <el-form-item label="理由" prop="reason">
|
|
|
|
|
- <el-input
|
|
|
|
|
- type="textarea"
|
|
|
|
|
- v-model="form.reason"
|
|
|
|
|
- placeholder="请输入忽略理由"
|
|
|
|
|
- :rows="4"
|
|
|
|
|
- resize="none"
|
|
|
|
|
- />
|
|
|
|
|
- </el-form-item>
|
|
|
|
|
- </el-form>
|
|
|
|
|
-
|
|
|
|
|
- <template #footer>
|
|
|
|
|
- <el-button @click="handleCancel">取消</el-button>
|
|
|
|
|
- <el-button type="primary" @click="handleConfirm">确定</el-button>
|
|
|
|
|
|
|
+ <el-form-item class="query-actions">
|
|
|
|
|
+ <el-button type="primary" @click="handleQuery">
|
|
|
|
|
+ <Icon icon="ep:search" class="mr-5px" />{{ t('operationFill.search') }}
|
|
|
|
|
+ </el-button>
|
|
|
|
|
+ <el-button @click="resetQuery">
|
|
|
|
|
+ <Icon icon="ep:refresh" class="mr-5px" />{{ t('operationFill.reset') }}
|
|
|
|
|
+ </el-button>
|
|
|
|
|
+ <el-button
|
|
|
|
|
+ type="success"
|
|
|
|
|
+ plain
|
|
|
|
|
+ :loading="exportLoading"
|
|
|
|
|
+ @click="handleExport"
|
|
|
|
|
+ v-hasPermi="['rq:iot-inspect-order:export']">
|
|
|
|
|
+ <Icon icon="ep:download" class="mr-5px" />导出
|
|
|
|
|
+ </el-button>
|
|
|
|
|
+ </el-form-item>
|
|
|
|
|
+ </el-form>
|
|
|
|
|
+
|
|
|
|
|
+ <div
|
|
|
|
|
+ class="table-panel bg-white dark:bg-[#1d1e1f] shadow rounded-lg flex flex-col p-4 min-w-0 min-h-0">
|
|
|
|
|
+ <div class="flex-1 relative min-h-0">
|
|
|
|
|
+ <el-auto-resizer class="absolute">
|
|
|
|
|
+ <template #default="{ width, height }">
|
|
|
|
|
+ <ZmTable
|
|
|
|
|
+ :loading="loading"
|
|
|
|
|
+ :data="list"
|
|
|
|
|
+ :width="width"
|
|
|
|
|
+ :height="height"
|
|
|
|
|
+ :max-height="height"
|
|
|
|
|
+ show-border
|
|
|
|
|
+ settings-cache-key="pms-inspect-order-list">
|
|
|
|
|
+ <ZmTableColumn
|
|
|
|
|
+ type="index"
|
|
|
|
|
+ :label="t('iotDevice.serial')"
|
|
|
|
|
+ :width="70"
|
|
|
|
|
+ fixed="left"
|
|
|
|
|
+ hide-in-column-settings />
|
|
|
|
|
+ <ZmTableColumn :label="t('bomList.name')" prop="inspectOrderTitle" fixed="left" />
|
|
|
|
|
+ <ZmTableColumn :label="t('route.orderType')" prop="type" />
|
|
|
|
|
+ <ZmTableColumn :label="t('operationFill.status')" prop="status">
|
|
|
|
|
+ <template #default="scope">
|
|
|
|
|
+ <dict-tag :type="DICT_TYPE.PMS_INSPECT_ORDER_STATUS" :value="scope.row.status" />
|
|
|
|
|
+ </template>
|
|
|
|
|
+ </ZmTableColumn>
|
|
|
|
|
+ <ZmTableColumn :label="t('iotMaintain.PersonInCharge')" prop="chargeName" />
|
|
|
|
|
+ <ZmTableColumn :label="t('inspect.deviceCount')" prop="deviceCount">
|
|
|
|
|
+ <template #default="scope">
|
|
|
|
|
+ <el-tag type="info">{{ scope.row.deviceCount }}</el-tag>
|
|
|
|
|
+ </template>
|
|
|
|
|
+ </ZmTableColumn>
|
|
|
|
|
+ <ZmTableColumn :label="t('inspect.needDevice')" prop="needDevice">
|
|
|
|
|
+ <template #default="scope">
|
|
|
|
|
+ <el-tag type="success">{{ scope.row.needDevice }}</el-tag>
|
|
|
|
|
+ </template>
|
|
|
|
|
+ </ZmTableColumn>
|
|
|
|
|
+ <ZmTableColumn :label="t('inspect.exceptionCount')" prop="exceptionCount">
|
|
|
|
|
+ <template #default="scope">
|
|
|
|
|
+ <el-tag type="danger">{{ scope.row.exceptionCount }}</el-tag>
|
|
|
|
|
+ </template>
|
|
|
|
|
+ </ZmTableColumn>
|
|
|
|
|
+ <ZmTableColumn
|
|
|
|
|
+ :label="t('inspect.generateTime')"
|
|
|
|
|
+ prop="createTime"
|
|
|
|
|
+ :formatter="dateFormatter" />
|
|
|
|
|
+ <ZmTableColumn
|
|
|
|
|
+ :label="t('inspect.executeTime')"
|
|
|
|
|
+ prop="executeDate"
|
|
|
|
|
+ :formatter="dateFormatter" />
|
|
|
|
|
+ <ZmTableColumn :label="t('iotMaintain.operation')" :width="180" fixed="right" action>
|
|
|
|
|
+ <template #default="scope">
|
|
|
|
|
+ <el-button link type="primary" @click="openForm(scope.row.id)">
|
|
|
|
|
+ {{ t('operationFill.view') }}
|
|
|
|
|
+ </el-button>
|
|
|
|
|
+ <el-button
|
|
|
|
|
+ v-if="scope.row.status === 'todo'"
|
|
|
|
|
+ link
|
|
|
|
|
+ type="primary"
|
|
|
|
|
+ @click="openWrite(scope.row.id)"
|
|
|
|
|
+ v-hasPermi="['rq:iot-inspect-order:update']">
|
|
|
|
|
+ {{ t('operationFill.fill') }}
|
|
|
|
|
+ </el-button>
|
|
|
|
|
+ <el-button
|
|
|
|
|
+ v-if="scope.row.status === 'todo'"
|
|
|
|
|
+ link
|
|
|
|
|
+ type="warning"
|
|
|
|
|
+ @click="openDialog(scope.row.id)">
|
|
|
|
|
+ {{ t('inspect.ignore') }}
|
|
|
|
|
+ </el-button>
|
|
|
|
|
+ </template>
|
|
|
|
|
+ </ZmTableColumn>
|
|
|
|
|
+ </ZmTable>
|
|
|
</template>
|
|
</template>
|
|
|
- </el-dialog>
|
|
|
|
|
- <!-- 分页 -->
|
|
|
|
|
- <Pagination
|
|
|
|
|
|
|
+ </el-auto-resizer>
|
|
|
|
|
+ </div>
|
|
|
|
|
+
|
|
|
|
|
+ <div class="h-8 mt-2 flex items-center justify-end">
|
|
|
|
|
+ <el-pagination
|
|
|
|
|
+ v-show="total > 0"
|
|
|
|
|
+ size="default"
|
|
|
|
|
+ :current-page="queryParams.pageNo"
|
|
|
|
|
+ :page-size="queryParams.pageSize"
|
|
|
|
|
+ :background="true"
|
|
|
|
|
+ :page-sizes="[10, 20, 30, 50, 100]"
|
|
|
:total="total"
|
|
:total="total"
|
|
|
- v-model:page="queryParams.pageNo"
|
|
|
|
|
- v-model:limit="queryParams.pageSize"
|
|
|
|
|
- @pagination="getList"
|
|
|
|
|
- />
|
|
|
|
|
- </ContentWrap>
|
|
|
|
|
- </el-col>
|
|
|
|
|
- </el-row>
|
|
|
|
|
- <!-- 表单弹窗:添加/修改 -->
|
|
|
|
|
|
|
+ layout="total, sizes, prev, pager, next, jumper"
|
|
|
|
|
+ @size-change="handleSizeChange"
|
|
|
|
|
+ @current-change="handleCurrentChange" />
|
|
|
|
|
+ </div>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ </div>
|
|
|
|
|
+
|
|
|
|
|
+ <el-dialog
|
|
|
|
|
+ v-model="dialogVisible"
|
|
|
|
|
+ title="忽略理由"
|
|
|
|
|
+ width="min(520px, 92vw)"
|
|
|
|
|
+ :before-close="handleClose"
|
|
|
|
|
+ append-to-body
|
|
|
|
|
+ :close-on-click-modal="false">
|
|
|
|
|
+ <el-form ref="reasonFormRef" :model="form" :rules="rules" size="default" label-width="60px">
|
|
|
|
|
+ <el-form-item label="理由" prop="reason">
|
|
|
|
|
+ <el-input
|
|
|
|
|
+ v-model="form.reason"
|
|
|
|
|
+ type="textarea"
|
|
|
|
|
+ placeholder="请输入忽略理由"
|
|
|
|
|
+ :rows="4"
|
|
|
|
|
+ resize="none" />
|
|
|
|
|
+ </el-form-item>
|
|
|
|
|
+ </el-form>
|
|
|
|
|
+
|
|
|
|
|
+ <template #footer>
|
|
|
|
|
+ <el-button size="default" @click="handleCancel">取消</el-button>
|
|
|
|
|
+ <el-button size="default" type="primary" @click="handleConfirm">确定</el-button>
|
|
|
|
|
+ </template>
|
|
|
|
|
+ </el-dialog>
|
|
|
|
|
+
|
|
|
<IotInspectOrderForm ref="formRef" @success="getList" />
|
|
<IotInspectOrderForm ref="formRef" @success="getList" />
|
|
|
</template>
|
|
</template>
|
|
|
|
|
|
|
@@ -240,10 +195,10 @@ import download from '@/utils/download'
|
|
|
import { IotInspectOrderApi, IotInspectOrderVO } from '@/api/pms/inspect/order'
|
|
import { IotInspectOrderApi, IotInspectOrderVO } from '@/api/pms/inspect/order'
|
|
|
import IotInspectOrderForm from './IotInspectOrderForm.vue'
|
|
import IotInspectOrderForm from './IotInspectOrderForm.vue'
|
|
|
import { DICT_TYPE, getStrDictOptions } from '@/utils/dict'
|
|
import { DICT_TYPE, getStrDictOptions } from '@/utils/dict'
|
|
|
-import DeptTree from '@/views/system/user/DeptTree2.vue'
|
|
|
|
|
|
|
+import { useUserStore } from '@/store/modules/user'
|
|
|
|
|
|
|
|
import { useTableComponents } from '@/components/ZmTable/useTableComponents'
|
|
import { useTableComponents } from '@/components/ZmTable/useTableComponents'
|
|
|
-const { ZmTable, ZmTableColumn } = useTableComponents()
|
|
|
|
|
|
|
+const { ZmTable, ZmTableColumn } = useTableComponents<IotInspectOrderVO>()
|
|
|
|
|
|
|
|
const { push } = useRouter()
|
|
const { push } = useRouter()
|
|
|
const { params } = useRoute()
|
|
const { params } = useRoute()
|
|
@@ -254,11 +209,11 @@ const message = useMessage() // 消息弹窗
|
|
|
const { t } = useI18n() // 国际化
|
|
const { t } = useI18n() // 国际化
|
|
|
const loading = ref(true) // 列表的加载中
|
|
const loading = ref(true) // 列表的加载中
|
|
|
const list = ref<IotInspectOrderVO[]>([]) // 列表的数据
|
|
const list = ref<IotInspectOrderVO[]>([]) // 列表的数据
|
|
|
-const status = params.status
|
|
|
|
|
-const deptId = params.deptId
|
|
|
|
|
|
|
+const rootDeptId = 156
|
|
|
|
|
+const currentDeptId = useUserStore().getUser.deptId || rootDeptId
|
|
|
|
|
+const routeDeptId = params.deptId
|
|
|
const createTime = params.createTime
|
|
const createTime = params.createTime
|
|
|
const total = ref(0) // 列表的总页数
|
|
const total = ref(0) // 列表的总页数
|
|
|
-let isLeftContentCollapsed = ref(false)
|
|
|
|
|
const dialogVisible = ref(false)
|
|
const dialogVisible = ref(false)
|
|
|
const queryParams = reactive({
|
|
const queryParams = reactive({
|
|
|
pageNo: 1,
|
|
pageNo: 1,
|
|
@@ -275,6 +230,7 @@ const queryFormRef = ref() // 搜索的表单
|
|
|
const exportLoading = ref(false) // 导出的加载中
|
|
const exportLoading = ref(false) // 导出的加载中
|
|
|
const handleDeptNodeClick = async (row) => {
|
|
const handleDeptNodeClick = async (row) => {
|
|
|
queryParams.deptId = row.id
|
|
queryParams.deptId = row.id
|
|
|
|
|
+ queryParams.pageNo = 1
|
|
|
await getList()
|
|
await getList()
|
|
|
}
|
|
}
|
|
|
/** 查询列表 */
|
|
/** 查询列表 */
|
|
@@ -297,10 +253,20 @@ const handleQuery = () => {
|
|
|
|
|
|
|
|
/** 重置按钮操作 */
|
|
/** 重置按钮操作 */
|
|
|
const resetQuery = () => {
|
|
const resetQuery = () => {
|
|
|
- queryFormRef.value.resetFields()
|
|
|
|
|
|
|
+ queryFormRef.value?.resetFields()
|
|
|
handleQuery()
|
|
handleQuery()
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
+const handleSizeChange = (pageSize: number) => {
|
|
|
|
|
+ queryParams.pageSize = pageSize
|
|
|
|
|
+ handleQuery()
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+const handleCurrentChange = (pageNo: number) => {
|
|
|
|
|
+ queryParams.pageNo = pageNo
|
|
|
|
|
+ getList()
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
const reasonFormRef = ref(null)
|
|
const reasonFormRef = ref(null)
|
|
|
const form = reactive({
|
|
const form = reactive({
|
|
|
id: undefined,
|
|
id: undefined,
|
|
@@ -396,12 +362,11 @@ const handleExport = async () => {
|
|
|
|
|
|
|
|
/** 初始化 **/
|
|
/** 初始化 **/
|
|
|
onMounted(() => {
|
|
onMounted(() => {
|
|
|
- debugger
|
|
|
|
|
if (params.status) {
|
|
if (params.status) {
|
|
|
queryParams.status = params.status
|
|
queryParams.status = params.status
|
|
|
}
|
|
}
|
|
|
- if (deptId != null) {
|
|
|
|
|
- queryParams.deptId = deptId
|
|
|
|
|
|
|
+ if (routeDeptId != null) {
|
|
|
|
|
+ queryParams.deptId = routeDeptId
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
if (createTime) {
|
|
if (createTime) {
|
|
@@ -410,24 +375,121 @@ onMounted(() => {
|
|
|
getList()
|
|
getList()
|
|
|
})
|
|
})
|
|
|
</script>
|
|
</script>
|
|
|
-<style scoped scss>
|
|
|
|
|
-.reason-confirm-container {
|
|
|
|
|
- margin: 20px;
|
|
|
|
|
|
|
+<style scoped>
|
|
|
|
|
+@media (width >= 1800px) {
|
|
|
|
|
+ .inspect-order-page .inspect-order-query,
|
|
|
|
|
+ .inspect-order-page .query-row {
|
|
|
|
|
+ flex-wrap: nowrap;
|
|
|
|
|
+ }
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
-/* 调整文本框样式 */
|
|
|
|
|
-:deep(.el-textarea__inner) {
|
|
|
|
|
- font-size: 14px;
|
|
|
|
|
|
|
+@media (width <= 1500px) {
|
|
|
|
|
+ .inspect-order-page .inspect-order-query,
|
|
|
|
|
+ .inspect-order-page .query-row {
|
|
|
|
|
+ gap: 12px 18px;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ .inspect-order-page .query-control {
|
|
|
|
|
+ width: 175px;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ .inspect-order-page .query-control--date {
|
|
|
|
|
+ width: 220px;
|
|
|
|
|
+ }
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
-/* 调整表单项间距 */
|
|
|
|
|
-:deep(.el-form-item) {
|
|
|
|
|
- margin-bottom ::v-deep .el-table__header-wrapper {
|
|
|
|
|
- position: sticky !important;
|
|
|
|
|
|
|
+@media (width <= 1200px) {
|
|
|
|
|
+ .inspect-order-page {
|
|
|
|
|
+ grid-template-columns: minmax(0, 1fr);
|
|
|
|
|
+ grid-template-rows: auto auto minmax(480px, 1fr);
|
|
|
|
|
+ height: auto;
|
|
|
|
|
+ min-height: calc(
|
|
|
|
|
+ 100vh - 20px - var(--top-tool-height) - var(--tags-view-height) - var(--app-footer-height)
|
|
|
|
|
+ );
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ .inspect-order-page :deep(.inspect-order-tree) {
|
|
|
|
|
+ grid-row: auto !important;
|
|
|
|
|
+ width: 100% !important;
|
|
|
|
|
+ height: 320px !important;
|
|
|
|
|
+ min-width: 0 !important;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ .inspect-order-page .query-actions {
|
|
|
width: 100%;
|
|
width: 100%;
|
|
|
- top: 0px;
|
|
|
|
|
- z-index: 2000;
|
|
|
|
|
}
|
|
}
|
|
|
- :15px;
|
|
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+@media (width <= 768px) {
|
|
|
|
|
+ .inspect-order-page .inspect-order-query,
|
|
|
|
|
+ .inspect-order-page .table-panel {
|
|
|
|
|
+ padding: 12px;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ .inspect-order-page .query-row,
|
|
|
|
|
+ .inspect-order-page .query-row :deep(.el-form-item),
|
|
|
|
|
+ .inspect-order-page .query-actions,
|
|
|
|
|
+ .inspect-order-page .query-control,
|
|
|
|
|
+ .inspect-order-page .query-control--date {
|
|
|
|
|
+ width: 100%;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ .inspect-order-page .query-actions :deep(.el-form-item__content) {
|
|
|
|
|
+ display: grid;
|
|
|
|
|
+ grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
|
|
|
+ width: 100%;
|
|
|
|
|
+ gap: 8px;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ .inspect-order-page .query-actions :deep(.el-button) {
|
|
|
|
|
+ width: 100%;
|
|
|
|
|
+ }
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+.inspect-order-query {
|
|
|
|
|
+ display: flex;
|
|
|
|
|
+ flex-wrap: wrap;
|
|
|
|
|
+ align-items: center;
|
|
|
|
|
+ justify-content: space-between;
|
|
|
|
|
+ gap: 12px 24px;
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+.query-row {
|
|
|
|
|
+ display: flex;
|
|
|
|
|
+ flex: 1 1 auto;
|
|
|
|
|
+ flex-wrap: wrap;
|
|
|
|
|
+ align-items: center;
|
|
|
|
|
+ min-width: 0;
|
|
|
|
|
+ gap: 12px 24px;
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+.query-actions {
|
|
|
|
|
+ flex: 0 0 auto;
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+.query-actions :deep(.el-form-item__content) {
|
|
|
|
|
+ display: flex;
|
|
|
|
|
+ flex-wrap: wrap;
|
|
|
|
|
+ gap: 8px 10px;
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+.query-actions :deep(.el-button) {
|
|
|
|
|
+ margin-left: 0;
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+.query-control {
|
|
|
|
|
+ width: 190px;
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+.query-control--date {
|
|
|
|
|
+ width: 240px;
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+.inspect-order-query :deep(.el-form-item) {
|
|
|
|
|
+ margin-bottom: 0;
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+.inspect-order-query :deep(.el-form-item__label) {
|
|
|
|
|
+ white-space: nowrap;
|
|
|
}
|
|
}
|
|
|
</style>
|
|
</style>
|