penddingList.vue 22.1 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94
<!--空运待出列表-->
<template>
  <div class="app-container">

    <!-- 搜索工作栏 -->
    <el-form :model="queryParams" ref="queryForm" size="small" :inline="true">
      <el-form-item :label="$t('编号')" prop="orderNo">
        <el-input v-model="queryParams.numberKey" :placeholder="$t('请输入订单号、唛头、提单号')" clearable @keyup.enter.native="handleQuery" />
      </el-form-item>

      <el-form-item :label="$t('发货人')" prop="consignorKey">
        <el-input v-model="queryParams.consignorKey" :placeholder="$t('发货人')" clearable @keyup.enter.native="handleQuery" />
      </el-form-item>
      <el-form-item :label="$t('收货人')" prop="consigneeKey">
        <el-input v-model="queryParams.consigneeKey" :placeholder="$t('收货人')" clearable @keyup.enter.native="handleQuery" />
      </el-form-item>
      <el-form-item label="">
        <dict-selector :type="DICT_TYPE.ECW_BEGINTIME_TYPE_ENDTIME" :filter="(item) => item.value != 'PickTime'" v-model="dateFilterType" defaultable style="width: 150px; margin-right: 5px" />
        <el-date-picker v-model="dateFilter" type="datetimerange"  range-separator="-"
          :start-placeholder="$t('开始日期')"
          :end-placeholder="$t('结束日期')"
          value-format="yyyy-MM-dd HH:mm:ss"
          @change="handleQuery"
          >
          </el-date-picker>
      </el-form-item>
      <el-form-item :label="$t('始发仓')" prop="startWarehouseId">
        <el-select v-model="queryParams.startWarehouseId" :placeholder="$t('请选择始发仓')" clearable @change="handleQuery">
          <el-option v-for="item in exportWarehouseList" :label="$l(item, 'title')" :value="item.id" :key="item.id"></el-option>
        </el-select>
      </el-form-item>
      <el-form-item :label="$t('目的仓')" prop="destWarehouseId">
        <el-select v-model="queryParams.destWarehouseId" :placeholder="$t('请选择目的仓')" clearable @change="handleQuery">
          <el-option v-for="item in importWarehouseList" :label="$l(item, 'title')" :value="item.id" :key="item.id"></el-option>
        </el-select>
      </el-form-item>

      <!--<el-form-item :label="$t('运输方式')" prop="transportId">
        <dict-selector :type="DICT_TYPE.ECW_TRANSPORT_TYPE" v-model.number="queryParams.transportId" clearable @change="handleQuery"/>
      </el-form-item>-->

      <el-form-item :label="$t('商品')" prop="tidanNo">
        <el-input v-model="queryParams.prodKey" :placeholder="$t('请输入商品类型、品名或品牌')" clearable @keyup.enter.native="handleQuery" />
      </el-form-item>

      <el-form-item :label="$t('控货')" prop="isCargoControl">
        <dict-selector v-model="queryParams.isCargoControl" :type="DICT_TYPE.INFRA_BOOLEAN_STRING" fomatter="bool" clearable />
      </el-form-item>
      <el-form-item :label="$t('入仓类型')" prop="warehouseType">
        <dict-selector :type="DICT_TYPE.ECW_WAREHOUSING_TYPE" v-model="queryParams.warehouseType"  clearable/>
      </el-form-item>
      <el-form-item :label="$t('客户经理')" >
        <user-selector manage v-model="queryParams.salesmanId" clearable @change="handleQuery"/>
      </el-form-item>
      <el-form-item :label="$t('订单状态')" prop="status">
        <dict-selector :type="DICT_TYPE.ORDER_STATUS" v-model="queryParams.status"
          @keyup.enter.native="handleQuery" clearable />
      </el-form-item>
      <el-form-item :label="$t('报关方式')" prop="customsType">
        <dict-selector :type="DICT_TYPE.ECW_CUSTOMS_TYPE" v-model="queryParams.customsType" clearable @change="handleQuery" />
      </el-form-item>
      <el-form-item :label="$t('是否齐货')" >
        <!--// 字段存疑-->
        <dict-selector v-model="queryParams.isNeat" :type="DICT_TYPE.INFRA_BOOLEAN_STRING" fomatter="bool"  clearable @change="handleQuery"/>
      </el-form-item>

      <el-form-item :label="$t('备案属性')" prop="productRecord">
        <dict-selector :type="DICT_TYPE.PRODUCT_RECORD_ATTRIBUTE" v-model="queryParams.productRecord" clearable @change="handleQuery" />
      </el-form-item>
      <el-form-item :label="$t('快递单号')" prop="number">
        <el-input v-model="queryParams.number" :placeholder="$t('快递单号')" clearable @keyup.enter.native="handleQuery" />
      </el-form-item>
      <el-form-item :label="$t('外部仓')" prop="number">
        <el-select v-model="queryParams.isExternalWarehouse" :placeholder="$t('请选择')" clearable @change="handleQuery">
          <el-option :label="$t('外部仓')" :value="1"></el-option>
          <el-option :label="$t('自有仓')" :value="0"></el-option>
        </el-select>
      </el-form-item>

      <el-form-item :label="$t('异常状态')" prop="status">
        <dict-selector :type="DICT_TYPE.ORDER_ABNORMAL_STATE" v-model="queryParams.abnormalState"
          @keyup.enter.native="handleQuery" clearable />
      </el-form-item>
      <el-form-item :label="$t('审核状态')" prop="status">
        <dict-selector :type="DICT_TYPE.ECW_ORDER_APPROVAL_TYPE" v-model="queryParams.auditType"
          @keyup.enter.native="handleQuery" clearable />
      </el-form-item>
      <el-form-item :label="$t('订单类型')" prop="number">
        <el-select v-model="queryParams.type" :placeholder="$t('请选择')" clearable >
          <el-option :label="$t('普通订单')" :value="0"></el-option>
          <el-option :label="$t('集运服务')" :value="1"></el-option>
          <el-option :label="$t('海外仓')" :value="2"></el-option>
        </el-select>
      </el-form-item>
95 96 97
      <el-form-item :label="$t('出货渠道')" prop="number">
        <selector :options="channelList" :label-field="$l('name')" value-field="channelId" v-model="queryParams.channelId"></selector>
      </el-form-item>
98 99 100 101 102 103 104
      <el-form-item :label="$t('特需')" prop="packageType">
        <el-select v-model="queryParams.packageTypeArr" multiple :placeholder="$t('请选择')" clearable >
          <template v-for="item in getDictDatas(DICT_TYPE.ORDER_SPECIAL_NEEDS)">
            <el-option :label="$l(item, 'label')" :value="item.value"></el-option>
          </template>
        </el-select>
      </el-form-item>
105 106 107 108 109 110 111 112 113
      <el-form-item>
        <el-button type="primary" icon="el-icon-search" @click="handleQuery">{{$t('搜索')}}</el-button>
        <el-button icon="el-icon-refresh" @click="resetQuery">{{$t('重置')}}</el-button>
      </el-form-item>
    </el-form>

    <!-- 操作工具栏 -->
    <el-row :gutter="10" class="mb8">
      <el-col :span="1.5">
114 115
        <el-button :disabled="!multipleSelection.length" type="primary" plain size="mini" @click="batchCanShipment" v-hasPermi="['ecw:order:peddingList:batch_can_shipment']">{{$t('批量可出')}}</el-button>
        <el-button :disabled="!multipleSelection.length" type="primary" plain size="mini" @click="batchException" v-hasPermi="['ecw:order:peddingList:batch_exception']">{{$t('批量转异')}}</el-button>
116 117
        <el-button :disabled="!multipleSelection.length" type="primary" :loading="exporting" plain size="mini" @click="exportXls(ids)" v-hasPermi="['ecw:order:peddingList:export_selected']">{{$t('导出所选')}}</el-button>
        <el-button type="primary" :loading="exporting" plain size="mini" @click="exportXls(queryParams)" v-hasPermi="['ecw:order:peddingList:export_search']">{{$t('导出搜索')}}</el-button>
118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145
      </el-col>
    </el-row>

    <!-- 列表 -->
    <el-table v-loading="loading" :data="list" @selection-change="handleSelectionChange">
      <el-table-column type="selection" width="55" align="center" />

      <el-table-column :label="$t('订单编号')" width="120px" align="center" prop="orderNo" >
        <template slot-scope="scope">
          <router-link :to="{path: '/order/detail',query: {orderId: scope.row.orderId}}" class="link-type">
            <span>{{ scope.row.orderNo }}</span>
          </router-link>
          <div style="display: flex;flex-wrap: wrap;" v-if="scope.row.advanceType">
            <el-button @click="deleteSpecial(item.value,scope.row.orderId)" size="mini" style="margin-left: 20px" type="danger" circle v-for="(item,index) in specialRendering(scope.row.advanceType)" :key="index">{{item.label[0]}}</el-button>
          </div>
        </template>
      </el-table-column>
      <el-table-column :label="$t('唛头')" align="center" prop="marks" />
      <el-table-column :label="$t('总箱数/入仓箱数')" align="center" prop="sumNum">
        <template slot-scope="{row}">
          <div :style="{color:row.customsType != 1 ? 'red' : null}">{{row.totalNum}}{{$t('')}}/{{row.sumNum}}{{$t('')}}</div>
          <dict-tag v-if="row.customsType != 1" style="color:red" :type="DICT_TYPE.ECW_CUSTOMS_TYPE" :value="row.customsType"></dict-tag>
        </template>
      </el-table-column>
      <el-table-column :label="$t('体积/重量')" align="center" prop="sumWeight">
        <template slot-scope="{row}">
          <!--入仓前是填单数据,入仓后是入仓数据,装柜审核通过等状态inwarehouseState会变成0,所以只能通过sumNum来判断-->
          <component
146 147 148 149
            :is="row.orderType > 1 ? 'el-tooltip' : 'div'"
            class="item"
            :style="{
            color: row.orderType > 1 ? 'red' : null
150
          }"
151 152 153
            effect="dark"
            :content="row.orderType===2 ? (row.wvolume||0)+'m³' : (row.vweight || 0) + 'kg'"
            placement="bottom">
154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180
            <div v-if="row.sumNum > 0">{{row.sumVolume}}m³ /{{row.sumWeight}}Kg</div>
            <div v-else>{{row.costVO.totalVolume}}m³ /{{row.costVO.totalWeight}}Kg</div>
          </component>
        </template>
      </el-table-column>
      <el-table-column :label="$t('始发仓')" align="center" prop="startWarehouseName">
        <template slot-scope="{row}">
          {{row.startWarehouseName}}
          <span style="color:red" v-if="row.isExternalWarehouse">({{$t('外部仓')}})</span>
        </template>
      </el-table-column>
      <el-table-column :label="$t('运输方式/目的地')" align="center" prop="transportId">
        <template slot-scope="{row}">
          <dict-tag :type="DICT_TYPE.ECW_TRANSPORT_TYPE" :value="row.transportId" /> / {{row.dstWarehouseName}}
        </template>
      </el-table-column>
      <el-table-column :label="$t('控货')" align="center" prop="isCargoControl">
        <template slot-scope="{row}">
          <dict-tag :type="DICT_TYPE.INFRA_BOOLEAN_STRING" :value="row.isCargoControl" />
        </template>
      </el-table-column>
      <el-table-column :label="$t('订单状态')" align="center" prop="status">
        <template slot-scope="scope">
          <!-- <dict-tag :type="DICT_TYPE.ORDER_STATUS" :value="scope.row.status" /> -->
          {{scope.row.statusMsg}}
        </template>
      </el-table-column>
181 182 183 184 185 186 187 188 189 190 191 192 193
      <el-table-column :label="$t('预计运费/清关费')" align="center" prop="status">
        <template slot-scope="{row}">
          <div v-if="row.costVO">
            <template v-for="item in row.costVO.feeDtoList">
              <div v-if="[1,2].indexOf(item.feeType) > -1">
                {{item.feeType == 1 ? $t('运费'):$t('清关费')}}
                {{item.amount}}
                {{currencyMap[item.currencyId]}}
              </div>
            </template>
          </div>
        </template>
      </el-table-column>
194 195
      <el-table-column :label="$t('操作')" align="center" class-name="small-padding fixed-width actions" width="150px">
        <template slot-scope="scope">
196
            <el-button type="text" @click="setCanShipment(scope.row)"  v-hasPermi="['ecw:order:peddingList:can_shipment']">{{$t('可出')}}</el-button>
197 198 199 200 201 202 203 204 205
            <el-button type="text" @click="printTagOrderId=scope.row.orderId" v-hasPermi="['ecw:order:peddingList:print_tag']">{{$t('打印标签')}}</el-button>
        </template>
      </el-table-column>
    </el-table>
    <!-- 分页组件 -->
    <pagination v-show="total > 0" :total="total" :page.sync="queryParams.page" :limit.sync="queryParams.rows"
      @pagination="getList" />

    <print-tag v-if="printTagOrderId !== null" :order-id="printTagOrderId" @close="printTagOrderId=null" />
206 207 208 209 210 211 212 213 214 215

    <el-dialog :title="$t('订单转异')" center :visible.sync="showBatchException">
      <el-form label-position="top" label-width="200" ref="batchExceptionForm" :model="batchExceptionForm" :rules="exceptionRules">
        <el-form-item :label="$t('订单号')" prop="manualExceptionType">
          {{multipleSelection.map(item => item.orderNo).join(',')}}
        </el-form-item>
        <el-form-item :label="$t('原因类型')" prop="manualExceptionType">
          <dict-selector v-model="batchExceptionForm.manualExceptionType" form-type="checkbox" :type="DICT_TYPE.MANUAL_EXCEPTION_TYPE" multiple ></dict-selector>
        </el-form-item>
        <el-form-item :label="$t('附件')">
dragondean@qq.com's avatar
dragondean@qq.com committed
216
          <image-and-video-upload v-model="batchExceptionForm.exceptionUrls"></image-and-video-upload>
217 218 219 220 221 222 223 224 225 226
        </el-form-item>
        <el-form-item :label="$t('详细信息')">
          <el-input v-model="batchExceptionForm.descZh" type="textarea"></el-input>
        </el-form-item>
      </el-form>
      <span slot="footer" class="dialog-footer">
        <el-button  type="primary" @click="handleBatchException">{{$t('确认转异')}}</el-button>
        <el-button @click="showBatchException = false">{{$t('取消')}}</el-button>
      </span>
    </el-dialog>
227 228 229 230 231 232 233 234 235
  </div>
</template>

<script>
import Selector from '@/components/Selector'
import ProductSelector from '@/components/ProductSelector'
import { getProductAttrList } from '@/api/ecw/productAttr'
import CustomerSelector from '@/components/CustomerSelector'
import specialNeeds from '@/views/ecw/order/components/specialNeeds';
236 237 238 239 240 241 242 243
import {
    setCanShipment,
    canShipmentPage,
    batchCanShipment,
    batchException,
    waitingShipmentPage,
    orderSpecialNeed, exportCanShipment, exportWaitingShipment
} from "@/api/ecw/order";
244 245 246 247 248 249 250 251 252 253 254 255 256
import PrintTag from './components/PrintTag'
import PrintWarehouseReceipt from './components/PrintWarehouseReceipt'
import PrintLadingBill from './components/PrintLadingBill'
import BatchPickup from './components/BatchPickup'
import withdrawal from "@/views/ecw/order/withdrawal";
import UserSelector from '@/components/UserSelector'
import BatchSingleApplication from "@/views/ecw/order/batchSingleApplication";
import FeeApplication from "@/views/ecw/order/feeApplication";
import MergeLog from '@/views/ecw/order/components/MergeLog'
import PickupLog from './components/PickupLog'
import {getWarehouseList} from '@/api/ecw/warehouse'
import { getCurrencyPage } from "@/api/ecw/currency";
import SplitRevoke from "@/views/ecw/order/components/SplitRevoke";
257
import {getChannelList} from "@/api/ecw/channel";
dragondean@qq.com's avatar
dragondean@qq.com committed
258
import ImageAndVideoUpload from "@/components/ImageAndVideoUpload";
259
import Template from "@/views/cms/template/index.vue";
260 261 262
export default {
  name: "EcwPeddingList",
  components: {
263
    Template,
264 265 266 267 268 269
    UserSelector,
    FeeApplication,
    BatchSingleApplication,
    MergeLog,
    PickupLog,
    SplitRevoke,
dragondean@qq.com's avatar
dragondean@qq.com committed
270
    ImageAndVideoUpload,
271 272 273 274
    CustomerSelector, ProductSelector, Selector,specialNeeds,PrintTag, PrintWarehouseReceipt, PrintLadingBill, BatchPickup,withdrawal
  },
  data() {
    return {
275 276
        // 导出中
        exporting: false,
277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309
      // 选中数组
      ids: [],
      // 非单个禁用
      single: true,
      // 非多个禁用
      multiple: true,
      // 遮罩层
      loading: true,
      // 总条数
      total: 0,
      // 订单列表
      list: [],

      // 查询参数
      queryParams: {
        page: 1,
        rows: 10
      },
      warehouseList:[],
      productAttrList: [],  // 商品属性
      molecule: '', //重货比分子
      denominator: '', //重货比分母
      dateFilterType: '', //日期筛选类别
      dateFilter: [], //筛选日期

      printTagOrderId: null, // 显示打印标签的订单ID
      isShow:false,//特殊显示
      multipleSelection:[],
      params: {
        page: 1,
        rows: 20,
      },
      currencyList:[],
310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328
      channelList:[],
      // 是否显示批量转异弹层
      showBatchException: false,
      // 批量转异表单
      batchExceptionForm: {},
      // 批量转异表单验证规则
      exceptionRules: {
        manualExceptionType: [
          { required: true, message: '请勾选原因类型', trigger: 'change' },
          {
            validator: (rule, value, callback) => {
              if (value.length <= 0) {
                callback(new Error('请勾选原因类型'))
              }
              callback()
            }, trigger: 'change'
          }
        ]
      }
329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354
    };
  },
  watch:{
    isChinese(){
      this.getList()
    }
  },
  computed: {
    isChinese(){
      return this.$i18n.locale === 'zh_CN'
    },
    exportWarehouseList(){
      /* tradeType 1 进口,2出口,3进出口 */
      return this.warehouseList.filter(item => item.tradeType == 2 || item.tradeType == 3)
    },
    importWarehouseList(){
      return this.warehouseList.filter(item => item.tradeType == 1 || item.tradeType == 3)
    },
    combinedQueryParams(){
        let timeParams = {}
        if(this.dateFilterType && this.dateFilter){
          timeParams['begin' + this.dateFilterType] = this.dateFilter[0]
          timeParams['end' + this.dateFilterType] = this.dateFilter[1]
        }
        let queryParams = Object.assign({}, this.queryParams, timeParams)
        return queryParams
355 356 357 358 359 360 361
    },
    currencyMap(){
      let map = {}
      this.currencyList.forEach(item => {
        map[item.id] = this.$l(item, 'title')
      })
      return map
362 363 364 365
    }
  },
  activated(){
    this.getList()
366
    this.$store.dispatch('getBadgeData')
367 368 369 370 371 372 373
  },
  created() {
    this.getList();
    getProductAttrList().then(res => this.productAttrList = res.data)
    getWarehouseList().then(res => this.warehouseList = res.data)

    getCurrencyPage(this.params).then(res => this.currencyList = res.data.list)
374
    getChannelList().then(res => this.channelList = res.data)
375 376

    this.$store.dispatch('getBadgeData')
377 378 379 380 381
  },
  methods: {
    /** 查询列表 */
    getList() {
      this.loading = true;
382 383 384 385
      const query = {...this.combinedQueryParams}
      if(query.packageTypeArr && query.packageTypeArr.length){
        query.packageType = query.packageTypeArr.join(',')
      }
386
      // 执行查询
387
      waitingShipmentPage(query).then(response => {
388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424
        // 部分情况下,订单后面的操作下拉菜单会显示按钮,但是下来没有选项,在elTable组件更新的时候会导致渲染错误,所以要在更新渲染前清空一次list让table彻底重新渲染,避免部分更新导致异常
        this.list = []
        this.$nextTick(() => {
          this.list = response.data.list
        })
        this.total = response.data.total;
        this.loading = false;
      });
    },
    /** 搜索按钮操作 */
    handleQuery() {
      this.queryParams.page = 1;
      this.$nextTick(this.getList)
    },
    /** 重置按钮操作 */
    resetQuery() {
      this.queryParams = {
        page: 1,
        rows: 10
      }
      this.dateFilter = []
      this.handleQuery();
    },
    /** 新增按钮操作 */
    handleAdd() {
      this.$router.push('create')
    },
    /** 修改按钮操作 */
    handleUpdate(row) {
      this.$router.push('edit?id=' + row.orderId)
    },
    // 表格多选
    handleSelectionChange(selection) {
      this.multipleSelection = selection
      this.ids = selection.map(item => item.orderId)
      this.single = selection.length !== 1
      this.multiple = !selection.length
425 426 427 428 429 430 431 432 433 434 435 436
    },
    // 设置可出
    setCanShipment(row){
      this.$confirm(this.$t(`您确定要将订单{orderNo}设置为可出吗?`, {orderNo: row.orderNo})).then(() =>{
        return setCanShipment(row.orderId)
      }).then(res =>{
        this.$message.success(res.message || this.$t('操作成功'))
        this.getList()
      })
    },
    // 批量可出
    batchCanShipment(){
437 438
      let orderNo = this.multipleSelection.map(item => item.orderNo).join(',')
      this.$confirm(this.$t(`您确定要将订单{orderNo}设置为可出吗?`, {orderNo})).then(() =>{
439 440 441 442 443 444 445 446 447 448 449 450
        return batchCanShipment(this.ids)
      }).then(res =>{
        this.$message.success(res.message || this.$t('操作成功'))
        this.getList()
      })
    },
    // 批量转异
    batchException(){
      if(!this.multipleSelection.length){
        return this.$message.error("暂无选择订单")
      }
      this.showBatchException = true
451
      this.batchExceptionForm.exceptionUrls = []
452 453 454 455 456 457
    },
    handleBatchException(){
      // 以下代码是copilot生成,暂无接口,回头在改
      this.$refs.batchExceptionForm.validate(valid => {
        if (valid) {
          let params = Object.assign({}, this.batchExceptionForm, {orderIds: this.ids})
dragondean@qq.com's avatar
dragondean@qq.com committed
458
          params.manualExceptionType = params.manualExceptionType.join(',')
459 460 461 462 463 464 465
          batchException(params).then(res =>{
            this.$message.success(res.message || this.$t('操作成功'))
            this.showBatchException = false
            this.getList()
          })
        }
      })
466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490
    },
      specialRendering(val){
          console.log('val', val)
          if(val !== undefined){
              let i = val.split(',')
              return this.getDictDatas(this.DICT_TYPE.ORDER_SPECIAL_NEEDS).filter(e => {
                  return i.indexOf(e.value) > -1
              }).map(item => {
                  // 打字开头的用最后一个字,否则取第一个字
                  item.symbol = item.label[0] == '' ? item.label[item.label.length-1]: item.label[0]
                  return item
              })
          }
      },
      deleteSpecial(id,orderId){
          this.$confirm(this.$t('确定删除此特需么?')).then(() => {
              return orderSpecialNeed({orderId:orderId,advanceType:id})
          }).then(() => {
              this.getList()
          })
      },
      exportXls(params){
          this.exporting = true
          const exportParams = Array.isArray(params) ? {orderIdList: params} : {...params}
          exportWaitingShipment(exportParams).then(res => {
491
              this.$message.success(this.$t('已加入导出队列,请稍后在下载日志中下载'))
492 493 494 495
          }).finally(() => {
              this.exporting = false
          })
      }
496 497 498 499 500 501 502 503 504 505 506 507 508
  }
};
</script>
<style lang="scss" scoped>
::v-deep .actions{
    .el-dropdown{
      margin-right: 10px;
      &:last-child {
        margin-right: 0;
      }
    }
}
</style>