OxideLowerLineList.vue 8.2 KB
<template>
  <a-card :bordered="false">
    <!-- 查询区域 -->
    <div class="table-page-search-wrapper">
      <a-form layout="inline" @keyup.enter.native="searchQuery">
        <a-row :gutter="24">
          <a-col :xl="6" :lg="7" :md="8" :sm="24">
            <a-form-item label="物料编码">
              <a-input placeholder="请输入物料编码" v-model="queryParam.materialCode"></a-input>
            </a-form-item>
          </a-col>
          <a-col :xl="6" :lg="7" :md="8" :sm="24">
            <a-form-item label="同步WCS状态">
              <j-dict-select-tag placeholder="请选择同步状态" v-model="queryParam.status" dictCode="sync_status"/>
            </a-form-item>
          </a-col>
          <a-col :xl="12" :lg="14" :md="16" :sm="24">
            <a-form-item label="接收时间">
              <j-date :show-date="true" date-format="YYYY-MM-DD" placeholder="请选择开始时间"
                      class="query-group-cust" v-model="queryParam.createTime_begin"></j-date>
              <span class="query-group-split-cust"></span>
              <j-date :show-date="true" date-format="YYYY-MM-DD" placeholder="请选择结束时间"
                      class="query-group-cust" v-model="queryParam.createTime_end"></j-date>
            </a-form-item>
          </a-col>
          <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>
            </span>
          </a-col>
        </a-row>
      </a-form>
    </div>
    <!-- 查询区域-END -->

    <!-- 操作按钮区域 -->
    <div class="table-operator">
      <a-button @click="handleAdd" 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>
    </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"
        :scroll="{x:true}"
        bordered
        rowKey="id"
        :columns="columns"
        :dataSource="dataSource"
        :pagination="ipagination"
        :loading="loading"
        :rowSelection="{selectedRowKeys: selectedRowKeys, onChange: onSelectChange}"
        class="j-table-force-nowrap"
        @change="handleTableChange">

        <span slot="status_dictText" slot-scope="status_dictText">
            <a-tag :key="status_dictText" :color="getStatusColor(status_dictText)">
              {{ status_dictText }}
            </a-tag>
        </span>

        <span slot="action" slot-scope="text, record">
          <a @click="handleEdit(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>
      </a-table>
    </div>

    <oxide-lower-line-modal ref="modalForm" @ok="modalFormOk"></oxide-lower-line-modal>
  </a-card>
</template>

<script>

import '@/assets/less/TableExpand.less'
import {mixinDevice} from '@/utils/mixin'
import {JeecgListMixin} from '@/mixins/JeecgListMixin'
import OxideLowerLineModal from '@views/system/receipt/modules/OxideLowerLineModal'

export default {
  name: 'OxideLowerLineList',
  mixins: [JeecgListMixin, mixinDevice],
  components: {
    OxideLowerLineModal
  },
  data() {
    return {
      description: '氧化物下线表管理页面',
      // 表头
      columns: [
        {
          title: '#',
          dataIndex: '',
          key: 'rowIndex',
          width: 60,
          align: "center",
          customRender: function (t, r, index) {
            return parseInt(index) + 1;
          }
        },
        {
          title: '上游请求唯一号',
          align: "center",
          dataIndex: 'referTaskNo'
        },
        {
          title: '物料编码',
          align: "center",
          dataIndex: 'materialCode'
        },
        {
          title: '物料名称',
          align: "center",
          dataIndex: 'materialName'
        },
        {
          title: '物料规格/型号',
          align: "center",
          dataIndex: 'materialSpec'
        },
        {
          title: '物料单位',
          align: "center",
          dataIndex: 'materialUnit'
        },
        {
          title: '批次',
          align: "center",
          dataIndex: 'batch'
        },
        {
          title: '工单号',
          align: "center",
          dataIndex: 'orderCode'
        },
        {
          title: '梁号',
          align: "center",
          dataIndex: 'girderNo'
        },
        {
          title: '氧化下线数量',
          align: "center",
          dataIndex: 'qty'
        },
        {
          title: '接收时间',
          align: "center",
          dataIndex: 'createTime'
        },
        {
          title: '同步WCS状态',
          align: "center",
          dataIndex: 'status_dictText',
          scopedSlots: {customRender: 'status_dictText'}
        },
        {
          title: '同步WCS成功时间',
          align: "center",
          dataIndex: 'syncTime'
        },
        {
          title: '操作',
          dataIndex: 'action',
          align: "center",
          fixed: "right",
          width: 147,
          scopedSlots: {customRender: 'action'}
        }
      ],
      url: {
        list: "/receipt/oxideLowerLine/list",
        delete: "/receipt/oxideLowerLine/delete",
        deleteBatch: "/receipt/oxideLowerLine/deleteBatch",
        exportXlsUrl: "/receipt/oxideLowerLine/exportXls",
        importExcelUrl: "receipt/oxideLowerLine/importExcel",
      },
      dictOptions: {},
      superFieldList: [],
    }
  },
  created() {
    this.getSuperFieldList();
  },
  computed: {
    importExcelUrl: function () {
      return `${window._CONFIG['domianURL']}/${this.url.importExcelUrl}`;
    },
  },
  methods: {
    initDictConfig() {
    },
    getStatusColor(status) {
      const colors = {
        '待同步': 'darkorange',
        '已同步': 'green',
        '同步失败': 'red',
        default: 'blue'
      };
      return colors[status] || colors.default;
    },
    getSuperFieldList() {
      let fieldList = [];
      fieldList.push({type: 'string', value: 'referTaskNo', text: '上游请求唯一号', dictCode: ''})
      fieldList.push({type: 'string', value: 'materialCode', text: '物料编码', dictCode: ''})
      fieldList.push({type: 'string', value: 'materialName', text: '物料名称', dictCode: ''})
      fieldList.push({type: 'string', value: 'materialSpec', text: '物料规格/型号', dictCode: ''})
      fieldList.push({type: 'string', value: 'materialUnit', text: '物料单位', dictCode: ''})
      fieldList.push({type: 'string', value: 'batch', text: '批次', dictCode: ''})
      fieldList.push({type: 'string', value: 'qty', text: '氧化下线数量', dictCode: ''})
      fieldList.push({type: 'Number', value: 'status', text: '同步WCS状态', dictCode: 'sync_status'})
      this.superFieldList = fieldList
    }
  }
}
</script>
<style scoped>
@import '~@assets/less/common.less';
</style>