Docpan.vue 23.4 KB
Newer Older
潘际乾 committed
1 2
<template>
    <div class="eibs-tab">
潘际乾 committed
3
        <c-col :span="24" style="">
潘际乾 committed
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
            <c-istream-table-docpan :list="stmData.data" :columns="stmData.columns">
            <el-table-column label="报文格式">
                <template slot-scope="scope">
                    <c-select
                        v-model="
                            model.trnmod.trndoc.doceot[scope.row.index].cortyp
                        "
                        style="width: 100%"
                        disabled
                        placeholder="请选择"
                    >
                        <el-option
                            v-for="item in codes.doceotCortyp"
                            :key="item.value"
                            :label="item.label"
                            :value="item.value"
                        >
                        </el-option>
                    </c-select>
                </template>
            </el-table-column>
            <el-table-column label="报文格式">
                <template slot-scope="scope">
                    <c-select
                        v-model="
                            model.trnmod.trndoc.doceot[scope.row.index].docsnf
                        "
                        style="width: 100%"
                        placeholder="请选择"
33
                        @change="executeDefault('trnmod.trndoc.doccur.docsnf')"
潘际乾 committed
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 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128
                    >
                        <el-option
                            v-for="item in codes.docsnf"
                            :key="item.value"
                            :label="item.label"
                            :value="item.value"
                        >
                        </el-option>
                    </c-select>
                </template>
            </el-table-column>
            <el-table-column label="语言" width="150%">
                <template slot-scope="scope">
                    <c-select
                        v-model="
                            model.trnmod.trndoc.doceot[scope.row.index].docuil
                        "
                        style="width: 100%"
                        placeholder="请选择"
                    >
                        <el-option
                            v-for="item in codes.uiltxt"
                            :key="item.value"
                            :label="item.label"
                            :value="item.value"
                        >
                        </el-option>
                    </c-select>
                </template>
            </el-table-column>
            <el-table-column label="传送方式">
                <template slot-scope="scope">
                    <c-select
                        v-model="
                            model.trnmod.trndoc.doceot[scope.row.index].apf
                        "
                        disabled
                        style="width: 100%"
                        placeholder="请选择"
                    >
                        <el-option
                            v-for="item in codes.apftxt"
                            :key="item.value"
                            :label="item.label"
                            :value="item.value"
                        >
                        </el-option>
                    </c-select>
                </template>
            </el-table-column>
            <el-table-column label="Or." width="65%">
                <template slot-scope="scope">
                    <c-input
                        v-model="
                            model.trnmod.trndoc.doceot[scope.row.index].apfcpy1
                        "
                        :readonly="true"
                        style="width: 100%"
                        placeholder="请选择"
                    >
                    </c-input>
                </template>
            </el-table-column>
            <el-table-column label="CC" width="65%">
                <template slot-scope="scope">
                    <c-input
                        v-model="
                            model.trnmod.trndoc.doceot[scope.row.index].apfcpy2
                        "
                        style="width: 100%"
                        placeholder="请选择"
                        
                    >
                    </c-input>
                </template>
            </el-table-column>
            <el-table-column label="">
                <template slot-scope="scope">
                    <c-select
                        v-model="
                            model.trnmod.trndoc.doceot[scope.row.index].staflg
                        "
                        style="width: 100%"
                        placeholder="请选择"
                    >
                        <el-option
                            v-for="item in codes.swttlx"
                            :key="item.value"
                            :label="item.label"
                            :value="item.value"
                        >
                        </el-option>
                    </c-select>
                </template>
            </el-table-column>
liushikai committed
129
            <el-table-column label="操作" width="115px" fixed="right">
潘际乾 committed
130
                <template slot-scope="scope">
131
                    <c-button
liushikai committed
132
                        type="primary"
liushikai committed
133
                        size="small"
潘际乾 committed
134 135 136 137 138
                        :disabled="
                            model.trnmod.trndoc.doceot[scope.row.index]
                                .pandsc == 'MT799' &&
                            model.didgrp.rec.elcflg == 'Y'
                        "
hulei committed
139
                        @click="handleDisplay(scope.row.index, scope.row,model.trnmod.trndoc.doceot[scope.row.index])"
liushikai committed
140 141
                        icon="el-icon-search"
                        style="margin-left:0"
142
                        ></c-button
潘际乾 committed
143
                    >
144
                    <c-button
liushikai committed
145
                        size="small"
liushikai committed
146 147 148
                        type="primary"
                        icon="el-icon-edit"
                        style="margin-left:0"
潘际乾 committed
149
                        @click="handleDetail(scope.row.index, scope.row)"
150
                        ></c-button
潘际乾 committed
151 152 153 154 155
                    >
                </template>
            </el-table-column>
        </c-istream-table-docpan>
        </c-col>
fukai committed
156
        <template>
潘际乾 committed
157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241
            <el-dialog
                :title="title"
                :visible.sync="centerDialogVisible"
                width="60%"
                center
            >
                <el-form label-width="100px" :model="dialog">
                    <c-row>
                        <c-col :span="12">
                            <c-col>
                                <el-form-item label="per-medium"
                                    ><el-input disabled v-model="dialog.cortyp"
                                /></el-form-item>
                            </c-col>
                            <c-col>
                                <el-form-item label="Form Set">
                                    <el-input
                                        disabled
                                        v-model="dialog.cortyp"
                                    />
                                </el-form-item>
                            </c-col>
                            <c-col v-if="title != 'elcs.101.001.01'">
                                <el-form-item>
                                    <el-input
                                        disabled
                                        style="width: 150px"
                                        value="Original"
                                    />
                                    <el-input
                                        v-model="dialog.apfcpy1"
                                        style="width: 100px; margin-left: 20px"
                                    />
                                </el-form-item>
                                <el-form-item>
                                    <el-input
                                        disabled
                                        style="width: 150px"
                                        value="Customer Copy"
                                    />
                                    <el-input
                                        v-model="dialog.apfcpy2"
                                        style="width: 100px; margin-left: 20px"
                                    />
                                </el-form-item>
                                <el-form-item>
                                    <el-input
                                        disabled
                                        style="width: 150px"
                                        value="File Copy"
                                    />
                                    <el-input
                                        v-model="dialog.apfcpy3"
                                        style="width: 100px; margin-left: 20px"
                                    />
                                </el-form-item>
                                <el-form-item>
                                    <el-input
                                        disabled
                                        style="width: 150px"
                                        value="Internal Copy"
                                    />
                                    <el-input
                                        v-model="dialog.apfcpy4"
                                        style="width: 100px; margin-left: 20px"
                                    />
                                </el-form-item>
                            </c-col>
                        </c-col>

                        <c-col :span="12">
                            <el-form-item
                                label="Send Message to"
                                label-width="150px"
                            >
                                <el-input disabled v-model="dialog.roladr" />
                            </el-form-item>
                            <el-form-item
                                label-width="30px"
                                v-if="title != 'elcs.101.001.01'"
                            >
                                <el-input
                                    style="width: 250px"
                                    v-model="dialog.rcv.pts.extkey"
                                />
liushikai committed
242 243
                                <c-button size="small" type="primary" icon="el-icon-search"
                                    ></c-button
潘际乾 committed
244 245
                                >
                                <c-button size="small" type="primary">
liushikai committed
246
                                    详情
潘际乾 committed
247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 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 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 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376
                                </c-button>
                            </el-form-item>
                            <el-form-item v-else label="BIC">
                                <el-input v-model="dialog.rcv.pts.extkey" />
                            </el-form-item>
                            <el-form-item
                                v-if="title == 'elcs.101.001.01'"
                                label="行联行号"
                            >
                                <el-input v-model="dialog.rcv.pts.bankno" />
                            </el-form-item>
                            <el-form-item label-width="30px">
                                <el-input
                                    :value="
                                        title != 'elcs.101.001.01'
                                            ? dialog.rcv.namelc
                                            : dialog.rcv.pts.jigomc
                                    "
                                    :disabled="title != 'elcs.101.001.01'"
                                    type="textarea"
                                    :rows="2"
                                />
                                <br />
                                <el-input
                                    :value="
                                        title != 'elcs.101.001.01'
                                            ? dialog.rcv.adrelc
                                            : dialog.rcv.pts.dizzhii
                                    "
                                    :disabled="title == 'MT799'"
                                    type="textarea"
                                    :rows="2"
                                />
                            </el-form-item>
                            <el-form-item label="Reference" label-width="100px">
                                <el-input disabled v-model="dialog.adrref" />
                            </el-form-item>
                            <el-form-item label="Medium" label-width="100px">
                                <el-input
                                    disabled
                                    style="width: 40%"
                                    v-model="dialog.cortyp"
                                />
                                <el-input
                                    disabled
                                    v-model="dialog.docuil"
                                    style="width: 40%; margin-left: 20px"
                                />
                            </el-form-item>
                        </c-col>

                        <c-col>&nbsp;</c-col>
                        <c-col :span="12" v-if="title != 'MT799'">
                            <el-form-item
                                label="Adress Amend"
                                label-width="120px"
                            >
                                <el-input
                                    type="textarea"
                                    v-model="dialog.adrblk"
                                    :rows="4"
                                />
                            </el-form-item>
                        </c-col>
                        <c-col :span="12" v-else>
                            <el-form-item label="BIC">
                                <el-input disabled v-model="dialog.adrbic" />
                            </el-form-item>
                            <el-form-item label="Authenticator"
                                ><el-input disabled v-model="dialog.adrbicaut"
                            /></el-form-item>
                            <el-form-item label="Priority"
                                ><el-input disabled v-model="dialog.msgpri"
                            /></el-form-item>
                        </c-col>
                        <c-col :span="12">
                            <el-form-item label-width="30px">
                                <el-table
                                    :data="dialog.rcv.ptyinftxt.rows"
                                    size="mini"
                                    stripe
                                    :border="true"
                                    empty-text=" "
                                    max-height="430px"
                                >
                                    <el-table-column label="Corr.Type" sortable>
                                    </el-table-column>
                                    <el-table-column label="Adressing" sortable>
                                    </el-table-column>
                                    <el-table-column
                                        label="Authentication"
                                        sortable
                                    >
                                    </el-table-column>
                                </el-table>
                            </el-form-item>
                        </c-col>
                        <c-col v-if="title != 'MT799'"
                            ><el-form-item label="Letter Date">
                                <el-date-picker
                                    type="date"
                                    v-model="dialog.docdat"
                                >
                                </el-date-picker
                            ></el-form-item>
                        </c-col>
                        <c-col
                            ><el-form-item label="Contact"
                                ><el-input v-model="dialog.ptcnam"
                            /></el-form-item>
                        </c-col>
                        <c-col :span="22"
                            ><el-form-item
                                :label="
                                    title == 'MT799'
                                        ? 'Sender to Rec. information'
                                        : 'Remark'
                                "
                                ><el-input
                                    type="textarea"
                                    :rows="10"
                                    :disabled="title == 'MT799'"
                                    :v-model="
                                        title == 'MT799'
                                            ? dialog.addtxt
                                            : dialog.remark
                                    "
                            /></el-form-item>
                        </c-col>
                        <c-col :span="2">
377
                            <c-button size="mini">... </c-button>
潘际乾 committed
378 379 380 381 382
                        </c-col>
                    </c-row>
                </el-form>
                <template #footer>
                    <span class="dialog-footer">
383 384
                        <c-button type="primary" @click="saveDialog"
                            >确 定</c-button
潘际乾 committed
385
                        >
386 387
                        <c-button @click="centerDialogVisible = false"
                            >取 消</c-button
潘际乾 committed
388 389 390 391 392 393 394 395
                        >
                    </span>
                </template>
            </el-dialog>
        </template>
    </div>
</template>
<script>
wangren committed
396
import commonProcess from "~/mixin/commonProcess";
潘际乾 committed
397 398
import Api from "~/service/Api";
import Utils from "~/utils/index";
hulei committed
399
import DocUtils from '~/utils/DocUtils'
潘际乾 committed
400 401 402
export default {
    inject: ['root'],
    props: ["model", "codes"],
wangren committed
403
    mixins: [commonProcess],
潘际乾 committed
404 405 406 407 408 409 410 411 412 413 414 415 416 417
    data() {
        return {
            index: 0,
            title: "",
            dialog: {
                rcv: {
                    pts: {},
                    ptyinftxt: {},
                },
            },
            centerDialogVisible: false,
            stmData: {
                columns: [
                    //注释的已改成静态
潘际乾 committed
418 419
                    "role 收报人 80px",
                    "pandsc 描述 260px",
潘际乾 committed
420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457
                    //"cortyp 类型",
                    //"docsnf 报文格式",
                    //"docuil 语言",
                    //"apf 传送方式"
                ],
                data: [],
            },
        };
    },
    watch: {
        "model.trnmod.trndoc.doceot": {
            handler(val, oldVal) {
                var stm = [];
                let k = 0;
                for (let i = 0; i < val.length; i++) {
                    if (val[i].role != "") {
                        stm[k++] = val[i];
                    }
                }
                this.stmData.data = stm
            },
            immediate: true
        }
    },
    methods: {
        saveDialog() {
            this.centerDialogVisible = false;
            console.log(this.model);
            this.model.trnmod.trndoc.doceot.splice(this.index, 1, this.dialog);
            this.executeRule("trnmod.trndoc.doccur.butaddok").then(res => {
                if(res.data.respCode==SUCCESS){
                    //TODO

                }else{
                    this.$notify.error({ title: '错误', message: '服务请求失败!' });
                }
            })
        },
hulei committed
458
        async handleDisplay(index, row,doceot){
fukai committed
459 460
            //后续要根据快照模式切换请求方式
            let cortyp = row.cortyp
461
            let docuil = doceot.docuil;
hulei committed
462
            let docnam = doceot.docnam||'';
hulei committed
463
            docnam = docnam.substr(docnam.indexOf("\\")+1).toLowerCase().replaceAll("\\","_");
fukai committed
464 465 466
            let rtnmsg
            if (cortyp == 'SWT' || cortyp == 'FMT' || cortyp == 'CMT') {
                this.model.setmod.msgmod.doccod = row.id
潘际乾 committed
467
                rtnmsg = await Api.post(`${this.requestPrefix}/msgmod_butshw`, this.wrapper())
fukai committed
468 469 470 471
            } else {
                this.model.trnmod.trndoc.doccod = row.id
                this.model.trnmod.trndoc.cortyp = cortyp
                const params = {
hulei committed
472
                    index: index
fukai committed
473
                }
潘际乾 committed
474
                rtnmsg = await Api.post(`${this.requestPrefix}/executeDocpan`, this.wrapper(params))
fukai committed
475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493
            }
            if (rtnmsg.respCode == SUCCESS) {
                if (cortyp == 'SWT' || cortyp == 'FMT' || cortyp == 'CMT') {
                    let viewurl = rtnmsg.data.setmod_msgmod_docpth;
                    this.viewurl = viewurl
                    this.title = "报文"
                    //window.open(viewurl, 'newwindow', 'height=1200,width=800,top=100,left=100,toolbar=no,resizable=no,menubar=no,location=no, status=no');
                }
                else if (cortyp == 'ELC') {
                    Modal.info({
                        title: '电证报文', content: <div style={{ height: 400, overflow: 'auto' }}><ELCMessage mty={row.id} message={rtnmsg.data["\\trnmod\\trndoc\\docinf"]} /></div>,
                        width: 1000,
                    })
                }
                else {
                    // let url = rtnmsg.data.trnmod_trndoc_smh_docpth;
                    this.title = "面函"
                    let viewurl = "/#/docpan/show";
                    let XMLdata;
hulei committed
494
                    if (row.pandsc.startsWith("elcs.")) {
fukai committed
495 496 497 498 499 500 501 502 503 504
                        window.sessionStorage.docXML = ''
                        window.sessionStorage.docTXT = ''
                        rtnmsg.data.trnmod_trndoc_doceot[index].doctxt.rows.forEach(element => {
                            window.sessionStorage.docTXT += element + "\r\n"
                        });
                    }
                    else if (row.pandsc == "MT799") {
                        window.sessionStorage.docTXT = ''
                        XMLdata = rtnmsg.data.litbenl1blk
                    }
hulei committed
505 506 507
                    else{
                        //参考后台Doceot.butshw order=1000
                        let execution = 'P', structure = 'l'
hulei committed
508
                        let attr = DocUtils.getDocAttribute(docnam,structure,execution)
hulei committed
509 510
                        window.sessionStorage.docTXT = ''
                        window.sessionStorage.docXML = rtnmsg.data[attr];
511
                        window.sessionStorage.docuil = doceot.docuil;
hulei committed
512
                    }
fukai committed
513 514 515 516 517 518 519 520 521 522 523 524 525 526
                    // console.log( window.sessionStorage.docTXT);
                    // console.log( window.sessionStorage.docXML);
                    window.open(viewurl, 'newwindow', 'height=1200,width=800,top=100,left=100,toolbar=no,resizable=no,menubar=no,location=no, status=no');
                }
                this.dialogOpen = true
            }
            else {
                this.$notify.error({ title: '错误', message: '服务请求失败!' })
            }
        },
        async handleDetail(index, row) {
            const params = {
                index: index
            }
潘际乾 committed
527
            let rtnmsg = await Api.post(`${this.requestPrefix}/executeDocpanDetail`, this.wrapper(params))
fukai committed
528 529 530 531 532 533
            if (rtnmsg.respCode == SUCCESS) {
                this.title = row.pandsc
                this.centerDialogVisible = true,
                this.dialog = rtnmsg.data.trnmod_trndoc_doceot[index]
                this.index = index
            }
hulei committed
534
        }
潘际乾 committed
535 536 537 538 539 540
    },
    created: function () {},
};
</script>
<style>
</style>