index.js 2.66 KB
Newer Older
1 2 3
import Pts from '~/components/business/commonModel/Pts';
import Pub from '~/components/business/commonModel/index.js';
export default class Letcan {
WF1020 committed
4 5
  constructor() {
    this.data = {
WF1020 committed
6
      letp: {
WF1020 committed
7 8 9 10 11 12 13 14
        swiftflg:'',
        furide: '',
        matp: {
          mattxtlab: '',
        },
      },
      sndmsg: '',
      ledgrp: {
WF1020 committed
15 16 17 18 19 20
        con: {
          pts: new Pts().data,
      },
        avb: {
          pts: new Pts().data,
        },
WF1020 committed
21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
        adv: {
          pts: new Pts().data,
        },
        prb: {
          adrelc: '',
          dbfadrblkcn: '',
          namelc: '',
          pts: new Pts().data,
        },
        acb: {
          adrelc: '',
          dbfadrblkcn: '',
          namelc: '',
          pts: new Pts().data,
        },
        rec: {
panziyi committed
37
          inr:'',
WF1020 committed
38 39 40 41 42 43 44 45 46 47
          revflg: '',
          expdat: '',
          expplc: '',
          lcrtyp: '',
          ownref: '',
          shpdat: '',
          avbby: '',
          nam: '',
          opndat: '',
          redclsflg: '',
panziyi committed
48
          branchinr:'',
WF1020 committed
49 50 51 52 53
        },
        cbs: {
          opn1: {
            cur: '',
            amt: '',
panziyi committed
54 55 56 57
          },
          opn2: {
            cur: '',
            amt: '',
WF1020 committed
58 59 60 61 62 63
          },
          nom1: {
            cur: '',
            amt: '',
          },
        },
WF1020 committed
64

WF1020 committed
65 66
        rmb: {
          rolsetflg: '',
WF1020 committed
67
          pts: new Pts().data,
WF1020 committed
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
        },
        iss: {
            pts: new Pts().data,
        },
        ben: {
            pts: new Pts().data,
        },
        apl: {
          pts: new Pts().data,
        },
        avbnam: '',
      },
      letp0: {
        aammod: {
          addamtflg: '',
        },
        cnftxt: '',
      },
      letcanf: {
        strinf: '',
      },
      rmbclm: {
        acwacw: {
          pts: new Pts().data,
        },
        valdat: '',
        rmbrmb: {
          pts: new Pts().data,
        },
        bebbeb: {
          pts: new Pts().data,
        },
        rmbrol: '',
      },
闫泽浩 committed
102 103 104 105 106 107 108 109 110 111 112 113 114 115

      async queryGridEtyPromptDialogData(type, ptytyp) {
        let params = {
          userId: window.sessionStorage.userId || 'ZL',
          ptytyp: ptytyp,
          extkey: this.model.ledgrp[type.toLowerCase()].pts.extkey,
        };
        let res = await Api.post('/service/ptspta/list', params);
        if (res.respCode == SUCCESS) {
          this.root.$refs['etyDialog'].show = true;
          this.root.promptData.data = res.data.ptaInfos;
          this.root.promptData.type = type;
        }
      },
WF1020 committed
116 117 118 119 120 121 122 123
      setmod: new Pub().data.Setmod,
      mtabut: new Pub().data.Mtabut,
      trnmod: new Pub().data.Trnmod,
      liaall: new Pub().data.Liaall,
      liaccv: new Pub().data.Liaccv,
      docpan: new Pub().data.Docpan,
    };
  }
124
}