indexSea.vue 14.7 KB
Newer Older
wh's avatar
wh committed
1 2 3 4 5
<template>
  <div class="app-container">

    <!-- 搜索工作栏 -->
    <el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">
wanglianghe's avatar
wanglianghe committed
6 7
      <el-form-item label="自编号" prop="selfNo">
        <el-input v-model="queryParams.selfNo" placeholder="请输入自编号" clearable @keyup.enter.native="handleQuery"/>
wh's avatar
wh committed
8
      </el-form-item>
wh's avatar
wh committed
9 10
      <el-form-item label="柜号" prop="cubNo">
        <el-input v-model="queryParams.cubNo" placeholder="请输入柜号" clearable @keyup.enter.native="handleQuery"/>
wh's avatar
wh committed
11
      </el-form-item>
wanglianghe's avatar
wanglianghe committed
12 13 14
      <el-form-item label="柜型" prop="cabinetId">
        <el-select v-model="queryParams.cabinetId" placeholder="请选择柜型">
          <el-option v-for="item in cabinetList" :label="item.name" :value="item.name" :key="item.id"></el-option>
wh's avatar
wh committed
15 16
        </el-select>
      </el-form-item>
wanglianghe's avatar
wanglianghe committed
17 18 19

      <el-form-item label="始发地" prop="startWarehouseId">
        <el-select v-model="queryParams.startWarehouseId" placeholder="请选择始发地">
20
          <el-option v-for="item in exportWarehouseList" :label="item.titleZh" :value="item.id" :key="item.id"></el-option>
wh's avatar
wh committed
21
        </el-select>
wh's avatar
wh committed
22
      </el-form-item>
wanglianghe's avatar
wanglianghe committed
23 24 25

      <el-form-item label="目的地" prop="destWarehouseId">
        <el-select v-model="queryParams.destWarehouseId" placeholder="请选择目的地">
26
          <el-option v-for="item in importWarehouseList" :label="item.titleZh" :value="item.id" :key="item.id"></el-option>
wh's avatar
wh committed
27
        </el-select>
wh's avatar
wh committed
28
      </el-form-item>
wanglianghe's avatar
wanglianghe committed
29 30 31 32

      <el-form-item label="" prop="date">
        <el-select v-model="queryParams.dateType" placeholder="请选择时间类型" clearable size="small">
          <el-option v-for="item in dateTypes" :key="item.value" :label="item.label" :value="item.value" />
wh's avatar
wh committed
33
        </el-select>
wh's avatar
wh committed
34
      </el-form-item>
wanglianghe's avatar
wanglianghe committed
35 36 37

      <el-form-item label="">
        <el-date-picker v-model="queryParams.dateRangeCreateTime" style="width: 240px" value-format="yyyy-MM-dd"
wh's avatar
wh committed
38
                        type="daterange" range-separator="-" start-placeholder="开始日期" end-placeholder="结束日期"/>
wh's avatar
wh committed
39
      </el-form-item>
wanglianghe's avatar
wanglianghe committed
40 41 42 43 44 45 46 47 48 49 50 51


      <el-form-item label="状态" prop="boxStatus">
        <el-select v-model="queryParams.boxStatus" placeholder="请选择状态" clearable size="small">
          <el-option v-for="dict in this.getDictDatas(DICT_TYPE.BOX_SHIPMENT_STATUS)"
                     :key="dict.value" :label="dict.label" :value="dict.value"/>
        </el-select>
      </el-form-item>
      
      
      <el-form-item label="运输方式" prop="transportType">
        <el-select v-model="queryParams.transportType" placeholder="请选择运输方式" clearable size="small">
52
          <el-option v-for="dict in transportTypes"
wanglianghe's avatar
wanglianghe committed
53 54 55 56 57
                     :key="dict.value" :label="dict.label" :value="dict.value"/>
        </el-select>
      </el-form-item>

      
wh's avatar
wh committed
58 59 60 61 62 63 64 65 66 67
      <el-form-item>
        <el-button type="primary" icon="el-icon-search" @click="handleQuery">搜索</el-button>
        <el-button icon="el-icon-refresh" @click="resetQuery">重置</el-button>
      </el-form-item>
    </el-form>

    <!-- 操作工具栏 -->
    <el-row :gutter="10" class="mb8">
      <el-col :span="1.5">
        <el-button type="primary" plain icon="el-icon-plus" size="mini" @click="handleAdd"
wanglianghe's avatar
wanglianghe committed
68
                   v-hasPermi="['shipment:box:create']">出货安排
wh's avatar
wh committed
69
        </el-button>
wh's avatar
wh committed
70 71
      </el-col>
      <el-col :span="1.5">
wh's avatar
wh committed
72 73 74 75
        <el-button type="warning" plain icon="el-icon-download" size="mini" @click="handleExport"
                   :loading="exportLoading"
                   v-hasPermi="['shipment:box:export']">导出
        </el-button>
wh's avatar
wh committed
76 77 78 79 80 81
      </el-col>
      <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
    </el-row>

    <!-- 列表 -->
    <el-table v-loading="loading" :data="list">
wanglianghe's avatar
wanglianghe committed
82
      <el-table-column label="自编号" align="center" prop="selfNo"/>
wh's avatar
wh committed
83
      <el-table-column label="柜号" align="center" prop="cubNo"/>
wanglianghe's avatar
wanglianghe committed
84 85 86
      <el-table-column label="柜型" align="center" prop="cabinetId">
        <template slot-scope="scope">
          <span>{{ getCabinetName(scope.row.cabinetId) }}</span>
wh's avatar
wh committed
87 88
        </template>
      </el-table-column>
wanglianghe's avatar
wanglianghe committed
89
      <el-table-column label="运输方式" align="center" prop="transportType">
wh's avatar
wh committed
90
        <template slot-scope="scope">
wanglianghe's avatar
wanglianghe committed
91
          <dict-tag :type="DICT_TYPE.ECW_TRANSPORT_TYPE" :value="scope.row.transportType"/>
wh's avatar
wh committed
92 93
        </template>
      </el-table-column>
wanglianghe's avatar
wanglianghe committed
94 95 96 97 98 99 100 101 102 103 104

      <el-table-column label="方数(预装/已装)" align="center" prop="squareNumber"/>
      <el-table-column label="重量(预装/已装)" align="center" prop="weight"/>

      <el-table-column label="状态" align="center" prop="boxStatus">
        <template slot-scope="scope">
          <dict-tag :type="DICT_TYPE.BOX_SHIPMENT_STATUS" :value="scope.row.boxStatus"/>
        </template>
      </el-table-column>
      
      <el-table-column label="日期" align="center" prop="createTime" width="180">
wh's avatar
wh committed
105
      <template slot-scope="scope">
wanglianghe's avatar
wanglianghe committed
106
        <span>{{ new Date(scope.row.createTime).format('yyyy-MM-dd') }}</span>
wh's avatar
wh committed
107 108
      </template>
      </el-table-column>
wh's avatar
wh committed
109 110
      <el-table-column label="操作" align="center" class-name="small-padding fixed-width">
        <template slot-scope="scope">
111 112
          <!-- <el-button size="mini" type="text" icon="el-icon-view" @click="handleView(scope.row)"
                     v-hasPermi="['shipment:box:query']">查看</el-button>
wh's avatar
wh committed
113
          <el-button size="mini" type="text" icon="el-icon-edit" @click="handleUpdate(scope.row)"
wh's avatar
wh committed
114
                     v-hasPermi="['shipment:box:update']">修改</el-button>
wh's avatar
wh committed
115
          <el-button size="mini" type="text" icon="el-icon-delete" @click="handleDelete(scope.row)"
116 117 118 119 120 121 122 123 124 125 126 127 128
                     v-hasPermi="['shipment:box:delete']">删除</el-button> -->
          <el-dropdown trigger="click" @command="(command)=>handleCommand(scope.row, command)">
            <el-button type="primary">
              操作<i class="el-icon-arrow-down el-icon--right"></i>
            </el-button>
            <el-dropdown-menu slot="dropdown">
              <el-dropdown-item command="edit">编辑</el-dropdown-item>
              <el-dropdown-item command="sea">操作-海运</el-dropdown-item>
              <el-dropdown-item command="error">异常登记</el-dropdown-item>
              <el-dropdown-item command="cost">费用登记</el-dropdown-item>
              <el-dropdown-item command="delete">删除</el-dropdown-item>
            </el-dropdown-menu>
          </el-dropdown>
wh's avatar
wh committed
129 130 131 132 133 134 135 136
        </template>
      </el-table-column>
    </el-table>
    <!-- 分页组件 -->
    <pagination v-show="total > 0" :total="total" :page.sync="queryParams.pageNo" :limit.sync="queryParams.pageSize"
                @pagination="getList"/>

    <!-- 对话框(添加 / 修改) -->
wanglianghe's avatar
wanglianghe committed
137
    <el-dialog :title="title" :visible.sync="open" width="800px" append-to-body>
wh's avatar
wh committed
138
      <el-form ref="form" :model="form" :rules="rules" label-width="80px">
wanglianghe's avatar
wanglianghe committed
139 140

        <el-form-item label="运输方式" prop="transportType">
141 142
          <el-radio-group v-model="form.transportType">
              <el-radio v-for="dict in transportTypes" :key="dict.value" :label="dict.value">{{dict.label}}</el-radio>
wanglianghe's avatar
wanglianghe committed
143 144 145
          </el-radio-group>
        </el-form-item>

146
        <el-form-item label="柜型" prop="cabinetId">
wanglianghe's avatar
wanglianghe committed
147 148
          <el-select v-model="form.cabinetId" placeholder="请选择柜型">
            <el-option v-for="item in cabinetList" :label="item.name" :value="item.id" :key="item.id"></el-option>
wh's avatar
wh committed
149 150
          </el-select>
        </el-form-item>
wanglianghe's avatar
wanglianghe committed
151 152 153

        <el-form-item label="始发地" prop="startWarehouseId">
          <el-select v-model="form.startWarehouseId" placeholder="请选择始发地">
154
            <el-option v-for="item in exportWarehouseList" :label="item.titleZh" :value="item.id" :key="item.id"></el-option>
wh's avatar
wh committed
155
          </el-select>
wh's avatar
wh committed
156
        </el-form-item>
wanglianghe's avatar
wanglianghe committed
157 158 159

        <el-form-item label="目的地" prop="destWarehouseId">
          <el-select v-model="form.destWarehouseId" placeholder="请选择目的地">
160
            <el-option v-for="item in importWarehouseList" :label="item.titleZh" :value="item.id" :key="item.id"></el-option>
wh's avatar
wh committed
161
          </el-select>
wh's avatar
wh committed
162
        </el-form-item>
wanglianghe's avatar
wanglianghe committed
163
        
wh's avatar
wh committed
164 165 166 167 168 169 170 171 172 173
      </el-form>
      <div slot="footer" class="dialog-footer">
        <el-button type="primary" @click="submitForm">确 定</el-button>
        <el-button @click="cancel">取 消</el-button>
      </div>
    </el-dialog>
  </div>
</template>

<script>
wh's avatar
wh committed
174 175
  import {createbox, updatebox, deletebox, getbox, getboxPage, exportboxExcel} from "@/api/ecw/box";
  import {getCabinetPage} from "@/api/ecw/cabinet";
176 177
  import { getWarehouseList } from "@/api/ecw/warehouse"
  import { getDictDatas, DICT_TYPE } from '@/utils/dict';
wh's avatar
wh committed
178

wh's avatar
wh committed
179 180 181 182 183
  export default {
    name: "box",
    components: {},
    data() {
      return {
wanglianghe's avatar
wanglianghe committed
184
        dateTypes:[
185
          {value:'1', label:'预装时间'},
wanglianghe's avatar
wanglianghe committed
186 187 188 189 190 191 192 193
          {value:'2', label:'装柜时间'},
          {value:'3', label:'起运时间'},
          {value:'4', label:'到港时间'},
          {value:'5', label:'清关时间'},
          {value:'6', label:'提货时间'},
        ],


wh's avatar
wh committed
194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213
        // 遮罩层
        loading: true,
        // 导出遮罩层
        exportLoading: false,
        // 显示搜索条件
        showSearch: true,
        // 总条数
        total: 0,
        // 出货列表
        list: [],
        // 弹出层标题
        title: "",
        // 是否显示弹出层
        open: false,
        dateRangeCreateTime: [],
        // 查询参数
        queryParams: {
          pageNo: 1,
          pageSize: 10,
          id: null,
wanglianghe's avatar
wanglianghe committed
214
          selfNo: null,
wh's avatar
wh committed
215
          cubNo: null,
wanglianghe's avatar
wanglianghe committed
216 217 218 219 220
          cabinetId: null,
          boxStatus: null,
          startWarehouseId: null,
          destWarehouseId: null,
          transportType: null,
wh's avatar
wh committed
221
        },
wanglianghe's avatar
wanglianghe committed
222
        cabinetList:[],
223 224 225 226
        warehouseList: [],

        transportTypes:this.getDictDatas(DICT_TYPE.ECW_TRANSPORT_TYPE),

wh's avatar
wh committed
227 228 229
        // 表单参数
        form: {},
        // 表单校验
wanglianghe's avatar
wanglianghe committed
230 231
        rules: {
          transportType: [{ required: true, message: "运输方式不能为空", trigger: "blur" }],
232
          cabinetId: [{ required: true, message: "柜型不能为空", trigger: "blur" }],
wanglianghe's avatar
wanglianghe committed
233 234 235 236
          startWarehouseId: [{ required: true, message: "始发地不能为空", trigger: "blur" }],
          destWarehouseId: [{ required: true, message: "目的地不能为空", trigger: "blur" }],

        }
wh's avatar
wh committed
237 238
      };
    },
wh's avatar
wh committed
239
    computed: {
240 241
      exportWarehouseList() {
        return this.warehouseList.filter(item => item.tradeType == '2' || item.type == '3')
wh's avatar
wh committed
242
      },
243 244
      importWarehouseList() {
        return this.warehouseList.filter(item => item.tradeType == '1' || item.type == '3')
wanglianghe's avatar
wanglianghe committed
245 246 247 248 249 250 251 252 253 254 255 256 257 258
      },

      getCabinetName() {
        return cabinetId => {
          for (let index in this.cabinetList) {
            let cabinetItem = this.cabinetList[index];
            if (cabinetItem.id == cabinetId) {
              return cabinetItem.name;
            }
          }
          return '/'
        }
      }

wh's avatar
wh committed
259
    },
wh's avatar
wh committed
260
    created() {
261 262 263 264 265

      this.transportTypes = this.transportTypes.filter(item => item.value == '1' || item.value == '2');
      

      getWarehouseList().then(res => this.warehouseList = res.data);
wh's avatar
wh committed
266
      getCabinetPage(null).then(response => {
wanglianghe's avatar
wanglianghe committed
267
        this.cabinetList = response.data.list;
wh's avatar
wh committed
268
      });
wh's avatar
wh committed
269
      this.getList();
wh's avatar
wh committed
270
    },
wh's avatar
wh committed
271
    methods: {
wanglianghe's avatar
wanglianghe committed
272

wh's avatar
wh committed
273 274 275 276 277
      /** 查询列表 */
      getList() {
        this.loading = true;
        // 处理查询参数
        let params = {...this.queryParams};
278
        params.transportTypeList = ['1', '2'];
wh's avatar
wh committed
279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295
        this.addBeginAndEndTime(params, this.dateRangeCreateTime, 'createTime');
        // 执行查询
        getboxPage(params).then(response => {
          this.list = response.data.list;
          this.total = response.data.total;
          this.loading = false;
        });
      },
      /** 取消按钮 */
      cancel() {
        this.open = false;
        this.reset();
      },
      /** 表单重置 */
      reset() {
        this.form = {
          id: undefined,
wanglianghe's avatar
wanglianghe committed
296 297 298 299
          cabinetId: undefined,
          startWarehouseId: undefined,
          destWarehouseId: undefined,
          transportType: undefined,
wh's avatar
wh committed
300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335
        };
        this.resetForm("form");
      },
      /** 搜索按钮操作 */
      handleQuery() {
        this.queryParams.pageNo = 1;
        this.getList();
      },
      /** 重置按钮操作 */
      resetQuery() {
        this.dateRangeCreateTime = [];
        this.resetForm("queryForm");
        this.handleQuery();
      },
      /** 新增按钮操作 */
      handleAdd() {
        this.reset();
        this.open = true;
        this.title = "添加出货";
      },
      /** 修改按钮操作 */
      handleUpdate(row) {
        this.reset();
        const id = row.id;
        getbox(id).then(response => {
          this.form = response.data;
          this.open = true;
          this.title = "修改出货";
        });
      },
      /** 提交按钮 */
      submitForm() {
        this.$refs["form"].validate(valid => {
          if (!valid) {
            return;
          }
wanglianghe's avatar
wanglianghe committed
336

wh's avatar
wh committed
337 338 339 340 341 342 343 344 345 346 347 348
          // 修改的提交
          if (this.form.id != null) {
            updatebox(this.form).then(response => {
              this.$modal.msgSuccess("修改成功");
              this.open = false;
              this.getList();
            });
            return;
          }
          // 添加的提交
          createbox(this.form).then(response => {
            this.$modal.msgSuccess("新增成功");
wh's avatar
wh committed
349 350 351 352
            this.open = false;
            this.getList();
          });
        });
wh's avatar
wh committed
353 354 355 356 357
      },
      /** 删除按钮操作 */
      handleDelete(row) {
        const id = row.id;
        this.$modal.confirm('是否确认删除出货编号为"' + id + '"的数据项?').then(function () {
wh's avatar
wh committed
358
          return deletebox(id);
wh's avatar
wh committed
359 360 361
        }).then(() => {
          this.getList();
          this.$modal.msgSuccess("删除成功");
wh's avatar
wh committed
362 363 364 365 366 367 368 369 370 371 372 373
        }).catch(() => {
        });
      },
      /** 导出按钮操作 */
      handleExport() {
        // 处理查询参数
        let params = {...this.queryParams};
        params.pageNo = undefined;
        params.pageSize = undefined;
        this.addBeginAndEndTime(params, this.dateRangeCreateTime, 'createTime');
        // 执行导出
        this.$modal.confirm('是否确认导出所有出货数据项?').then(() => {
wh's avatar
wh committed
374
          this.exportLoading = true;
wh's avatar
wh committed
375
          return exportboxExcel(params);
wh's avatar
wh committed
376 377 378
        }).then(response => {
          this.$download.excel(response, '${table.classComment}.xls');
          this.exportLoading = false;
wh's avatar
wh committed
379 380
        }).catch(() => {
        });
381 382 383 384 385
      },
      /** 查看按钮操作 */
      handleCommand(row, command) {
        switch (command) {
          case 'sea':
huhaiiqng's avatar
huhaiiqng committed
386
            this.$router.push('/boxSea/shippingSea/' + row.id)
387
            break;
388 389 390 391 392 393 394 395

          case 'edit':
            this.handleUpdate(row);
            break;

          case 'delete':
            this.handleDelete(row);
            break;
396 397
        }
      },
wh's avatar
wh committed
398
    }
wh's avatar
wh committed
399
  };
wh's avatar
wh committed
400
</script>