zenglf
2023-08-19 8611a1ba1696e76cced04ff5d658ba138a05dafd
src/views/eam/EquipmentSealList.vue
@@ -1,17 +1,40 @@
<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>
              <a-input
                placeholder="请输入单据号"
                v-model="queryParam.num"
              ></a-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-dict-select-tag placeholder="请选择审批状态" v-model="queryParam.auditStatus" dictCode="audit_status"/>
              <j-dict-select-tag
                placeholder="请选择审批状态"
                v-model="queryParam.auditStatus"
                dictCode="audit_status"
              />
            </a-form-item>
          </a-col>
          <!-- <template v-if="toggleSearchStatus">
@@ -23,10 +46,27 @@
              </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-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'"/>
@@ -40,30 +80,14 @@
    <!-- 操作按钮区域 -->
    <div class="table-operator">
      <a-button @click="handleAdd" type="primary" icon="plus">新增</a-button>
      <!-- <a-button v-if="selectedRowKeys.length > 0  && selectionRows[0].auditStatus==='notSubmitted'" @click="handleSubmit" type="primary" icon="check">提交</a-button>
      <a-button v-if="selectedRowKeys.length > 0  && selectionRows[0].auditStatus === 'pendingApproval'" @click="handleRevocation" type="primary" icon="rollback">撤回</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">-->
<!--        <a-menu slot="overlay">-->
<!--          <a-menu-item key="1" @click="batchDel"><a-icon type="delete"/>删除</a-menu-item>-->
<!--        </a-menu>-->
<!--        <a-button style="margin-left: 8px"> 批量操作 <a-icon type="down" /></a-button>-->
<!--      </a-dropdown>-->
      <a-button
        @click="handleAdd"
        type="primary"
        icon="plus"
      >新增</a-button>
    </div>
    <!-- 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>
      <a-table
        ref="table"
        size="middle"
@@ -77,24 +101,48 @@
        :loading="loading"
        :rowSelection="{selectedRowKeys: selectedRowKeys, onChange: onSelectChange, type:'radio'}"
        :customRow="clickThenSelect"
        @change="handleTableChange">
        @change="handleTableChange"
      >
        <template slot="htmlSlot" slot-scope="text">
        <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
          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>
        <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)">
            @click="downloadFile(text)"
          >
            下载
          </a-button>
        </template>
@@ -104,7 +152,7 @@
          slot-scope="text, record"
        >
        <a-popconfirm
                  v-if="record.auditStatus == 'notSubmitted'"
            v-if="record.auditStatus == 'notSubmitted' || record.auditStatus == 'Rejected'"
                  title="确认提交吗?"
                  @confirm="() =>handleCommit(record, 'commit')"
                >
@@ -119,16 +167,19 @@
                </a-popconfirm>
          <a-divider
            v-if="record.auditStatus == 'notSubmitted' || record.auditStatus == 'pendingApproval'"
            v-if="record.auditStatus == 'notSubmitted' || record.auditStatus == 'pendingApproval' || record.auditStatus == 'Rejected'"
            type="vertical"
          />
          <a
            v-if="record.auditStatus == 'notSubmitted' "
            v-if="record.auditStatus == 'notSubmitted' || record.auditStatus == 'Rejected'"
            @click="handleEdit(record)"
          >编辑</a>
          <a v-if="record.auditStatus == 'pendingApproval'" @click="handleApprove(record)">审批</a>
          <a
            v-if="record.auditStatus == 'pendingApproval'"
            @click="handleApprove(record)"
          >审批</a>
          <a-divider
            v-if="record.auditStatus == 'notSubmitted' || record.auditStatus == 'pendingApproval'"
            v-if="record.auditStatus == 'notSubmitted' || record.auditStatus == 'pendingApproval' || record.auditStatus == 'Rejected'"
            type="vertical"
          />
          <a-dropdown>
@@ -173,13 +224,23 @@
    </div>
    <a-tabs defaultActiveKey="1">
      <a-tab-pane tab="设备封存明细" key="1" >
      <a-tab-pane
        tab="设备封存明细"
        key="1"
      >
        <equipment-seal-detail-list :mainId="equipmentSealDetailMainId" />
      </a-tab-pane>
    </a-tabs>
    <equipmentSeal-modal ref="modalForm" @ok="modalFormOk"></equipmentSeal-modal>
    <approvel-modal ref="approvalModalForm" @ok='approvalModalFormOk' @cancel='approvalModalFormOk'></approvel-modal>
    <equipmentSeal-modal
      ref="modalForm"
      @ok="modalFormOk"
    ></equipmentSeal-modal>
    <approvel-modal
      ref="approvalModalForm"
      @ok='approvalModalFormOk'
      @cancel='approvalModalFormOk'
    ></approvel-modal>
  </a-card>
</template>