Newer
Older
xc-business-system / src / views / equipement / source / cert / list.vue
<!-- 溯源证书管理 -->
<script lang="ts" setup name="EquipmentSourceCertList">
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 './cert-interface'
import type { TableColumn } from '@/components/NormalTable/table_interface'
import type { IMenu } from '@/components/buttonBox/buttonBox'
import { delSourceCertList, getSourceCertList } from '@/api/equipment/source/cert'
const $route = useRoute()
const $router = useRouter()
const { proxy } = getCurrentInstance() as any
const loadingTable = ref(false)
// 查询条件
const listQuery: Ref<IListQuery> = ref({
  certificateName: '', // 证书名称
  certificateNo: '', // 证书编号
  equipmentName: '', // 设备名称
  equipmentNo: '', // 设备编号
  traceCompany: '', // 溯源单位名
  validDateEnd: '', // 检定有效期结束
  validDateStart: '', // 检定有效期开始
  limit: 20,
  offset: 1,
})

// 表头
const columns = ref<TableColumn[]>([
  { text: '证书编号', value: 'certificateNo', align: 'center', width: '160' },
  { text: '证书名称', value: 'certificateName', align: 'center' },
  { text: '统一编号', value: 'equipmentNo', align: 'center', width: '160' },
  { text: '设备名称', value: 'equipmentName', align: 'center' },
  { text: '溯源单位', value: 'traceCompany', align: 'center' },
  { text: '检定日期', value: 'traceDate', align: 'center', width: '120' },
  { text: '证书有效期', value: 'validDate', align: 'center', width: '120' },
])
const list = ref<IList[]>([]) // 列表
const dateRange = ref<[DateModelType, DateModelType]>(['', ''])// 筛选时间段数据
const total = ref(0) // 数据总条数
// 选中的内容
const checkoutList = ref<string[]>([])

// 多选发生改变时
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
  }
  getSourceCertList(listQuery.value).then((response) => {
    list.value = response.data.rows.map((item: { traceDate: string; validDate: string }) => {
      return {
        ...item,
        traceDate: item.traceDate ? dayjs(item.traceDate).format('YYYY-MM-DD') : item.traceDate,
        validDate: item.validDate ? dayjs(item.validDate).format('YYYY-MM-DD') : item.validDate,
      }
    })
    total.value = parseInt(response.data.total)
    loadingTable.value = false
  })
}
// 清除条件
const clearList = () => {
  listQuery.value = {
    certificateName: '', // 证书名称
    certificateNo: '', // 证书编号
    equipmentName: '', // 设备名称
    equipmentNo: '', // 设备编号
    traceCompany: '', // 溯源单位名
    validDateEnd: '', // 检定有效期结束
    validDateStart: '', // 检定有效期开始
    limit: 20,
    offset: 1,
  }
  fetchData()
}
// 搜索
const searchList = () => {
  fetchData(true)
}

// 新建
const add = () => {
  $router.push({
    path: 'cert/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(() => {
          delSourceCertList({ ids: [row.id] }).then((res) => {
            ElMessage({
              type: 'success',
              message: '删除成功',
            })
            fetchData(true)
          })
        })
      break
    case 'detail':
      $router.push({
        path: `cert/detail/${row.id}`,
        query: {
          ...row,
        },
      })
      break
    case 'edit':
      $router.push({
        path: `cert/${val}/${row.id}`,
        query: {
          ...row,
        },
      })
      break
  }
}

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

<template>
  <div>
    <!-- 布局 -->
    <app-container>
      <search-area :need-clear="true" @search="searchList" @clear="clearList">
        <search-item>
          <el-input v-model.trim="listQuery.certificateNo" placeholder="证书编号" class="short-input" clearable />
        </search-item>
        <search-item>
          <el-input v-model.trim="listQuery.certificateName" placeholder="证书名称" class="short-input" clearable />
        </search-item>
        <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="设备名称" clearable />
        </search-item>
        <search-item>
          <el-input v-model.trim="listQuery.traceCompany" placeholder="溯源单位" clearable />
        </search-item>
        <search-item>
          <el-date-picker
            v-model="dateRange"
            class="short-input"
            type="daterange"
            range-separator="至"
            format="YYYY-MM-DD"
            value-format="YYYY-MM-DD"
            start-placeholder="证书有效期(开始)"
            end-placeholder="证书有效期(结束)"
          />
        </search-item>
      </search-area>
      <table-container>
        <template #btns-right>
          <icon-button icon="icon-add" title="新建" type="primary" @click="add" />
        </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="140"
            >
              <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>