Newer
Older
smart-metering-front / src / views / business / lab / measureData / measureDataList.vue
<!-- 计量数据管理列表 -->
<script lang="ts" setup name="MeasureDataList">
import { getCurrentInstance, ref } from 'vue'
import { ElLoading, ElMessage, ElMessageBox } from 'element-plus'
import type { IList, IListQuery } from './measureData-interface'
import type { TableColumn } from '@/components/NormalTable/table_interface'
import { deletePrimitiveLogList, exportPrimitiveLogList, getPrimitiveLogList } from '@/api/business/lab/primitiveLogList'
import { cancelApproval, fetchApproval, submitApproval } from '@/api/approval'
import { printJSON } from '@/utils/printUtils'
import { exportFile } from '@/utils/exportUtils'
import { getDictByCode } from '@/api/system/dict'
import type { dictType } from '@/global'
import type { IMenu } from '@/components/buttonBox/buttonBox'
import { keepSearchParams, renewSearchParams } from '@/utils/keepQuery'
const { proxy } = getCurrentInstance() as any
const $router = useRouter() // 初始化路由
const approvalDialog = ref() // 审批对话ref
const $route = useRoute()
const TabActiveButton = 'BusinessLabMeasureData'
const menu = ref<IMenu[]>([]) // 审批状态按钮组合
const active = ref('')
// 查询条件
const listQuery = ref<IListQuery>({
  approvalStatus: active.value, // 审批状态
  certificateReportCode: '', // 证书编号
  certificateReportName: '', // 证书名称
  customerName: '', // 委托方名称
  sampleName: '', // 样品名称
  measureCategory: '', // 检校类别
  formId: '',
  approvalStatusName: '', // 审批状态名称
  offset: 1, // 当前页
  limit: 20, // 每页多少条
})
// 页面跳转之前保存参数
onBeforeRouteLeave((to: any) => {
  keepSearchParams(to.path, 'measureDataList', listQuery.value)
})
// 重新赋值
listQuery.value = renewSearchParams('measureDataList') || {
  measureCategory: '',	// 校验类别
  createUser: '',	// 创建人
  manufacturingNo: '',	// 出厂编号
  originalRecordCode: '',	// 原始记录单编号
  sampleModel: '',	// 样品型号
  sampleName: '',	// 样品名称
  sampleNo: '',	// 样品编号
  offset: 1, // 当前页
  limit: 20, // 每页多少条
}
// 多选选中
const checkoutList = ref<string[]>([])
const list = ref<IList[]>([]) // 数据列表
const total = ref(0) // 总条数
const mesureCategoryList = ref<dictType[]>([]) // 校检类别
const loadingTable = ref(false) // 表格loading

// 表头
const columns = ref<TableColumn[]>([
  { text: '证书编号', value: 'originalRecordCode', width: '160', align: 'center' },
  { text: '证书名称', value: 'originalRecordName', align: 'center' },
  { text: '样品编号', value: 'sampleNo', align: 'center', width: '160' },
  { text: '样品名称', value: 'sampleName', align: 'center' },
  { text: '型号', value: 'sampleModel', align: 'center' },
  { text: '委托单编号', value: 'orderCode', align: 'center' },
  { text: '委托单名称', value: 'orderName', align: 'center' },
  { text: '检定员', value: 'measurePersonName', align: 'center' },
  { text: '证书附件', value: 'measurePersonName', align: 'center' },
  { text: '审批状态', value: 'approvalStatusName', align: 'center' },
  { text: '检校日期', value: 'calibrationTime', align: 'center', width: '120' },
])

// 列表数据查询
const fetchData = (isNowPage: boolean) => {
  // loadingTable.value = true
  if (!isNowPage) {
    // 是否显示当前页,否则跳转第一页
    listQuery.value.offset = 1
  }
  // getPrimitiveLogList(listQuery.value).then((res) => {
  //   list.value = res.data.rows
  //   total.value = res.data.total
  //   loadingTable.value = false
  // })
}

// 搜索
const searchList = () => {
  fetchData(true)
}

// 重置
const clearList = () => {
  listQuery.value = {
    approvalStatus: active.value, // 审批状态
    certificateReportCode: '', // 证书编号
    certificateReportName: '', // 证书名称
    customerName: '', // 委托方名称
    sampleName: '', // 样品名称
    measureCategory: '', // 检校类别
    formId: '',
    approvalStatusName: '', // 审批状态名称
    offset: 1, // 当前页
    limit: 20, // 每页多少条
  }
  fetchData(true)
}

// 多选选中
const handleSelectionChange = (e: any) => {
  checkoutList.value = e.map((item: { id: string }) => item.id)
}

// 点击新建
const add = () => {
  $router.push('/lab/measureData/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)
}

// 打印列表
function printList() {
  // 打印列
  const properties = columns.value.map((item) => {
    return {
      field: item.value,
      displayName: item.text,
    }
  })
  if (checkoutList.value.length <= 0 && list.value.length > 0) {
    printJSON(list.value, properties, '计量数据管理列表')
  }
  else if (checkoutList.value.length > 0) {
    const printList = list.value.filter(item => checkoutList.value.includes(item.id))
    printJSON(printList, properties, '计量数据管理列表')
  }
  else {
    ElMessage.warning('无可打印内容')
  }
}

// 操作
const handleEdit = (row: IList, val: string, title = '') => {
  if (val === '取消') {
    const params = {
      processInstanceId: row.processId!,
      comments: '',
    }
    ElMessageBox.confirm(
      '确认取消该审批吗?',
      '提示',
      {
        confirmButtonText: '确认',
        cancelButtonText: '取消',
        type: 'warning',
      },
    )
      .then(() => {
        // cancelApproval(params).then((res) => {
        //   ElMessage({
        //     type: 'success',
        //     message: '取消成功',
        //   })
        //   fetchData(true)
        // })
      })
  }
  else if (val === '删除') {
    ElMessageBox.confirm(
      '确认删除吗?',
      '提示',
      {
        confirmButtonText: '确认',
        cancelButtonText: '取消',
        type: 'warning',
      },
    )
      .then(() => {
        // deleteListItem({ id: row.id }).then((res) => {
        //   ElMessage({
        //     type: 'success',
        //     message: '删除成功',
        //   })
        //   fetchData(true)
        // })
      })
  }
  else if (val === '提交') {
    ElMessageBox.confirm(
      '确认提交该审批吗?',
      '提示',
      {
        confirmButtonText: '确认',
        cancelButtonText: '取消',
        type: 'warning',
      },
    )
      .then(() => {
        // submit({ id: row.id, formId: SCHEDULE.BUSINESS_SUBPACKAGE_APPLY, processId: row.processId }).then((res) => {
        //   ElMessage({
        //     type: 'success',
        //     message: '已提交',
        //   })
        //   fetchData(true)
        // })
      })
  }
  else if (val === '同意') {
    approvalDialog.value.initDialog('agree', row.taskId, row.decisionItem)
  }
  else if (val === '驳回') {
    approvalDialog.value.initDialog('reject', row.taskId, row.decisionItem)
  }
  else if (val === '拒绝') {
    approvalDialog.value.initDialog('refuse', row.taskId)
  }
  else if (val === 'detail' || val === 'edit') { // 详情和编辑
    $router.push({
      path: `/lab/measureData/${val}/${row.id}`,
      query: {
        formId: listQuery.value.formId,
        approvalStatusName: row.applyApprovalStatusName, // 审批状态名称
        decisionItem: `${row.decisionItem}`, // 控制同意、驳回、拒绝按钮
        processId: row.processId, // 流程实例
        taskId: row.taskId, // 任务id,用于审批
      },
    })
  }
}
// 审批结束回调
const approvalSuccess = () => {
  fetchData(true)
}

// 获取字典值
const getDict = async () => {
  // 审批状态
  const res = await getDictByCode('approvalStatus')
  // 制作右上角的菜单
  res.data.forEach((item: dictType) => {
    if (item.name === '全部' || item.name === '草稿箱'
      || item.name === '待审批' || item.name === '审批中'
      || item.name === '已通过' || item.name === '未通过'
      || item.name === '已取消') {
      menu.value.push({
        name: item.name,
        id: `${item.value}`,
      })
    }
  })

  // 校检类别
  const response = await getDictByCode('measureCategory')
  mesureCategoryList.value = response.data
}
// 切换tab状态
const changeCurrentButton = (val: string) => {
  console.log(val)

  active.value = val
  window.sessionStorage.setItem(TabActiveButton, val)
  // clearList()
  listQuery.value.approvalStatus = active.value
  fetchData(true)
}

onMounted(async () => {
  await getDict()
  if (window.sessionStorage.getItem(TabActiveButton)) {
    active.value = window.sessionStorage.getItem(TabActiveButton)!
  }
  else {
    active.value = menu.value.find(item => item.name === '全部')!.id as string // 全部
  }
})
</script>

<template>
  <app-container>
    <search-area :need-clear="true" @search="searchList" @clear="clearList">
      <search-item>
        <el-input
          v-model.trim="listQuery.certificateReportCode"
          placeholder="证书编号"
          clearable
        />
      </search-item>
      <search-item>
        <el-input
          v-model.trim="listQuery.certificateReportName"
          placeholder="证书名称"
          clearable
        />
      </search-item>
      <search-item>
        <el-input
          v-model.trim="listQuery.customerName"
          placeholder="委托方名称"
          clearable
        />
      </search-item>
      <search-item>
        <el-input
          v-model.trim="listQuery.sampleName"
          placeholder="样品名称"
          clearable
        />
      </search-item>
      <search-item>
        <el-select
          v-model="listQuery.measureCategory"
          placeholder="检校类别"
          style="width: 195px;"
          clearable
        >
          <el-option
            v-for="item in mesureCategoryList"
            :key="item.value"
            :label="item.name"
            :value="item.value"
          />
        </el-select>
      </search-item>
      <search-item>
        <el-input
          v-model.trim="listQuery.approvalStatusName"
          placeholder="审批状态"
          clearable
        />
      </search-item>
    </search-area>
    <table-container>
      <template #btns-right>
        <icon-button
          icon="icon-add"
          title="新建"
          type="primary"
          @click="add"
        />
        <!-- <icon-button
          v-if="proxy.hasPerm('/measure/train/plan/export')"
          icon="icon-export"
          title="导出"
          type="primary"
          @click="exportAll"
        /> -->
        <icon-button
          icon="icon-print"
          title="打印"
          type="primary"
          @click="printList"
        />
      </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="(active === '0') ? 200 : (active === '1' || active === '6' || active === '3') ? 150 : (active === '4' || active === '5') ? 100 : 200"
          >
            <template #default="{ row }">
              <el-button
                size="small"
                type="primary"
                link
                @click="handleEdit(row, 'detail')"
              >
                查看
              </el-button>
              <el-button
                v-if=" row.approvalStatusName === '待审批'"
                size="small"
                link
                type="primary"
                :disabled="row.approvalStatusName !== '待审批' && row.approvalStatusName !== '审批中'"
                @click="handleEdit(row, '同意')"
              >
                同意
              </el-button>
              <el-button
                v-if=" row.approvalStatusName === '待审批' && row.decisionItem !== 3"
                size="small"
                link
                type="primary"
                :disabled="row.approvalStatusName !== '待审批' && row.approvalStatusName !== '审批中'"
                @click="handleEdit(row, '驳回')"
              >
                驳回
              </el-button>
              <el-button
                v-if=" row.approvalStatusName === '待审批' && row.decisionItem !== 2"
                size="small"
                link
                type="danger"
                :disabled="row.approvalStatusName !== '待审批' && row.approvalStatusName !== '审批中'"
                @click="handleEdit(row, '拒绝')"
              >
                拒绝
              </el-button>
              <el-button
                v-if="row.approvalStatusName === '未通过-驳回' || row.approvalStatusName === '草稿箱' || row.approvalStatusName === '已取消'"
                size="small"
                link
                type="primary"
                @click="handleEdit(row, 'edit')"
              >
                编辑
              </el-button>
              <el-button
                v-if="row.approvalStatusName === '草稿箱' || row.approvalStatusName === '已取消'"
                size="small"
                link
                type="primary"
                @click="handleEdit(row, '提交')"
              >
                提交
              </el-button>
              <!-- 是发起者且审批中可以取消 -->
              <el-button
                v-if="row.approvalStatusName === '审批中'"
                size="small"
                link
                type="info"
                :disabled="row.approvalStatusName !== '审批中'"
                @click="handleEdit(row, '取消')"
              >
                取消
              </el-button>
              <!-- 发起者和有删除权限的可以删除,已通过未通过状态不可以删除 -->
              <!-- <el-button
                v-if="row.approvalStatusName !== '未通过' && row.approvalStatusName !== '已通过' && row.approvalStatusName !== '未通过-驳回'"
                size="small"
                link
                type="danger"
                :disabled="row.approvalStatusName === '未通过' || row.approvalStatusName === '已通过'"
                 @click="handleEdit(row, '删除')"
              >
                删除
              </el-button> -->
              <!-- ---------------------------审批中的删除按钮暂时去掉------------------------ -->
              <el-button
                v-if="row.approvalStatusName !== '未通过' && row.approvalStatusName !== '已通过' && row.approvalStatusName !== '未通过-驳回' && row.approvalStatusName !== '审批中' && row.approvalStatusName !== '待审批'"
                size="small"
                link
                type="danger"
                :disabled="row.approvalStatusName === '未通过' || row.approvalStatusName === '已通过'"
                @click="handleEdit(row, '删除')"
              >
                删除
              </el-button>
            </template>
          </el-table-column>
        </template>
      </normal-table>
      <approval-dialog ref="approvalDialog" @on-success="approvalSuccess" />
      <button-box :active="active" :menu="menu" @changeCurrentButton="changeCurrentButton" />
    </table-container>
  </app-container>
</template>