AgvTaskList.vue 12.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="$t('task.taskId') ">
              <a-input :placeholder="$t('task.inputTaskId') " v-model="queryParam.id"></a-input>
            </a-form-item>
          </a-col>
          <a-col :xl="6" :lg="7" :md="8" :sm="24">
            <a-form-item :label="$t('task.taskType') ">
              <j-dict-select-tag :placeholder="$t('task.inputTaskType') " v-model="queryParam.taskType" dictCode="agv_task_type"/>
            </a-form-item>
          </a-col>
          <a-col :xl="6" :lg="7" :md="8" :sm="24">
            <a-form-item :label="$t('task.container') ">
              <a-input :placeholder="$t('task.inputContainerCode') " v-model="queryParam.containerCode"></a-input>
            </a-form-item>
          </a-col>
          <a-col :xl="6" :lg="7" :md="8" :sm="24">
            <a-form-item :label="$t('task.taskStatus') ">
              <j-dict-select-tag :placeholder="$t('task.inputTaskStatus') " v-model="queryParam.status" dictCode="agv_task_status"/>
            </a-form-item>
          </a-col>
          <a-col :xl="6" :lg="7" :md="8" :sm="24">
            <a-form-item :label="$t('task.fromStationCode') ">
              <a-input :placeholder="$t('task.inputFromStationCode') " v-model="queryParam.fromPort"></a-input>
            </a-form-item>
          </a-col>
          <a-col :xl="6" :lg="7" :md="8" :sm="24">
            <a-form-item :label="$t('task.toStationCode') ">
              <a-input :placeholder="$t('task.inputToStationCode') " v-model="queryParam.toPort"></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 id="search" type="primary" @click="searchQuery" icon="search">{{ $t('button.search') }}</a-button>
              <a-button type="primary" @click="searchReset" icon="reload" style="margin-left: 8px">{{ $t('button.reset') }}</a-button>
            </span>
          </a-col>
        </a-row>
      </a-form>
    </div>
    <!-- 查询区域-END -->

    <!-- 操作按钮区域 -->
    <div class="table-operator">
      <a-button v-has="'agvTask:add'" @click="handleAdd" type="primary" icon="plus">{{ $t('button.new') }}</a-button>
      <a-button v-has="'agvTask:export'" type="primary" icon="download" @click="handleExportXls('AGV任务')">{{ $t('button.export') }}</a-button>
      <a-upload v-has="'agvTask:import'" name="file" :showUploadList="false" :multiple="false" :headers="tokenHeader" :action="importExcelUrl"
                @change="handleImportExcel">
        <a-button type="primary" icon="import">{{ $t('button.import') }}</a-button>
        <j-super-query :fieldList="superFieldList" v-has="'taskHeader:superQuery'" @handleSuperQuery="handleSuperQuery"/>
      </a-upload>
      <!--      <a-dropdown v-if="selectedRowKeys.length > 0">-->
      <!--        <a-menu slot="overlay">-->
      <!--          <a-menu-item key="1" v-has="'agvTask:delete'" @click="batchDel"><a-icon type="delete"/>{{$t('button.delete')}}</a-menu-item>-->
      <!--        </a-menu>-->
      <!--        <a-button style="margin-left: 8px">{{$t('button.multiSelectActions')}} <a-icon type="down" /></a-button>-->
      <!--      </a-dropdown>-->
    </div>

    <!-- table区域-begin -->
    <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="taskType_dictText" slot-scope="taskType_dictText">
          <a-tag :key="taskType_dictText" :color="getStatusColor(taskType_dictText)">
            {{ taskType_dictText }}
          </a-tag>
        </span>

        <span slot="action" slot-scope="text, record">
          <a v-if="record.status == 1" v-has="'agvTask:executeTask'" @click="executeAgvTask(record)">
            <a-button type="primary">执行</a-button></a>
          <a-popconfirm v-if="record.status < 100" :title="$t('button.deletingIt')" v-has="'agvTask:delete'" @confirm="() => handleDelete(record.id)">
            <a><a-button type="danger">{{ $t('button.cancel') }}</a-button></a>
          </a-popconfirm>
          <a-dropdown>
            <a class="ant-dropdown-link">{{ $t('button.more') }}&nbsp;<a-icon type="down"/></a>
            <a-menu slot="overlay">
              <a-menu-item>
                <a @click="handleDetail(record)">{{ $t('button.details') }}</a>
              </a-menu-item>
              <a-menu-item v-has="'agvTask:edit'">
                <a @click="handleEdit(record)">{{ $t('button.edit') }}</a>
              </a-menu-item>
            </a-menu>
          </a-dropdown>
        </span>

      </a-table>
    </div>

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

<script>

import '@/assets/less/TableExpand.less'
import {mixinDevice} from '@/utils/mixin'
import {JeecgListMixin} from '@/mixins/JeecgListMixin'
import AgvTaskModal from './modules/AgvTaskModal'
import {cancelAgv, completeAgv, executeAgv, translateResultMessage} from '@/api/api'

export default {
  name: 'AgvTaskList',
  mixins: [JeecgListMixin, mixinDevice],
  components: {
    AgvTaskModal
  },
  data() {
    return {
      description: 'AGV任务管理页面',
      firstLoad: 0,
      isorter: {
        column: 'status',
        order: 'asc',
      },
      // 表头
      columns: [
        {
          title: 'ID',
          align: "center",
          dataIndex: 'id',
          sorter: true,
        },
        {
          title: this.$t('task.taskType'),
          align: "center",
          dataIndex: 'taskType_dictText' + this.$ls.get('language'),
          scopedSlots: {customRender: 'taskType_dictText'},
        },
        {
          title: this.$t('task.container'),
          align: "center",
          dataIndex: 'containerCode'
        },
        {
          title: this.$t('task.carNo'),
          align: "center",
          dataIndex: 'carno'
        },
        {
          title: this.$t('task.priority'),
          align: "center",
          dataIndex: 'priority'
        },
        {
          title: this.$t('task.taskStatus'),
          align: "center",
          dataIndex: 'status_dictText' + this.$ls.get('language'),
          scopedSlots: {customRender: 'status_dictText'},
        },
        {
          title: this.$t('task.fromStationCode'),
          align: "center",
          dataIndex: 'fromPort'
        },
        {
          title: this.$t('task.toStationCode'),
          align: "center",
          dataIndex: 'toPort'
        },
        {
          title: this.$t('system.createBy'),
          align: "center",
          dataIndex: 'createBy'
        },
        {
          title: this.$t('system.createTime'),
          align: "center",
          dataIndex: 'createTime'
        },
        {
          title: this.$t('system.updater'),
          align: "center",
          dataIndex: 'updateBy'
        },
        {
          title: this.$t('system.updateTime'),
          align: "center",
          dataIndex: 'updateTime'
        },
        {
          title: this.$t('system.options'),
          dataIndex: 'action',
          align: "center",
          fixed: "right",
          width: 147,
          scopedSlots: {customRender: 'action'}
        }
      ],
      url: {
        list: "/task/agvTask/list",
        delete: "/task/agvTask/delete",
        deleteBatch: "/task/agvTask/deleteBatch",
        exportXlsUrl: "/task/agvTask/exportXls",
        importExcelUrl: "task/agvTask/importExcel",

      },
      dictOptions: {},
      superFieldList: [],
    }
  },
  created() {
    this.getSuperFieldList();
  },
  mounted() {
    if (this.firstLoad == 0) {
      this.firstLoad = 1;
      return;
    }
    //页面没加载完,此时methods里的方法找不到,使用定时器模拟点击
    let timeSearch = setInterval(() => {
      let eleSearch = document.getElementById("search");
      if (eleSearch != null) {
        //调用成功,清除定时器
        clearInterval(timeSearch)
        eleSearch.click();
      }
    }, 200)
  },
  computed: {
    importExcelUrl: function () {
      return `${window._CONFIG['domianURL']}/${this.url.importExcelUrl}`;
    },
  },
  methods: {
    handleTableChange(pagination, filters, sorter) {
      //分页、排序、筛选变化时触发
      if (Object.keys(sorter).length > 0) {
        this.isorter.column = sorter.field;
        this.isorter.order = "ascend" == sorter.order ? "asc" : "desc"
      }
      //这种筛选方式只支持单选
      if (filters && Object.keys(filters).length > 0 && filters.taskType_dictText) {
        this.filters.taskType = filters.taskType_dictText[0];
      }
      if (filters && Object.keys(filters).length > 0 && filters.status_dictText) {
        this.filters.status = filters.status_dictText[0];
      }
      this.ipagination = pagination;
      this.loadData();
    },
    initDictConfig() {
    },
    executeAgvTask(record) {
      this.loading = true;
      this.model = Object.assign({}, record);
      executeAgv(this.model.id).then((res) => {
        this.loading = false;
        if (res.success) {
          this.$message.success(translateResultMessage(res, res.message))
        } else {
          this.$message.error(translateResultMessage(res, res.message))
        }
        this.searchQuery();
      });
    },
    completeAgvTask(record) {
      this.loading = true;
      this.model = Object.assign({}, record);
      completeAgv(this.model.id).then((res) => {
        this.loading = false;
        if (res.success) {
          this.$message.success(translateResultMessage(res, res.message))
        } else {
          this.$message.error(translateResultMessage(res, res.message))
        }
        this.searchQuery();
      });
    },
    cancelAgvTask(record) {
      this.loading = true;
      this.model = Object.assign({}, record);
      cancelAgv(this.model.id).then((res) => {
        this.loading = false;
        if (res.success) {
          this.$message.success(translateResultMessage(res, res.message))
        } else {
          this.$message.error(translateResultMessage(res, res.message))
        }
        this.searchQuery();
      });
    },
    getSuperFieldList() {
      let fieldList = [];
      fieldList.push({type: 'string', value: 'warehouseCode', text: this.$t('task.warehouseCode'), dictCode: ''})
      fieldList.push({type: 'string', value: 'zoneCode', text: this.$t('task.zoneCode'), dictCode: ''})
      fieldList.push({type: 'int', value: 'taskType', text: this.$t('task.taskType'), dictCode: 'agv_task_type'})
      fieldList.push({type: 'string', value: 'containerCode', text: this.$t('task.containerCode'), dictCode: ''})
      fieldList.push({type: 'string', value: 'carno', text: this.$t('task.carNo'), dictCode: ''})
      fieldList.push({type: 'int', value: 'priority', text: this.$t('task.priority'), dictCode: ''})
      fieldList.push({type: 'int', value: 'status', text: this.$t('task.status'), dictCode: 'agv_task_status'})
      fieldList.push({type: 'string', value: 'fromPort', text: this.$t('task.fromPort'), dictCode: ''})
      fieldList.push({type: 'string', value: 'toPort', text: this.$t('task.toPort'), dictCode: ''})
      fieldList.push({type: 'string', value: 'createBy', text: this.$t('system.createBy'), dictCode: ''})
      fieldList.push({type: 'datetime', value: 'createTime', text: this.$t('system.createTime')})
      fieldList.push({type: 'string', value: 'updateBy', text: this.$t('system.updater'), dictCode: ''})
      fieldList.push({type: 'datetime', value: 'updateTime', text: this.$t('system.updateTime')})
      this.superFieldList = fieldList
    }
  }
}
</script>
<style scoped>
@import '~@assets/less/common.less';
</style>