ScanCarList.vue 10.3 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.workno"></a-input>
            </a-form-item>
          </a-col>
          <a-col :xl="6" :lg="7" :md="8" :sm="24">
            <a-form-item label="收件人">
              <a-input placeholder="请输入收件人" v-model="queryParam.name"></a-input>
            </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>
              <a @click="handleToggleSearch" style="margin-left: 8px">
                {{ toggleSearchStatus ? '收起' : '展开' }}
                <a-icon :type="toggleSearchStatus ? 'up' : 'down'"/>
              </a>
            </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"
        bordered
        rowKey="id"
        class="j-table-force-nowrap"
        :scroll="{x:true}"
        :columns="columns"
        :dataSource="dataSource"
        :pagination="ipagination"
        :loading="loading"
        :rowSelection="{selectedRowKeys: selectedRowKeys, onChange: onSelectChange, type:'radio'}"
        :customRow="clickThenSelect"
        @change="handleTableChange">

        <span slot="status" slot-scope="status">
          <a-tag :key="status">
            {{ solutionStatus(status) }}
          </a-tag>
        </span>

        <template slot="htmlSlot" slot-scope="text">
          <div v-html="text"></div>
        </template>
        <template slot="imgSlot" slot-scope="text">
          <span v-if="!text" style="font-size: 12px;font-style: italic;">无图片</span>
          <img v-else :src="getImgView(text)" 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-popconfirm v-if="record.status!='2'" title="确定发货吗?" @confirm="() => shipMents(record.id)">
                  <a>发货</a>
                </a-popconfirm>
          <a-divider type="vertical" />
          <a @click="printScanList(record)">打印清单</a>
          <a-divider type="vertical" v-if="record.status=='0'"  />
           <a v-if="record.status=='0'" @click="handleEdit(record)">编辑</a>
          <a-divider type="vertical" v-if="record.status=='0'"  />
          <a-dropdown v-if="record.status=='0'" >
            <a class="ant-dropdown-link">更多 <a-icon type="down" /></a>
            <a-menu slot="overlay">
              <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>

    <a-tabs defaultActiveKey="1">
      <a-tab-pane tab="扫码装车箱子头表" key="1" >
        <ScanBoxHeaderList :mainId="selectedMainId" />
      </a-tab-pane>
    </a-tabs>

    <scanCar-modal ref="modalForm" @ok="modalFormOk"></scanCar-modal>
  </a-card>
</template>

<script>

  import { JeecgListMixin } from '@/mixins/JeecgListMixin'
  import ScanCarModal from './modules/ScanCarModal'
  import { getAction } from '@/api/manage'
  import ScanBoxHeaderList from './ScanBoxHeaderList'
  import '@/assets/less/TableExpand.less'
  import {ajaxGetDictItems} from "../../api/api";
  import { postAction} from '@/api/manage'

  export default {
    name: "ScanCarList",
    mixins:[JeecgListMixin],
    components: {
      ScanBoxHeaderList,
      ScanCarModal
    },
    data () {
      return {
        description: '扫码装车主表管理页面',
        statusList: [],
        // 表头
        columns: [
          {
            title:'工作令',
            align:"center",
            dataIndex: 'workno'
          },
          {
            title:'收件人',
            align:"center",
            dataIndex: 'name'
          },
          {
            title:'收件地址',
            align:"center",
            dataIndex: 'address'
          },
          {
            title:'收件码',
            align:"center",
            dataIndex: 'receivingCode'
          },
          {
            title:'备注',
            align:"center",
            dataIndex: 'remark'
          },
          {
            title:'状态',
            align:"center",
            dataIndex: 'status',
            scopedSlots: { customRender: 'status' }
          },
          {
            title: '操作',
            dataIndex: 'action',
            align:"center",
            fixed:"right",
            width:147,
            scopedSlots: { customRender: 'action' },
          }
        ],
        url: {
          list: "/scan_car/scanCar/list",
          delete: "/scan_car/scanCar/delete",
          deleteBatch: "/scan_car/scanCar/deleteBatch",
          exportXlsUrl: "/scan_car/scanCar/exportXls",
          importExcelUrl: "scan_car/scanCar/importExcel",
        },
        dictOptions:{
        },
        /* 分页参数 */
        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:'',
        superFieldList:[],
      }
    },
    created() {
      this.getSuperFieldList();
      ajaxGetDictItems('scanStatus').then((res) => {
        if (res.success) {
          this.statusList = res.result
        }
      })
    },
    computed: {
      importExcelUrl: function(){
        return `${window._CONFIG['domianURL']}/${this.url.importExcelUrl}`;
      }
    },
    methods: {
      printScanList(record){
        var url='http://mts.huahengweld.com/jeecg-boot/jmreport/view/784912500540305408?token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJleHAiOjE2NzYyODA2NDcsInVzZXJuYW1lIjoiY2hlbmFvIn0.RXyJ_qIgepVWsrgGdlfAFCeirh2Mdmy6pXkvnJAyx7Q&id='+record.id;
        window.open(url, '_blank');
      },
      initDictConfig(){
      },

      shipMents(id){
        postAction("/scan_car/scanCar/shipMents", {id: id}).then((res) => {
          if (res.success) {
            this.$message.success(res.message);
            this.visible=false;
            this.loadData();
          } else {
            this.$message.warning(res.message);
          }
        });
      },


      solutionStatus(value) {
        var actions = []
        Object.keys(this.statusList).some((key) => {
          if (this.statusList[key].value == ('' + value)) {
            actions.push(this.statusList[key].text)
            return true
          }
        })
        return actions.join('')
      },

      clickThenSelect(record) {
        return {
          on: {
            click: () => {
              this.onSelectChange(record.id.split(","), [record]);
            }
          }
        }
      },
      onClearSelected() {
        this.selectedRowKeys = [];
        this.selectionRows = [];
        this.selectedMainId=''
      },
      onSelectChange(selectedRowKeys, selectionRows) {
        this.selectedMainId=selectedRowKeys[0]
        this.selectedRowKeys = selectedRowKeys;
        this.selectionRows = selectionRows;
      },
      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;
        })
      },
      getSuperFieldList(){
        let fieldList=[];
        fieldList.push({type:'string',value:'address',text:'发货地址',dictCode:''})
        fieldList.push({type:'string',value:'workno',text:'工作令',dictCode:''})
        fieldList.push({type:'string',value:'name',text:'收件人',dictCode:''})
        fieldList.push({type:'string',value:'receivingCode',text:'收件码',dictCode:''})
        this.superFieldList = fieldList
      }
    }
  }
</script>
<style scoped>
  @import '~@assets/less/common.less'
</style>