Houjie
2025-06-10 b14aa3f5539d358ec2db80a65c4c32c684d88c77
src/views/eam/OperationCertificateList.vue
@@ -1,37 +1,95 @@
<template>
  <a-card :bordered='false'>
  <a-card
    title=""
    :bordered='false'
  >
    <!-- 查询区域 -->
    <div class='table-page-search-wrapper'>
      <a-form layout='inline' @keyup.enter.native='searchQuery'>
      <a-form
        layout='inline'
        @keyup.enter.native='searchQuery'
      >
        <a-row :gutter='24'>
          <a-col :xl='6' :lg='7' :md='8' :sm='24'>
          <a-col
            :xl='6'
            :lg='7'
            :md='8'
            :sm='24'
          >
            <a-form-item label='操作证编号'>
              <a-input placeholder='请输入操作证编号' v-model='queryParam.num'></a-input>
              <j-input
                placeholder='请输入操作证编号'
                v-model='queryParam.num'
              ></j-input>
            </a-form-item>
          </a-col>
          <a-col :xl='6' :lg='7' :md='8' :sm='24'>
          <a-col
            :xl='6'
            :lg='7'
            :md='8'
            :sm='24'
          >
            <a-form-item label='姓名'>
              <j-select-user-by-dep placeholder='请选择姓名' v-model='queryParam.userId' />
              <j-select-user-by-dep
                placeholder='请选择姓名'
                v-model='queryParam.userId'
              />
            </a-form-item>
          </a-col>
          <template v-if='toggleSearchStatus'>
            <a-col :xl='6' :lg='7' :md='8' :sm='24'>
            <a-col
              :xl='6'
              :lg='7'
              :md='8'
              :sm='24'
            >
              <a-form-item label='发证日期'>
                <j-date placeholder='请选择发证日期' v-model='queryParam.issueDate'></j-date>
                <j-date
                  placeholder='请选择发证日期'
                  v-model='queryParam.issueDate'
                ></j-date>
              </a-form-item>
            </a-col>
            <a-col :xl='6' :lg='7' :md='8' :sm='24'>
            <a-col
              :xl='6'
              :lg='7'
              :md='8'
              :sm='24'
            >
              <a-form-item label='设备统一编码'>
                <j-multi-select-tag placeholder='请选择设备统一编码' dictCode='mom_eam_equipment,num,id'
                                    v-model='queryParam.equipmentIds' />
                <j-multi-select-tag
                  placeholder='请选择设备统一编码'
                  dictCode='mom_eam_equipment,num,id'
                  v-model='queryParam.equipmentIds'
                />
              </a-form-item>
            </a-col>
          </template>
          <a-col :xl='6' :lg='7' :md='8' :sm='24'>
            <span style='float: left;overflow: hidden;' class='table-page-search-submitButtons'>
              <a-button type='primary' @click='searchQuery' icon='search'>查询</a-button>
              <a-button type='primary' @click='searchReset' icon='reload' style='margin-left: 8px'>重置</a-button>
              <a @click='handleToggleSearch' style='margin-left: 8px'>
          <a-col
            :xl='6'
            :lg='7'
            :md='8'
            :sm='24'
          >
            <span
              style='float: left;overflow: hidden;'
              class='table-page-search-submitButtons'
            >
              <a-button
                type='primary'
                @click='searchQuery'
                icon='search'
              >查询</a-button>
              <a-button
                type='primary'
                @click='searchReset'
                icon='reload'
                style='margin-left: 8px'
              >重置</a-button>
              <a
                @click='handleToggleSearch'
                style='margin-left: 8px'
              >
                {{ toggleSearchStatus ? '收起' : '展开' }}
                <a-icon :type="toggleSearchStatus ? 'up' : 'down'" />
              </a>
@@ -44,13 +102,30 @@
    <!-- 操作按钮区域 -->
    <div class='table-operator'>
      <a-button @click='handleAdd' type='primary' icon='plus'>新增</a-button>
<!--      <a-button @click='handleChangeCertificate' type='primary' icon='plus'>变更操作证</a-button>-->
      <a-button type='primary' icon='download' @click="handleExportXls('操作证书管理')">导出</a-button>
      <a-upload name='file' :showUploadList='false' :multiple='false' :headers='tokenHeader' :action='importExcelUrl'
                @change='handleImportExcel'>
        <a-button type='primary' icon='import'>导入</a-button>
      </a-upload>
      <!--      <a-button @click='handleAdd' type='primary' icon='plus'>新增</a-button>-->
      <a-button
        @click='handleChangeCertificate'
        type='primary'
        icon='plus'
      >变更操作证</a-button>
<!--      <a-button-->
<!--        type='primary'-->
<!--        icon='download'-->
<!--        @click="handleExportXls('操作证书管理')"-->
<!--      >导出</a-button>-->
      <!-- <a-upload
        name='file'
        :showUploadList='false'
        :multiple='false'
        :headers='tokenHeader'
        :action='importExcelUrl'
        @change='handleImportExcel'
      >
        <a-button
          type='primary'
          icon='import'
        >导入</a-button>
      </a-upload> -->
      <!-- 高级查询区域 -->
      <!--      <j-super-query :fieldList="superFieldList" ref="superQueryModal" @handleSuperQuery="handleSuperQuery"></j-super-query>-->
      <!--      <a-dropdown v-if="selectedRowKeys.length > 0">-->
@@ -63,10 +138,15 @@
    <!-- table区域-begin -->
    <div>
      <div class='ant-alert ant-alert-info' style='margin-bottom: 16px;'>
        <i class='anticon anticon-info-circle ant-alert-icon'></i> 已选择 <a
        style='font-weight: 600'>{{ selectedRowKeys.length }}</a>项
        <a style='margin-left: 24px' @click='onClearSelected'>清空</a>
      <div
        class='ant-alert ant-alert-info'
        style='margin-bottom: 16px;'
      >
        <i class='anticon anticon-info-circle ant-alert-icon'></i> 已选择 <a style='font-weight: 600'>{{ selectedRowKeys.length }}</a>项
        <a
          style='margin-left: 24px'
          @click='onClearSelected'
        >清空</a>
      </div>
      <a-table
@@ -80,54 +160,26 @@
        :dataSource='dataSource'
        :pagination='ipagination'
        :loading='loading'
        :rowSelection='{selectedRowKeys: selectedRowKeys, onChange: onSelectChange}'
        @change='handleTableChange'>
        <template slot='htmlSlot' slot-scope='text'>
          <div v-html='text'></div>
        </template>
        <template slot='imgSlot' slot-scope='text,record'>
          <span v-if='!text' style='font-size: 12px;font-style: italic;'>无图片</span>
          <img v-else :src='getImgView(text)' :preview='record.id' height='25px' alt=''
               style='max-width:80px;font-size: 12px;font-style: italic;' />
        </template>
        <template slot='fileSlot' slot-scope='text'>
          <span v-if='!text' style='font-size: 12px;font-style: italic;'>无文件</span>
          <a-button
            v-else
            :ghost='true'
            type='primary'
            icon='download'
            size='small'
            @click='downloadFile(text)'>
            下载
          </a-button>
        </template>
        <span slot='action' slot-scope='text, record'>
<!--          <a @click='handleEdit(record)'>编辑</a>-->
<!--          <a-divider type='vertical' />-->
          <a @click='handleDetail(record)'>详情</a>
          <!--          <a-divider type="vertical" />-->
          <!--          <a-dropdown>-->
          <!--            <a class="ant-dropdown-link">更多 <a-icon type="down" /></a>-->
          <!--            <a-menu slot="overlay">-->
          <!--              <a-menu-item>-->
          <!--                <a @click="handleDetail(record)">详情</a>-->
          <!--              </a-menu-item>-->
          <!--              <a-menu-item>-->
          <!--                <a-popconfirm title="确定删除吗?" @confirm="() => handleDelete(record.id)">-->
          <!--                  <a>删除</a>-->
          <!--                </a-popconfirm>-->
          <!--              </a-menu-item>-->
          <!--            </a-menu>-->
          <!--          </a-dropdown>-->
        </span>
        :rowSelection="{selectedRowKeys: selectedRowKeys, onChange: onSelectChange ,type:'radio'}"
        :customRow='clickThenSelect'
        @change='handleTableChange'
        :rowClassName="tableRowClass"
      >
      </a-table>
    </div>
    <operation-certificate-modal ref='modalForm' @ok='modalFormOk' />
    <a-tabs defaultActiveKey="1">
      <a-tab-pane
        tab="操作证管理明细"
        key="1"
      >
        <OperationCertificateDetailList :mainId="operationCertificateDetailMainId" />
      </a-tab-pane>
    </a-tabs>
    <operation-certificate-modal
      ref='modalForm'
      @ok='modalFormOk'
    />
  </a-card>
</template>
@@ -135,14 +187,16 @@
import { JeecgListMixin } from '@/mixins/JeecgListMixin'
import OperationCertificateModal from './modules/operationCertificate/OperationCertificateModal'
import OperationCertificateDetailList from './modules/operationCertificate/OperationCertificateDetailList'
import { filterMultiDictText } from '@/components/dict/JDictSelectUtil'
import '@/assets/less/TableExpand.less'
import { getAction } from '@/api/manage'
export default {
  name: 'OperationCertificateList',
  mixins: [JeecgListMixin],
  components: {
    OperationCertificateModal
    OperationCertificateModal,
    OperationCertificateDetailList
  },
  data() {
    return {
@@ -155,7 +209,7 @@
          key: 'rowIndex',
          width: 60,
          align: 'center',
          customRender: function(t, r, index) {
          customRender: function (t, r, index) {
            return parseInt(index) + 1
          }
        },
@@ -173,7 +227,7 @@
          title: '发证日期',
          align: 'center',
          dataIndex: 'issueDate',
          customRender: function(text) {
          customRender: function (text) {
            return !text ? '' : (text.length > 10 ? text.substr(0, 10) : text)
          }
        },
@@ -181,7 +235,7 @@
          title: '开始时间',
          align: 'center',
          dataIndex: 'startTime',
          customRender: function(text) {
          customRender: function (text) {
            return !text ? '' : (text.length > 10 ? text.substr(0, 10) : text)
          }
        },
@@ -189,7 +243,7 @@
          title: '结束时间',
          align: 'center',
          dataIndex: 'endTime',
          customRender: function(text) {
          customRender: function (text) {
            return !text ? '' : (text.length > 10 ? text.substr(0, 10) : text)
          }
        },
@@ -213,45 +267,115 @@
          align: 'center',
          dataIndex: 'status_dictText'
        },
        {
          title: '操作',
          dataIndex: 'action',
          align: 'center',
          fixed: 'right',
          width: 147,
          scopedSlots: { customRender: 'action' }
        }
        // {
        //   title: '操作',
        //   dataIndex: 'action',
        //   align: 'center',
        //   fixed: 'right',
        //   width: 147,
        //   scopedSlots: { customRender: 'action' }
        // }
      ],
      url: {
        list: '/eam/operationCertificate/list',
        delete: '/eam/operationCertificate/delete',
        deleteBatch: '/eam/operationCertificate/deleteBatch',
        exportXlsUrl: '/eam/operationCertificate/exportXls',
        importExcelUrl: 'eam/operationCertificate/importExcel'
        importExcelUrl: '/eam/operationCertificate/importExcel'
      },
      dictOptions: {},
      superFieldList: []
      superFieldList: [],
      /* 分页参数 */
      ipagination: {
        current: 1,
        pageSize: 5,
        pageSizeOptions: ['5', '10', '50'],
        showTotal: (total, range) => {
          return range[0] + "-" + range[1] + " 共" + total + "条"
        },
        showQuickJumper: true,
        showSizeChanger: true,
        total: 0
      },
      selectedMainId: '',
      operationCertificateDetailMainId: '',
    }
  },
  created() {
    this.getSuperFieldList()
  },
  computed: {
    importExcelUrl: function() {
    importExcelUrl: function () {
      return `${window._CONFIG['domianURL']}/${this.url.importExcelUrl}`
    }
  },
  methods: {
    initDictConfig() {
    },
    // handleChangeCertificate: function (record) {
    //   this.$refs.modalForm.edit(record)
    //   this.$refs.modalForm.title = '变更操作证'
    //   this.$refs.modalForm.disableSubmit = false
    //   // this.$refs.modalForm.isRevise = false;
    // },
    clickThenSelect(record) {
      return {
        on: {
          click: () => {
            this.onSelectChange(record.id.split(","), [record]);
          }
        }
      }
    },
    handleChangeCertificate: function () {
      if (this.selectionRows.length <= 0) {
        this.$message.warning('请选择一条记录')
        return
      }
      const record = this.selectionRows[0]
      this.$refs.modalForm.edit(record)
      this.$refs.modalForm.title = '变更操作证'
      this.$refs.modalForm.disableSubmit = false
      this.$refs.modalForm.loadSubTableDataFlag = false
      // this.$refs.modalForm.isRevise = false;
    },
    onClearSelected() {
      this.selectedRowKeys = [];
      this.selectionRows = [];
      this.selectedMainId = ''
    },
    onSelectChange(selectedRowKeys, selectionRows) {
      this.selectedMainId = selectedRowKeys[0]
      this.selectedRowKeys = selectedRowKeys;
      this.selectionRows = selectionRows;
      this.operationCertificateDetailMainId = selectionRows[0]['id']
    },
    loadData(arg) {
      if (!this.url.list) {
        this.$message.error("请设置url.list属性!")
        return
      }
      //加载数据 若传入参数1则加载第一页的内容
      if (arg === 1) {
        this.ipagination.current = 1;
      }
      this.onClearSelected()
      var params = this.getQueryParams();//查询条件
      this.loading = true;
      getAction(this.url.list, params).then((res) => {
        if (res.success) {
          this.dataSource = res.result.records;
          this.ipagination.total = res.result.total;
        }
        if (res.code === 510) {
          this.$message.warning(res.message)
        }
        this.loading = false;
      })
    },
    //预警颜色
    tableRowClass(record, index) {
      debugger
      if ('0' === record.status) {
        return 'error'
      }
    },
    getSuperFieldList() {
      let fieldList = []
      fieldList.push({ type: 'string', value: 'num', text: '操作证编号', dictCode: '' })
@@ -275,6 +399,10 @@
  }
}
</script>
<style scoped>
<style>
@import '~@assets/less/common.less';
.error {
  color: red;
  font-weight: bold;
}
</style>