Newer
Older
xc-business-system / src / views / equipement / monitor / device / list.vue
<!-- 检测设备列表 -->
<script lang="ts" setup name="EquipmentMonitorDeviceList">
import type { Ref } from 'vue'
import { ElLoading, ElMessage, ElMessageBox } from 'element-plus'
import type { DateModelType } from 'element-plus'
import dayjs from 'dayjs'
import type { IList, IListQuery } from './device-interface'
import type { TableColumn } from '@/components/NormalTable/table_interface'
import { getDictByCode } from '@/api/system/dict'
import type { deptType, dictType } from '@/global'
import { exportFile } from '@/utils/exportUtils'
import { batchDelete, exportMonitorDeviceList, getMonitorDeviceList } from '@/api/equipment/monitor/device'
const $router = useRouter()
const loadingTable = ref(false)
// 查询条件
const listQuery: Ref<IListQuery> = ref({
  createDept: '', // 所属部门
  createDeptId: '', // 所属部门id
  createUserId: '', // 负责人id
  createUserName: '', // 负责人
  equipmentName: '', // 设备名称
  equipmentNo: '', // 设备编号
  measureValidDateEnd: '', // 检定有效期结束
  measureValidDateStart: '', // 检定有效期开始
  traceCompany: '', // 溯源单位
  limit: 20,
  offset: 1,
})
const dateRange = ref<[DateModelType, DateModelType]>(['', ''])// 筛选时间段数据
// 表头
const columns = ref<TableColumn[]>([
  { text: '统一编号', value: 'equipmentNo', align: 'center', width: '160' },
  { text: '设备名称', value: 'equipmentName', align: 'center' },
  { text: '规格型号', value: 'model', align: 'center' },
  { text: '出厂编号', value: 'manufactureNo', align: 'center' },
  { text: '所属部门', value: 'createDept', align: 'center' },
  { text: '负责人', value: 'createUserName', align: 'center' },
  { text: '计量标识', value: 'meterIdentifyName', align: 'center', width: '90' },
  { text: '检定周期(月)', value: 'checkCycle', align: 'center' },
  { text: '检定有效期', value: 'measureValidDate', align: 'center', width: '120' },
  { text: '溯源单位', value: 'traceCompany', align: 'center' },
  { text: '备注', value: 'remark', align: 'center' },
])
const list = ref<IList[]>([]) // 列表
const total = ref(0) // 数据总条数
// 选中的内容
const checkoutList = ref<string[]>([])

// -----------------------------------------字典--------------------------------------------------------------
const checkResultList = ref<dictType[]>([]) // 标准类型

// 查询字典
const getDict = async () => {
  getDictByCode('bizMaintainCheckResult').then((response) => {
    checkResultList.value = response.data
  })
}
// ---------------------------------------------------------------------------------------------------------
// 多选发生改变时
function handleSelectionChange(e: any) {
  checkoutList.value = e.map((item: { id: string }) => item.id)
}

// 数据查询
function fetchData(isNowPage = false) {
  loadingTable.value = true
  if (!isNowPage) {
    // 是否显示当前页,否则跳转第一页
    listQuery.value.offset = 1
  }
  getMonitorDeviceList(listQuery.value).then((response) => {
    list.value = response.data.rows.map((item: { measureValidDate: string }) => {
      return {
        ...item,
        measureValidDate: item.measureValidDate ? dayjs(item.measureValidDate).format('YYYY-MM-DD') : item.measureValidDate,
      }
    })
    total.value = parseInt(response.data.total)
    loadingTable.value = false
  })
}
// 清除条件
const clearList = () => {
  listQuery.value = {
    createDept: '', // 所属部门
    createDeptId: '', // 所属部门id
    createUserId: '', // 负责人id
    createUserName: '', // 负责人
    equipmentName: '', // 设备名称
    equipmentNo: '', // 设备编号
    measureValidDateEnd: '', // 检定有效期结束
    measureValidDateStart: '', // 检定有效期开始
    traceCompany: '', // 溯源单位
    limit: 20,
    offset: 1,
  }
  dateRange.value = ['', '']
  fetchData()
}
// 搜索
const searchList = () => {
  fetchData(true)
}

// 新建
const add = () => {
  $router.push({
    path: 'device/add',
  })
}

// 页数发生变化后的操作,可能是页码变化,可能是每页容量变化,此函数必写
const changePage = (val: { size?: number; page?: number }) => {
  if (val && val.size) {
    listQuery.value.limit = val.size
  }
  if (val && val.page) {
    listQuery.value.offset = val.page
  }
  fetchData(true)
}

// 操作
const handleEdit = (row: IList, val: string) => {
  switch (val) {
    case 'delete':
      ElMessageBox.confirm(
        '确认删除吗?',
        '提示',
        {
          confirmButtonText: '确认',
          cancelButtonText: '取消',
          type: 'warning',
        },
      )
        .then(() => {
          batchDelete({ ids: [row.id] }).then((res) => {
            ElMessage({
              type: 'success',
              message: '删除成功',
            })
            fetchData(true)
          })
        })
      break
    default:
      $router.push({
        path: `device/${val}/${row.id}`,
      })
      break
  }
}

// 导出
const exportAll = () => {
  const loading = ElLoading.service({
    lock: true,
    text: '下载中请稍后',
    background: 'rgba(255, 255, 255, 0.6)',
  })
  if (list.value.length > 0) {
    const params = {
      createDept: listQuery.value.createDept, // 所属部门
      createDeptId: listQuery.value.createDeptId, // 所属部门id
      createUserId: listQuery.value.createUserId, // 负责人id
      createUserName: listQuery.value.createUserName, // 负责人
      equipmentName: listQuery.value.equipmentName, // 设备名称
      equipmentNo: listQuery.value.equipmentNo, // 设备编号
      measureValidDateEnd: listQuery.value.measureValidDateEnd, // 检定有效期结束
      measureValidDateStart: listQuery.value.measureValidDateStart, // 检定有效期开始
      traceCompany: listQuery.value.traceCompany, // 溯源单位
      offset: 1,
      limit: 20,
      ids: checkoutList.value,
    }
    exportMonitorDeviceList(params).then((res) => {
      const blob = new Blob([res.data])
      loading.close()
      exportFile(blob, '监测设备.xlsx')
    })
  }
  else {
    loading.close()
    ElMessage.warning('无数据可导出数据')
  }
}

// ---------------------------------------钩子----------------------------------------------
watch(dateRange, (val) => {
  if (val) {
    listQuery.value.measureValidDateStart = `${val[0]}`
    listQuery.value.measureValidDateEnd = `${val[1]}`
  }
  else {
    listQuery.value.measureValidDateStart = ''
    listQuery.value.measureValidDateEnd = ''
  }
})
onMounted(async () => {
  await getDict()
  fetchData(false)
})
</script>

<template>
  <div>
    <!-- 布局 -->
    <app-container>
      <search-area :need-clear="true" @search="searchList" @clear="clearList">
        <search-item>
          <el-input v-model.trim="listQuery.equipmentNo" placeholder="统一编号" class="short-input" clearable />
        </search-item>
        <search-item>
          <el-input v-model.trim="listQuery.equipmentName" placeholder="设备名称" class="short-input" clearable />
        </search-item>
        <search-item>
          <el-input v-model.trim="listQuery.createDept" placeholder="所属部门" class="short-input" clearable />
        </search-item>
        <search-item>
          <el-input v-model.trim="listQuery.createUserName" placeholder="负责人" class="short-input" clearable />
        </search-item>
        <search-item>
          <el-input v-model.trim="listQuery.traceCompany" placeholder="溯源单位" class="short-input" clearable />
        </search-item>
        <search-item>
          <el-date-picker
            v-model="dateRange"
            class="short-input"
            type="datetimerange"
            range-separator="至"
            format="YYYY-MM-DD HH:mm:ss"
            value-format="YYYY-MM-DD HH:mm:ss"
            start-placeholder="检定有效期(开始)"
            end-placeholder="检定有效期(结束)"
          />
        </search-item>
      </search-area>
      <table-container>
        <template #btns-right>
          <icon-button icon="icon-add" title="新建" type="primary" @click="add" />
          <icon-button icon="icon-export" title="导出" type="primary" @click="exportAll" />
        </template>
        <normal-table
          :data="list" :total="total" :columns="columns" :query="listQuery" :list-loading="loadingTable"
          is-showmulti-select @change="changePage" @multi-select="handleSelectionChange"
        >
          <template #preColumns>
            <el-table-column label="序号" width="55" align="center">
              <template #default="scope">
                {{ (listQuery.offset - 1) * listQuery.limit + scope.$index + 1 }}
              </template>
            </el-table-column>
          </template>
          <template #columns>
            <el-table-column
              label="操作"
              align="center"
              fixed="right"
              width="150"
            >
              <template #default="{ row }">
                <el-button
                  size="small"
                  type="primary"
                  link
                  @click="handleEdit(row, 'detail')"
                >
                  查看
                </el-button>
                <el-button
                  size="small"
                  link
                  type="primary"
                  @click="handleEdit(row, 'edit')"
                >
                  编辑
                </el-button>
                <el-button
                  size="small"
                  type="danger"
                  link
                  @click="handleEdit(row, 'delete')"
                >
                  删除
                </el-button>
              </template>
            </el-table-column>
          </template>
        </normal-table>
      </table-container>
    </app-container>
  </div>
</template>