123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351 |
- <template>
- <el-row :gutter="20">
- <el-col :span="4" :xs="24">
- <ContentWrap class="h-1/1">
- <DeptTree @node-click="handleDeptNodeClick" />
- </ContentWrap>
- </el-col>
- <el-col :span="20" :xs="24">
- <ContentWrap>
- <!-- 搜索工作栏 -->
- <el-form
- class="-mb-15px"
- :model="queryParams"
- ref="queryFormRef"
- :inline="true"
- label-width="68px"
- >
- <el-form-item :label="t('maintain.faultCode')" prop="failureCode" style="margin-left: 25px">
- <el-input
- v-model="queryParams.failureCode"
- :placeholder="t('maintain.codeHolder')"
- clearable
- @keyup.enter="handleQuery"
- class="!w-200px"
- />
- </el-form-item>
- <el-form-item :label="t('maintain.faultName')" label-width="70px" prop="failureName">
- <el-input
- v-model="queryParams.failureName"
- :placeholder="t('maintain.nameHolder')"
- clearable
- @keyup.enter="handleQuery"
- class="!w-200px"
- />
- </el-form-item>
- <el-form-item :label="t('maintain.status')" label-width="40px" prop="status">
- <el-select
- v-model="queryParams.status"
- :placeholder="t('maintain.status')"
- clearable
- class="!w-200px"
- >
- <el-option
- v-for="dict in getStrDictOptions(DICT_TYPE.PMS_MAIN_STATUS)"
- :key="dict.value"
- :label="dict.label"
- :value="dict.value"
- />
- </el-select>
- </el-form-item>
- <el-form-item :label="t('maintain.shutDown')" v-show="ifShow" prop="ifStop">
- <el-select
- v-model="queryParams.ifStop"
- :placeholder="t('maintain.shutDown')"
- clearable
- class="!w-200px"
- >
- <el-option
- v-for="dict in getBoolDictOptions(DICT_TYPE.INFRA_BOOLEAN_STRING)"
- :key="dict.value"
- :label="dict.label"
- :value="dict.value"
- />
- </el-select>
- </el-form-item>
- <el-form-item :label="t('maintain.failureTime')" v-show="ifShow" prop="failureTime" style="margin-left: 25px">
- <el-date-picker
- v-model="queryParams.failureTime"
- 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-220px"
- />
- </el-form-item>
- <el-form-item :label="t('maintain.solve')" v-show="ifShow" prop="ifDeal">
- <el-select
- v-model="queryParams.ifDeal"
- :placeholder="t('maintain.solve')"
- clearable
- class="!w-200px"
- >
- <el-option
- v-for="dict in getBoolDictOptions(DICT_TYPE.INFRA_BOOLEAN_STRING)"
- :key="dict.value"
- :label="dict.label"
- :value="dict.value"
- />
- </el-select>
- </el-form-item>
- <el-form-item :label="t('maintain.assist')" v-show="ifShow" prop="needHelp">
- <el-select
- v-model="queryParams.needHelp"
- :placeholder="t('maintain.assist')"
- clearable
- class="!w-200px"
- >
- <el-option
- v-for="dict in getBoolDictOptions(DICT_TYPE.INFRA_BOOLEAN_STRING)"
- :key="dict.value"
- :label="dict.label"
- :value="dict.value"
- />
- </el-select>
- </el-form-item>
- <!-- <el-form-item label="创建时间" v-show="ifShow" 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-220px"-->
- <!-- />-->
- <!-- </el-form-item>-->
- <el-form-item>
- <el-button v-if="!ifShow" @click="moreQuery(true)" type="warning"><Icon icon="ep:search" class="mr-5px"/>
- {{ t('maintain.moreSearch') }}</el-button>
- <el-button v-if="ifShow" @click="moreQuery(false)" type="danger"><Icon icon="ep:search" class="mr-5px"/> {{ t('maintain.closeSearch') }}</el-button>
- <el-button @click="handleQuery"><Icon icon="ep:search" class="mr-5px" /> {{ t('maintain.search') }}</el-button>
- <el-button @click="resetQuery"><Icon icon="ep:refresh" class="mr-5px" /> {{ t('maintain.reset') }}</el-button>
- <el-button
- type="primary"
- plain
- @click="openForm('create')"
- v-hasPermi="['rq:iot-device:create']"
- >
- <Icon icon="ep:plus" class="mr-5px" /> {{ t('maintain.added') }}
- </el-button>
- <el-button
- type="success"
- plain
- @click="handleExport"
- :loading="exportLoading"
- >
- <Icon icon="ep:download" class="mr-5px" /> 导出
- </el-button>
- </el-form-item>
- </el-form>
- </ContentWrap>
- <!-- 列表 -->
- <ContentWrap>
- <el-table v-loading="loading" :data="list" :stripe="true" :show-overflow-tooltip="true">
- <el-table-column :label="t('maintain.serial')" width="70" align="center">
- <template #default="scope">
- {{ scope.$index + 1 }}
- </template>
- </el-table-column>
- <!-- <el-table-column label="故障编码" align="center" prop="failureCode" />-->
- <!-- <el-table-column label="故障名称" align="center" prop="failureName" />-->
- <el-table-column :label="t('maintain.deviceName')" align="center" prop="deviceName" />
- <el-table-column :label="t('maintain.status')" align="center" prop="status" >
- <template #default="scope">
- <dict-tag :type="DICT_TYPE.PMS_MAIN_STATUS" :value="scope.row.status" />
- </template>
- </el-table-column>
- <el-table-column :label="t('maintain.source')" align="center" prop="maintainType" />
- <el-table-column :label="t('maintain.audit')" align="center" prop="auditStatus" >
- <template #default="scope">
- <dict-tag :type="DICT_TYPE.CRM_AUDIT_STATUS" :value="scope.row.auditStatus" />
- </template>
- </el-table-column>
- <el-table-column :label="t('maintain.shutDown')" align="center" prop="ifStop" >
- <template #default="scope">
- <dict-tag :type="DICT_TYPE.INFRA_BOOLEAN_STRING" :value="scope.row.ifStop" />
- </template>
- </el-table-column>
- <el-table-column
- :label="t('iotMaintain.startTime')"
- align="center"
- prop="maintainStartTime"
- :formatter="dateFormatter"
- width="180px"
- />
- <el-table-column
- :label="t('maintain.failureTime')"
- align="center"
- prop="failureTime"
- :formatter="dateFormatter"
- width="180px"
- />
- <!-- <el-table-column-->
- <!-- label="维修结束时间"-->
- <!-- align="center"-->
- <!-- prop="maintainEndTime"-->
- <!-- :formatter="dateFormatter"-->
- <!-- width="180px"-->
- <!-- />-->
- <!-- <el-table-column label="备注" align="center" prop="remark" />-->
- <!-- <el-table-column-->
- <!-- label="创建时间"-->
- <!-- align="center"-->
- <!-- prop="createTime"-->
- <!-- :formatter="dateFormatter"-->
- <!-- width="180px"-->
- <!-- />-->
- <el-table-column :label="t('maintain.operation')" align="center" min-width="120px">
- <template #default="scope">
- <el-button
- link
- type="primary"
- @click="detail(scope.row.id)"
- >
- {{ t('maintain.view') }}
- </el-button>
- <el-button
- link
- v-if="scope.row.status==='tx'&&(scope.row.auditStatus===20||scope.row.auditStatus===null)"
- type="danger"
- @click="openForm('update',scope.row.id)"
- >
- {{ t('maintain.fill') }}
- </el-button>
- </template>
- </el-table-column>
- </el-table>
- <!-- 分页 -->
- <Pagination
- :total="total"
- v-model:page="queryParams.pageNo"
- v-model:limit="queryParams.pageSize"
- @pagination="getList"
- />
- </ContentWrap>
- </el-col>
- </el-row>
- <!-- 表单弹窗:添加/修改 -->
- </template>
- <script setup lang="ts">
- import { dateFormatter } from '@/utils/formatTime'
- import download from '@/utils/download'
- import { IotMaintainApi, IotMaintainVO } from '@/api/pms/maintain'
- import IotMaintainForm from './IotMaintainForm.vue'
- import DeptTree from "@/views/system/user/DeptTree.vue";
- import {DICT_TYPE, getStrDictOptions,getBoolDictOptions} from "@/utils/dict";
- /** 维修工单 列表 */
- defineOptions({ name: 'IotMaintain' })
- const message = useMessage() // 消息弹窗
- const { t } = useI18n() // 国际化
- const { push } = useRouter() // 路由跳转
- const ifShow = ref(false)
- const loading = ref(true) // 列表的加载中
- const list = ref<IotMaintainVO[]>([]) // 列表的数据
- const total = ref(0) // 列表的总页数
- const queryParams = reactive({
- pageNo: 1,
- pageSize: 10,
- failureCode: undefined,
- failureName: undefined,
- deviceId: undefined,
- status: undefined,
- ifStop: undefined,
- failureTime: [],
- failureInfluence: undefined,
- failureSystem: undefined,
- description: undefined,
- pic: undefined,
- solution: undefined,
- maintainStartTime: [],
- maintainEndTime: [],
- remark: undefined,
- createTime: [],
- deviceName: undefined,
- processInstanceId: undefined,
- auditStatus: undefined,
- deptId: undefined,
- })
- const queryFormRef = ref() // 搜索的表单
- const exportLoading = ref(false) // 导出的加载中
- const moreQuery = (show) => {
- ifShow.value = show
- }
- const openForm = (type: string, id?: number) => {
- //修改
- if (typeof id === 'number') {
- push({ name: 'MaintainEdit', params: {id } })
- return
- }
- // 新增
- push({ name: 'MaintainAdd', params:{} })
- }
- const detail = (id?: number) => {
- push({ name: 'MaintainDetail', params:{id} })
- }
- /** 查询列表 */
- const getList = async () => {
- loading.value = true
- try {
- const data = await IotMaintainApi.getIotMaintainPage(queryParams)
- list.value = data.list
- total.value = data.total
- } finally {
- loading.value = false
- }
- }
- /** 处理部门被点击 */
- const handleDeptNodeClick = async (row) => {
- queryParams.deptId = row.id
- await getList()
- }
- /** 搜索按钮操作 */
- const handleQuery = () => {
- queryParams.pageNo = 1
- getList()
- }
- /** 重置按钮操作 */
- const resetQuery = () => {
- queryFormRef.value.resetFields()
- handleQuery()
- }
- /** 删除按钮操作 */
- const handleDelete = async (id: number) => {
- try {
- // 删除的二次确认
- await message.delConfirm()
- // 发起删除
- await IotMaintainApi.deleteIotMaintain(id)
- message.success(t('common.delSuccess'))
- // 刷新列表
- await getList()
- } catch {}
- }
- /** 导出按钮操作 */
- const handleExport = async () => {
- try {
- // 导出的二次确认
- await message.exportConfirm()
- // 发起导出
- exportLoading.value = true
- const data = await IotMaintainApi.exportIotMaintain(queryParams)
- download.excel(data, '维修工单.xls')
- } catch {
- } finally {
- exportLoading.value = false
- }
- }
- /** 初始化 **/
- onMounted(() => {
- getList()
- })
- </script>
|