审查视图

src/views/nmms/ExitLoading.vue 45.8 KB
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
<template>
    <!--<div class="app-container">-->
    <div>
        <div>
            <el-row class="row-bg">
                <el-col :span="24">
                    <div class="grid-content content">航班信息</div>
                </el-col>
                <el-col :span="24">
                    <div class="grid-content co">
                        <el-col :span="1">
                            <div class="grid-content"></div>
                        </el-col>
                        <el-col :span="20">
                            <div class="grid-content">
                                <span class="titleSpan">航班号:{{this.loadingQuery.carrier}}{{this.loadingQuery.flightno}}</span>
                                <span class="titleSpan">航班日期:{{this.loadingQuery.flightdate}}</span>
                                <span class="titleSpan">航段:{{this.loadingQuery.originstation}}-{{this.loadingQuery.destinationstation}}</span>
                            </div>
                        </el-col>
                    </div>
                </el-col>
                <el-col :span="24">
24
                    <div class="grid-content content">出港装载查询</div>
25 26 27 28 29 30 31 32 33 34
                </el-col>
                <el-col :span="24">
                    <div class="grid-content co">
                        <el-col :span="1">
                            <div class="grid-content"></div>
                        </el-col>
                        <el-col :span="22">
                            <div class="grid-content">
                                <el-col :span="4">
                                    <div class="grid-content">
35 36 37
                                        <el-input clearable v-model="loadingQuery.awba" placeholder="请输入主单号">
                                            <template slot="prepend">主单号</template>
                                        </el-input>
38 39 40 41
                                    </div>
                                </el-col>
                                <div class="el-btn">
                                    <el-button type="primary" size="mini" @click="handleSearch">查询</el-button>
42
                                    <el-button v-if="loadingQuery.flightno === undefined && loadingData.length <1"
43 44 45 46 47 48 49 50 51 52 53
                                               type="primary" size="mini" @click="handleAddLoading">新增装载
                                    </el-button>
                                </div>
                            </div>
                        </el-col>
                    </div>
                </el-col>
                <el-col :span="24">
                    <div class="grid-content content" style="margin-top: 6px">出港装载明细</div>
                </el-col>
            </el-row>
朱兆平 authored
54
            <el-table v-loading="listLoading" :data="loadingData" stripe style="font-size: 12px"
55 56
                      border @selection-change="handleSelectionChange">
                <el-table-column type="selection" width="60"></el-table-column>
57
                <el-table-column label="主单号" width="160" align="center">
58
                    <template slot-scope="scope">
59
                        <a type="text" style="color: #409eff;text-decoration: underline" class="tableInline" @click="handleEdit(scope.row)">{{scope.row.awba}}</a>
60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81
                    </template>
                </el-table-column>
                <el-table-column label="运载件数" width="70" align="center">
                    <template slot-scope="scope">
                        <span>{{scope.row.lodingpiece}}</span>
                    </template>
                </el-table-column>
                <el-table-column label="运载重量" width="70" align="center">
                    <template slot-scope="scope">
                        <span>{{scope.row.lodingweight}}</span>
                    </template>
                </el-table-column>
                <el-table-column label="货物描述" width="120" align="center">
                    <template slot-scope="scope">
                        <span>{{scope.row.goodsname}}</span>
                    </template>
                </el-table-column>
                <el-table-column label="装载时间" width="150" align="center">
                    <template slot-scope="scope">
                        <span>{{scope.row.loadingtime}}</span>
                    </template>
                </el-table-column>
shenhailong authored
82
                <el-table-column label="状态" width="200" align="center">
83
                    <template slot-scope="scope">
84 85 86
                        <span v-if="scope.row.status ==='01'">接受申报</span>
                        <span v-if="scope.row.status ==='02'">待人工审核</span>
                        <span v-if="scope.row.status ==='03'">退单</span>
87 88 89 90 91 92
                        <span v-if="scope.row.status ==='05'">舱单报退单</span>
                        <span v-if="scope.row.status ==='06'">舱单转人工</span>
                        <span v-if="scope.row.status ==='07'">舱单报申报成功</span>
                        <span v-if="scope.row.status ==='08'">已发舱单删除报</span>
                        <span v-if="scope.row.status ==='09'">舱单删除报退单</span>
                        <span v-if="scope.row.status ==='10'">舱单删除报转人工</span>
93 94 95
                        <span v-if="scope.row.status ==='11'">放行</span>
                        <span v-if="scope.row.status ==='12'">拒装</span>
                        <span v-if="scope.row.status ==='13'">禁卸</span>
96 97 98
                        <span v-if="scope.row.status ==='14'">舱单修改报转人工</span>
                        <span v-if="scope.row.status ==='15'">舱单修改报成功</span>
                        <span v-if="scope.row.status ==='16'">海关已存在</span>
99 100 101 102 103
                        <span v-if="scope.row.status ==='21'">可自动发送</span>
                        <span v-if="scope.row.status ==='22'">未发送</span>
                        <span v-if="scope.row.status ==='23'">已发送新增报</span>
                        <span v-if="scope.row.status ==='24'">已发送删除报</span>
                        <span v-if="scope.row.status ==='25'">已发送修改报</span>
104 105
                    </template>
                </el-table-column>
shenhailong authored
106
                <el-table-column label="回执信息" width="270" align="center">
107 108 109 110
                    <template slot-scope="scope">
                        <span>{{scope.row.ext5}}</span>
                    </template>
                </el-table-column>
111
                <el-table-column label="操作" align="center" fixed="right">
112 113
                    <template slot-scope="scope">
                        <el-button size="mini" @click="handleSend(scope.row)">收发明细</el-button>
114
115 116
<!--                        <el-button size="mini" type="success" @click="handleEdit(scope.row)" >编辑-->
<!--                        </el-button>-->
117
118
                        <el-button size="mini" type="primary" @click="handleSendAwb(scope.row)"
119
                                   :disabled="scope.row.status ==='23'">发送出港装载报
120
                        </el-button>
121 122

                        <br><br>
123 124
                        <el-button size="mini" type="danger" v-if="isAdmin" @click="handleAwbDelete(scope.row)">删除运单
                        </el-button>
125
126
                        <el-button size="mini" type="warning" @click="handleAwbStatus(scope.row)"
127
                                   :disabled="scope.row.status ==='22'">更改状态
128
                        </el-button>
129
130
                        <el-button size="mini" type="danger" @click="handleSendDelete(scope.row)"
131
                                   :disabled="scope.row.status ==='24'">发送删除报
132 133
                        </el-button>
134 135
                    </template>
                </el-table-column>
136
            </el-table>
137 138 139
            <div class="btnFoot">
                <el-row>
                    <el-button type="primary" size="mini"
140
                               v-if="loadingQuery.flightno !== undefined || loadingData.length >0"
141 142
                               @click="handelAddLoadingInfo">新增出港装载
                    </el-button>
143 144 145 146
                    <el-button type="primary" size="mini"
                               v-if="loadingQuery.flightno !== undefined || loadingData.length>0"
                               @click="handelBackStep">返回
                    </el-button>
147 148
                </el-row>
            </div>
149
            <pagination background layout="total, prev, pager, next" v-show="total>0" :total="total" :page.sync="loadingQuery.pageSize" :limit.sync="loadingQuery.limitSize"
150 151 152 153 154 155 156 157 158 159 160
                        @pagination="getList"/>

            <el-dialog :title="dialogMap[dialogStatus]" :visible.sync="dialogFormVisible">
                <el-form ref="loadingFormData" :model="loadingModel" :rules="loadingRoles" label-position="right"
                         label-width="90px">
                    <div class="grid-content content">
                        <span>航班信息</span>
                    </div>
                    <el-row>
                        <el-col :span="7.5">
                            <el-form-item label="主单号" prop="awba">
161
                                <el-input v-model="loadingModel.awba" :disabled="dialogStatus ==='update'"></el-input>
162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179
                            </el-form-item>
                        </el-col>
                        <el-col :span="7.5">
                            <el-form-item label="承运人" prop="carrier">
                                <el-input v-model="carrier" :disabled="dialogStatus ==='update'"></el-input>
                            </el-form-item>
                        </el-col>
                        <el-col :span="7.5">
                            <el-form-item label="航班号" prop="flightno">
                                <el-input v-model="flightno" :disabled="dialogStatus ==='update'"></el-input>
                            </el-form-item>
                        </el-col>

                    </el-row>
                    <el-row>

                        <el-col :span="7.5">
                            <el-form-item label="起始站" prop="originstation">
180
                                <el-select filterable clearable placeholder="请选择起始站" :remote-method="remoteMethodAirport"
181
                                           allow-create v-model="originstation" remote :disabled="dialogStatus ==='update'">
182 183 184 185 186 187 188
                                    <el-option v-for="item in airportCode"
                                               :key="item.airportid" :label="item.airportid"
                                               :value="item.airportid" :disabled="dialogStatus === 'update'">
                                        <span style="float: left">{{ item.airportdescchn }}</span>
                                        <span style="float: right; color: #8492a6; font-size: 13px">{{ item.airportid }}</span>
                                    </el-option>
                                </el-select>
189 190 191
                            </el-form-item>
                        </el-col>
                        <el-col :span="7.5">
朱兆平 authored
192
                            <el-form-item label="目的站" prop="destinationstation">
193
                                <el-select filterable clearable placeholder="请选择起始站" :remote-method="remoteMethodAirport"
194
                                           allow-create v-model="destinationstation" remote :disabled="dialogStatus ==='update'">
195 196 197 198 199 200 201
                                    <el-option v-for="item in airportCode"
                                               :key="item.airportid" :label="item.airportid"
                                               :value="item.airportid" :disabled="dialogStatus === 'update'">
                                        <span style="float: left">{{ item.airportdescchn }}</span>
                                        <span style="float: right; color: #8492a6; font-size: 13px">{{ item.airportid }}</span>
                                    </el-option>
                                </el-select>
202 203 204 205 206 207 208 209 210 211 212 213 214 215
                            </el-form-item>
                        </el-col>
                        <el-col :span="7.5">
                            <el-form-item label="航班日期" prop="flightdate">
                                <el-date-picker v-model="loadingModel.flightdate" value-format="yyyy-MM-dd" type="date"
                                                placeholder="请输入" :disabled="dialogStatus ==='update'"></el-date-picker>
                            </el-form-item>
                        </el-col>
                    </el-row>
                    <div class="grid-content content">
                        <span>货物信息</span>
                    </div>
                    <el-row>
                        <el-col :span="7.5">
朱兆平 authored
216
                            <el-form-item label="装载件数" prop="lodingpiece">
217 218 219 220
                                <el-input v-model.number="loadingModel.lodingpiece"></el-input>
                            </el-form-item>
                        </el-col>
                        <el-col :span="7.5">
朱兆平 authored
221 222
                            <el-form-item label="装载重量" prop="lodingweight">
                                <el-input v-model="loadingModel.lodingweight"></el-input>
223 224 225 226 227 228 229 230 231 232 233 234
                            </el-form-item>
                        </el-col>
                        <el-col :span="7.5">
                            <el-form-item label="装载时间" prop="loadingtime">
                                <el-date-picker v-model="loadingModel.loadingtime" value-format="yyyy-MM-dd HH:mm:ss"
                                                type="datetime"
                                                placeholder="请输入"></el-date-picker>
                            </el-form-item>
                        </el-col>
                    </el-row>
                    <el-row>
                        <el-col :span="7.5">
朱兆平 authored
235 236
                            <el-form-item label="运单件数" prop="awbprice">
                                <el-input v-model.number="loadingModel.awbprice"></el-input>
237 238 239
                            </el-form-item>
                        </el-col>
                        <el-col :span="7.5">
朱兆平 authored
240
                            <el-form-item label="运单重量" prop="awbweight">
zhangFan authored
241
                                <el-input v-model="loadingModel.awbweight"></el-input>
242 243 244 245
                            </el-form-item>
                        </el-col>
                        <el-col :span="7.5">
                            <el-form-item label="海关关区" prop="customcode">
246 247
                                <el-select v-model="loadingModel.customcode"  placeholder="请选择关区代码"
                                           filterable clearable remote :remote-method="remoteMethodCustomCode" :loading="customLoading"
朱兆平 authored
248
                                           allow-create
249
                                           default-first-option>
250 251 252 253 254
                                    <el-option v-for="item in customCodeList" :key="item.customcode" :label="item.customcode"
                                               :value="item.customcode">
                                        <span style="float: left">{{ item.customcode }}</span>
                                        <span style="float: right; color: #8492a6; font-size: 13px">{{ item.customname }}</span>
                                    </el-option>
255 256 257 258 259 260
                                </el-select>
                            </el-form-item>
                        </el-col>
                    </el-row>
                    <el-row>
                        <el-col :span="7.5">
朱兆平 authored
261
                            <el-form-item label="特货代码" prop="specialgoods">
262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278
                                <el-input v-model="loadingModel.specialgoods"></el-input>
                            </el-form-item>
                        </el-col>
                        <el-col :span="7.5">
                            <el-form-item label="货物描述" prop="goodsname">
                                <el-input v-model="goodsname" placeholder="请输入"></el-input>
                            </el-form-item>
                        </el-col>
                    </el-row>
                </el-form>
                <div slot="footer" class="dialog-footer">
                    <el-button @click="dialogFormVisible = false">取消</el-button>
                    <el-button type="primary" @click="dialogStatus==='create'?createData():updateData()">保存</el-button>
                </div>
            </el-dialog>
            <el-dialog title="收发明细" :visible.sync="dialogTableVisible">
                <el-table :data="detailData" border>
279
                    <el-table-column label="操作时间" width="180">
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
                        <template slot-scope="scope">
                            {{scope.row.busdate}}
                        </template>
                    </el-table-column>
                    <el-table-column label="航班号" width="80">
                        <template slot-scope="scope">
                            {{scope.row.carrier}}{{scope.row.flightno}}
                        </template>
                    </el-table-column>
                    <el-table-column label="航班日期" width="100">
                        <template slot-scope="scope">
                            {{scope.row.flightdate}}
                        </template>
                    </el-table-column>
                    <el-table-column label="件数" width="70">
                        <template slot-scope="scope">
                            {{scope.row.buspiece}}
                        </template>
                    </el-table-column>
                    <el-table-column label="重量" width="70">
                        <template slot-scope="scope">
                            {{scope.row.busweight}}
                        </template>
                    </el-table-column>
                    <el-table-column label="回执信息" width="">
                        <template slot-scope="scope">
                            {{scope.row.cusrestext}}
                        </template>
                    </el-table-column>
309 310 311 312 313
                    <el-table-column label="操作类型" width="100">
                        <template slot-scope="scope">
                            {{scope.row.opertype}}
                        </template>
                    </el-table-column>
314 315
                    <el-table-column label="操作人" width="100">
                        <template slot-scope="scope">
316
                            {{scope.row.operusername}}
317 318 319 320
                        </template>
                    </el-table-column>
                </el-table>
            </el-dialog>
321
            <el-dialog title="删除原因" :visible.sync="dialogDeleteVisible" width="50%">
322 323 324
<!--                <div style="">-->
<!--                    <el-button type="success" @click="historyList()">选择历史消息</el-button>-->
<!--                </div>-->
325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344
                <el-form ref="loadingDeleteForm" :model="respModel" :rules="loadingDeleteRules"
                         label-width="120px" style="margin-right: 50px">
                    <el-form-item label="删除原因" prop="reason">
                        <el-input v-model="respModel.reason" placeholder="删除原因"></el-input>
                    </el-form-item>
                    <el-form-item label="删除操作人" prop="contactName">
                        <el-input v-model="respModel.contactName" placeholder="操作人姓名"></el-input>
                    </el-form-item>
                    <el-form-item label="操作人Tel" prop="contactTel">
                        <el-input v-model="respModel.contactTel" placeholder="删除操作人联系方式"></el-input>
                    </el-form-item>
                    <el-form-item label="备注">
                        <el-input v-model="respModel.content" type="textarea"></el-input>
                    </el-form-item>
                </el-form>
                <div slot="footer" class="dialog-footer">
                    <el-button @click="dialogDeleteVisible = false">取消</el-button>
                    <el-button type="primary" @click="sendLoadingDelete()">发送</el-button>
                </div>
            </el-dialog>
345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361
            <el-dialog title="历史信息" :visible.sync="historyDialog" width="50%">
                <el-table v-loading="listLoading" :data="historyData" stripe style="font-size: 12px"
                          border >

                        <el-table-column prop="operperson" label="删除原因" />
                        <el-table-column prop="operreason" label="删除操作人" />
                        <el-table-column prop="opertel" label="操作人Tel"/>
                    <el-table-column label="操作">
                    <template slot-scope="scope">
                        <el-button type="success" @click="historyEcho(scope.row)">选择</el-button>
                    </template>
                    </el-table-column>
                </el-table>
                <pagination background layout="total, prev, pager, next" v-show="historyTotal>0" :total="historyTotal" :page.sync="historyQuery.pageSize" :limit.sync="historyQuery.limitSize"
                            @pagination="historyList()"/>
            </el-dialog>
362 363 364 365 366
        </div>
    </div>
</template>
<script>
    import Pagination from '@/components/Pagination'
367 368 369
    import {getCustomCode,getAirportCode} from "@/api/country";
    import {
        getMt4201ListForParam, deleteByIsDelete, updateStatus,
370
        updateMT4201, addMt4201, sendCreateMt4201, sendDeleteMt4201, test
371
    } from '@/api/exitLoading'
372
    import {getHistoryList} from '@/api/history/history';
373
    import {Message} from "element-ui"
374
    import {loginedUserInfo} from "../../api/user";
375 376 377 378 379
    import {
        validAwb,
        validAlphabets,
        validAlphabetsAndNum,
        validAlphabetsAndSpanceKey,
朱兆平 authored
380 381
        validatorNum,
        validatorCustomsNum
382
    } from "@/utils/validate"
383
    import {getResponseForParam} from '@/api/responseDetail'
384 385
    export default {
        name: "ExitLoading",
386
        components: { Pagination},
387 388 389 390
        inject: ['reload'],
        data() {
            const validatorAwb = (rule, value, callback) => {
                if (!validAwb(value)) {
朱兆平 authored
391
                    callback("请正确书写主单号格式为xxx-xxxxxxxx")
392 393 394 395 396 397 398 399 400 401 402 403 404 405 406
                }
                callback()
            }
            const validatorAwbh = (rule, value, callback) => {
                if (!validAlphabetsAndNum(value)) {
                    callback("只能输入字母和数字")
                }
                callback()
            }
            const validatorAlphabets = (rule, value, callback) => {
                if (!validAlphabets(value)) {
                    callback("只能输入字母")
                }
                callback()
            }
407 408
            const validAlphabetsSpanceKey = (rule, value, callback) => {
                if (!validAlphabetsAndSpanceKey(value)) {
409 410 411 412
                    callback("只能输入字母、数字、空格")
                }
                callback()
            }
zhangFan authored
413 414 415 416 417 418
            const validatorNums = (rule, value, callback) => {
                if (!validatorNum(value)) {
                    callback("只能输入数字,并且小数位最多两位")
                }
                callback()
            }
朱兆平 authored
419 420 421 422 423 424
            const validatorCustomsNums = (rule, value, callback) => {
                if (!validatorCustomsNum(value)) {
                    callback(new Error("只能输入4位数字"))
                }
                callback()
            }
425
            return {
426
                total: 0,
427
                historyTotal: 0,
428
                isAdmin: false,
429 430 431 432
                dialogMap: {
                    update: '编辑出港装载',
                    create: '添加出港装载',
                },
433 434
                customCodeList: [],
                airportCode:[],
435
                historyData: [],
436 437 438
                dialogStatus: undefined,
                dialogTableVisible: false,
                dialogFormVisible: false,
439
                dialogDeleteVisible: false,
440
                historyDialog: false,
441
                customLoading: false,
442 443 444
                listLoading: false,
                loadingQuery: {
                    pageSize: 1,
445
                    limitSize: 10,
446 447 448 449 450 451
                    awba: undefined,
                    carrier: undefined,
                    flightno: undefined,
                    flightdate: undefined,
                    originstation: undefined,
                    destinationstation: undefined,
452 453
                    customcode: undefined,
                    messageType: undefined
454
                },
455 456 457 458
                historyQuery: {
                    pageSize: 1,
                    limitSize: 5,
                },
459 460 461 462 463 464
                loadingRoles: {
                    awba: [{required: true, trigger: 'blur', validator: validatorAwb}],
                    awbh: [{required: true, trigger: 'blur', validator: validatorAwbh}],
                    goodsname: [{required: true, trigger: 'blur', validator: validAlphabetsSpanceKey}],
                    carrier: [{required: true, trigger: 'blur', validator: validatorAwbh}],
                    flightno: [{required: true, trigger: 'blur', validator: validatorAwbh}],
朱兆平 authored
465 466
                    flightdate: [{required: true, trigger: 'blur'}],
                    loadingtime: [{required: true, trigger: 'blur'}],
467 468
                    originstation: [{required: true, trigger: 'blur', validator: validatorAlphabets}],
                    destinationstation: [{required: true, trigger: 'blur', validator: validatorAlphabets}],
朱兆平 authored
469 470 471 472 473 474
                    lodingpiece: [{type: 'number',required: true, trigger: 'change', message: '只能输入数字'}],
                    lodingweight: [{required: true, trigger: 'change', message: '只能输入数字,并且小数位最多两位',validator: validatorNums}],
                    customcode: [
                        {required: true, message: '关区号不能为空'},
                        {validator: validatorCustomsNums,trigger: 'change',message: '关区号为4位整数'}
                    ]
475 476 477 478
                },
                loadingData: [],
                detailData: [],
                loadingModel: {
479
                    carrier: undefined,
480 481 482 483 484 485 486 487 488 489 490 491 492
                    flightno: undefined,
                    flightdate: undefined,
                    originstation: undefined,
                    destinationstation: undefined,
                    awba: undefined,
                    lodingpiece: undefined,
                    lodingweight: undefined,
                    goodsname: undefined,
                    customcode: undefined,
                    specialgoods: undefined,
                    loadingtime: undefined,
                    messageType: 'MT4201',
                    awbprice: undefined,
493 494 495 496 497
                    awbweight: undefined,
                    reason: undefined,
                    contactName: undefined,
                    contactTel: undefined,
                    content: undefined,
498
                    user: {
499
                        username : loginedUserInfo().username
500
                    }
501 502 503 504 505 506 507 508 509 510 511
                },
                respModel: {
                    uuid: undefined,
                    reason: undefined,
                    contactName: undefined,
                    contactTel: undefined,
                    content: '',
                    flightNo: undefined,
                    awba: undefined,
                    customCode: undefined,
                    flightDate: undefined,
512
                    awbh: '',
513 514
                },
                loadingDeleteRules: {
515 516 517 518 519 520 521 522 523 524 525 526 527 528
                    reason:[{required:true,message:'原因不能为空',trigger:'blur'}],
                    contactName:[{required:true,message:'操作人不能为空',trigger:'blur'}],
                    contactTel:[
                        { required: true, message: '手机号不能为空', trigger: 'blur' },
                        { type: 'number', message: '手机号格式不正确', trigger: 'blur',
                            transform(value){
                                var phone = 11 && /^((13|14|15|16|17|18|19)[0-9]{1}\d{8})$/
                                if (!phone.test(value)){
                                    return false;
                                }else {
                                    return Number(value);
                                }
                            }}
                    ],
529
                },
530 531 532 533 534 535 536 537 538 539 540 541 542 543 544
            }
        },
        created() {
            if (this.$route.params.flightData !== undefined) {
                // 给查询条件赋值
                if (this.$route.params.flightData.awba !== undefined && this.$route.params.flightData.awba !== '') {
                    this.loadingQuery.awba = this.$route.params.flightData.awba.substring(0, 3) + '-' + this.$route.params.flightData.awba.substring(3)
                }
                this.loadingQuery.carrier = this.$route.params.flightData.flightno.substring(0, 2)
                this.loadingQuery.flightno = this.$route.params.flightData.flightno.substring(2)
                this.loadingQuery.flightdate = this.$route.params.flightData.flightdate
                this.loadingQuery.originstation = this.$route.params.flightData.originstation
                this.loadingQuery.destinationstation = this.$route.params.flightData.destinationstation
                this.getList()
            }
545
            let username = loginedUserInfo().username
546
            if (username === 'admin') {
zhangFan authored
547 548
                this.isAdmin = true
            }
549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592
        },
        computed: {
            carrier: {
                get: function () {
                    return this.loadingModel.carrier
                },
                set: function (val) {
                    this.loadingModel.carrier = val.toUpperCase().trim()
                }
            },
            goodsname: {
                get: function () {
                    return this.loadingModel.goodsname
                },
                set: function (val) {
                    this.loadingModel.goodsname = val.toUpperCase().trim()
                }
            },
            flightno: {
                get: function () {
                    return this.loadingModel.flightno
                },
                set: function (val) {
                    this.loadingModel.flightno = val.toUpperCase().trim()
                }
            },
            originstation: {
                get: function () {
                    return this.loadingModel.originstation
                },
                set: function (val) {
                    this.loadingModel.originstation = val.toUpperCase().trim()
                }
            },
            destinationstation: {
                get: function () {
                    return this.loadingModel.destinationstation
                },
                set: function (val) {
                    this.loadingModel.destinationstation = val.toUpperCase().trim()
                }
            }
        },
        methods: {
593 594 595


596 597 598 599
            getList() {
                this.listLoading = true
                if (this.loadingQuery.awba !== undefined && this.loadingQuery.awba !== '') {
                    getMt4201ListForParam(this.loadingQuery).then(res => {
600 601 602
                        this.loadingData = res.data.data.list
                        this.total = res.data.data.total
                        if (res.data.data.total > 0) {
603 604 605 606 607 608 609 610 611 612 613 614 615
                            this.loadingQuery.carrier = this.loadingData[0].carrier
                            this.loadingQuery.flightno = this.loadingData[0].flightno
                            this.loadingQuery.flightdate = this.loadingData[0].flightdate
                            this.loadingQuery.originstation = this.loadingData[0].originstation
                            this.loadingQuery.destinationstation = this.loadingData[0].destinationstation
                            this.loadingQuery.customcode = this.loadingData[0].customcode
                        }
                        setTimeout(() => {
                            this.listLoading = false
                        }, 1.5 * 1000)
                    })
                } else {
                    getMt4201ListForParam(this.loadingQuery).then(res => {
616 617
                        this.loadingData = res.data.data.list
                        this.total = res.data.data.total
618 619 620 621 622 623 624 625 626 627 628 629 630
                        setTimeout(() => {
                            this.listLoading = false
                        }, 1.5 * 1000)
                    })
                }

            },
            // 多选
            handleSelectionChange() {

            },
            // 查询
            handleSearch() {
王勇 authored
631 632 633 634 635
                // this.loadingQuery.carrier = undefined
                // this.loadingQuery.flightno = undefined
                // this.loadingQuery.originstation = undefined
                // this.loadingQuery.flightdate = undefined
                // this.loadingQuery.destinationstation = undefined
636 637 638
                this.getList()
            },
            // 收发明细
639
            handleSend(row) {
640 641 642 643
                const resQuery = {
                    carrier: row.carrier,
                    flightNo: row.flightno,
                    flightDate: row.flightdate,
644
                    opertype: row.opertype,
645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664
                    awba: row.awba,
                    awbh: row.awbh,
                    messageType: 'MT4201'
                }
                this.dialogTableVisible = true
                getResponseForParam(resQuery).then(res => {
                    this.detailData = res.data
                })
            },
            // 编辑 弹框
            handleEdit(row) {
                this.loadingModel = Object.assign({}, row)
                this.dialogStatus = 'update'
                this.dialogFormVisible = true
                this.$nextTick(() => {
                    this.$refs.loadingFormData.clearValidate()
                })
            },
            // 更新数据
            updateData() {
665
                let _this = this;
666 667
                this.$refs.loadingFormData.validate(valid => {
                    if (valid) {
668
                        _this.loadingModel.user= {
669
                            username : loginedUserInfo().username
670
                        }
671 672 673 674 675 676 677 678 679 680 681 682 683 684
                        updateMT4201(this.loadingModel).then(res => {
                            if (res.data.count > 0) {
                                this.dialogFormVisible = false
                                Message.success("数据更新成功")
                                this.getList()
                            } else {
                                Message.error("数据更新失败,请检查数据")
                            }
                        })
                    }
                })
            },

            // 发送舱单报
685
            handleSendAwb(row) {
686
687 688 689 690 691 692 693 694
                this.$confirm("是否发送", "确认消息", {
                    distinguishCancelAndClose: true,
                    confirmButtonText: '发送',
                    cancelButtonText: '取消'
                }).then(() => {
                    if(row.awbh === null || row.awbh === undefined){
                        row.awbh = ''
                    }
695
                    row.user = {
696
                        username : loginedUserInfo().username
697
                    }
698 699 700 701 702 703 704 705 706 707 708
                    sendCreateMt4201(row).then(res => {
                        if (res.data.count > 0) {
                            Message.success(res.data.respMessage)
                            this.getList()
                        }else {
                            Message.success(res.data.respMessage)
                        }
                    })
                }).catch(error =>{
                    Message.error(error.message)
                })
709
            },
710
711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731
            // 查询删除报历史消息
            historyList(){
                this.historyDialog = true;
                this.listLoading = true;
                getHistoryList(this.historyQuery).then(res => {
                    this.historyData = res.data.data.list
                    this.historyTotal = res.data.data.total
                    if (res.data.data.total > 0) {
                    }
                    setTimeout(() => {
                        this.listLoading = false
                    }, 1.5 * 1000)
                })
            },
            // 回显删除报历史消息
            historyEcho(val){
                this.respModel.reason = val.operperson;
                this.respModel.contactName = val.operreason;
                this.respModel.contactTel = val.opertel;
                this.historyDialog = false;
            },
732 733 734
            // 发送删除报
            handleSendDelete(row) {
                this.respModel = {
735
                    carrier: undefined,
736 737 738 739 740 741 742 743
                    reason: undefined,
                    contactName: undefined,
                    contactTel: undefined,
                    content: '',
                    flightNo: undefined,
                    awba: undefined,
                    customCode: undefined,
                    flightDate: undefined,
744
                    awbh: '',
745
                    username: loginedUserInfo().username,
746 747
                }
                this.dialogDeleteVisible = true
748 749
                this.respModel.carrier = row.carrier
                this.respModel.flightNo = row.flightno
750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778
                this.respModel.awba = row.awba
                this.respModel.customCode = row.customcode
                this.respModel.flightDate = row.flightdate
                if(row.awbh ===null){
                    this.respModel.awbh = ''
                }else {
                    this.respModel.awbh = row.awbh
                }
                this.$nextTick(() => {
                    this.$refs.loadingDeleteForm.clearValidate()
                })
            },

            sendLoadingDelete() {
                this.$refs.loadingDeleteForm.validate(valid => {
                    if (valid) {
                        sendDeleteMt4201(this.respModel).then(res => {
                            if (res.data.count > 0) {
                                Message.success(res.data.respMessage)
                                this.dialogDeleteVisible = false
                                this.getList()
                            } else {
                                Message.success(res.data.respMessage)
                            }
                        })
                    }
                })
            },
            // 删除
779
            handleAwbDelete(row) {
780 781 782
                row.user = {
                    username : loginedUserInfo().username
                }
783 784 785 786 787 788
                this.$confirm("是否删除", "确认消息", {
                    distinguishCancelAndClose: true,
                    confirmButtonText: '删除',
                    cancelButtonText: '取消'
                }).then(() => {
                    deleteByIsDelete(row).then(res => {
789
                        if (res.data.code == "200") {
790 791
                            this.$message({
                                type: 'success',
792
                                message: res.data.msg
793 794 795 796 797
                            })
                            this.getList()
                        } else {
                            this.$message({
                                type: 'danger',
798
                                message: res.data.msg
799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817
                            })
                        }
                    })
                }).catch(action => {
                    this.$message({
                        type: 'info',
                        message: action === 'cancel'
                            ? '取消删除'
                            : '删除取消'
                    })
                })
            },
            // 更改当前运单发送状态
            handleAwbStatus(row) {
                this.$confirm("是否发送更改状态", "确认消息", {
                    distinguishCancelAndClose: true,
                    confirmButtonText: '确认更改',
                    cancelButtonText: '取消更改'
                }).then(() => {
818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834
                    if (row.status!==22){
                        row.status =22;
                    }
                    // updateStatus(row).then(res => {
                    //     if (res.data.count > 0) {
                    //         this.$message({
                    //             type: 'success',
                    //             message: '当前运单状态已更改'
                    //         })
                    //         this.getList()
                    //     } else {
                    //         this.$message({
                    //             type: 'error',
                    //             message: '状态更改失败,请稍后重试'
                    //         })
                    //     }
                    // })
835 836 837 838 839 840 841 842 843 844 845 846 847

                }).catch(action => {
                    this.$message({
                        type: 'info',
                        message: action === 'cancel'
                            ? '取消状态更改'
                            : '状态更改取消'
                    })
                })
            },
            // 重置实体
            restModel() {
                this.loadingModel = {
848
                    carrier: undefined,
849 850 851 852 853 854 855 856 857 858 859 860 861
                    flightno: undefined,
                    flightdate: undefined,
                    originstation: undefined,
                    destinationstation: undefined,
                    awba: undefined,
                    lodingpiece: undefined,
                    lodingweight: undefined,
                    goodsname: undefined,
                    customcode: undefined,
                    specialgoods: undefined,
                    loadingtime: undefined,
                    messageType: 'MT4201',
                    awbprice: undefined,
862 863
                    awbweight: undefined,
                    user: {
864
                        username : loginedUserInfo().username,
865
                    }
866 867 868 869 870 871 872 873 874 875 876 877 878 879
                }
            },
            // 新增出港装载 弹框
            handelAddLoadingInfo() {
                this.restModel()
                // 给model赋值,所使用数据是以单独单号查询数据所得
                this.loadingModel.carrier = this.loadingQuery.carrier
                this.loadingModel.flightdate = this.loadingQuery.flightdate
                this.loadingModel.flightno = this.loadingQuery.flightno
                this.loadingModel.originstation = this.loadingQuery.originstation
                this.loadingModel.destinationstation = this.loadingQuery.destinationstation
                this.loadingModel.customcode = this.loadingQuery.customcode
                this.dialogStatus = 'create'
                this.dialogFormVisible = true
880
881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900
                this.$nextTick(() => {
                    this.$refs.loadingFormData.clearValidate()
                })
            },
            // 新增出港装载 请求
            createData() {
                this.$refs.loadingFormData.validate(valid => {
                    if (valid) {
                        addMt4201(this.loadingModel).then(res => {
                            if (res.data.count > 0) {
                                this.dialogFormVisible = false
                                Message.success("新增出港装载成功")
                                this.getList()
                            } else {
                                Message.error("数据新增失败,请检查数据")
                            }
                        })
                    }
                })
            },
901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916
            //获取机场三字码
            remoteMethodAirport(query){
                this.airportCode = []
                if (query !== '') {
                    this.listLoading = true
                    getAirportCode({airportid: query}).then(res => {
                        if(res !== null){
                            setTimeout(() => {
                                this.listLoading = false
                                this.airportCode = res.data.data
                            }, 200)
                        }
                    })
                } else {
                    this.airportCode = []
                }
917
            },
918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933
            //关区代码
            remoteMethodCustomCode(query){
                this.customCodeList = []
                if (query !== '') {
                    this.customLoading = true
                    getCustomCode({customcode: query}).then(res => {
                        if(res !== null){
                            setTimeout(() => {
                                this.customLoading = false
                                this.customCodeList = res.data.data
                            }, 200)
                        }
                    })
                } else {
                    this.airportCode = []
                }
934
            },
935 936 937 938 939 940 941
            handleAddLoading() {
                const row = {
                    'messageType': 'MT4201'
                }
                this.$router.push({name: '出港航班信息', params: {scopeRow: row}})
            },
            handelBackStep() {
942 943
                this.loadingQuery.messageType = 'MT4201'
                this.$router.push({name: '出港航班信息', params: {scopeRow: this.loadingQuery}})
944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988
            }
        }
    }

</script>
<style>
    .grid-content {
        height: 36px;
        line-height: 36px;
    }

    .content {
        border-left: 4px #409EFF solid;
        padding-left: 10px;
        background-color: #f9fafc;
        margin-bottom: 2px
    }

    .row-bg, .co {
        background-color: white;
    }

    .titleSpan {
        font-weight: bold;
        margin-right: 35px;
    }

    .el-row {
        margin-top: 10px;
        margin-bottom: 0px;
    }

    .btnFoot {
        margin-top: 10px;
    }

    .el-table td, .el-table th {
        text-align: center
    }

    .el-btn {
        margin-left: 10px;
        display: inline-block;
    }
</style>