index.js 3.46 KB
Newer Older
WF1020 committed
1 2 3 4 5
import Pts from '~/components/business/commonModel/Pts';
import Pub from '~/components/business/commonModel/index.js';
export default class Brtdck {
  constructor() {
    this.data = {
WF1020 committed
6
      busType: 'brd',
WF1020 committed
7 8 9 10 11 12
      gidgrp:{
        rec:{
          branchinr:''
        }
      },
      gitp:{},
WF1020 committed
13 14 15
      rol:{
        pts: new Pts().data,
      },
WF1020 committed
16 17
      brdgrp: {
        prb: {
WF1020 committed
18 19
          pts: new Pts().data,
        },
WF1020 committed
20
        acb: {
WF1020 committed
21 22
          pts: new Pts().data,
        },
WF1020 committed
23
        ben: {
WF1020 committed
24 25
          pts: new Pts().data,
        },
WF1020 committed
26
        apl: {
WF1020 committed
27 28
          pts: new Pts().data,
        },
WF1020 committed
29
        shp: {
WF1020 committed
30 31
          pts: new Pts().data,
        },
WF1020 committed
32
        adv: {
WF1020 committed
33 34
          pts: new Pts().data,
        },
WF1020 committed
35
        ctr: {
WF1020 committed
36 37
          pts: new Pts().data,
        },
WF1020 committed
38
        con: {
WF1020 committed
39 40
          pts: new Pts().data,
        },
WF1020 committed
41
        iss: {
WF1020 committed
42 43 44 45 46
          pts: new Pts().data,
        },
        ben: {
          pts: new Pts().data,
        },
WF1020 committed
47
        atb: {
WF1020 committed
48 49
          pts: new Pts().data,
        },
WF1020 committed
50
        avc: {
WF1020 committed
51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69
          pts: new Pts().data,
        },
        blk: {
            docdisflg: '',
            notpty: '',
            roggod: '',
            pordis: '',
            matper: '',
            setinsbr: '',
            voynum: '',
            vesnam: '',
            docdis: '',
            delplc: '',
            carnam: '',
            comcon: '',
            porlod: '',
            relstoadr: ''
        },
        rec: {
panziyi committed
70
            inr:"",
WF1020 committed
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
            tenmaxday: '',
            predat: '',
            relgodflg: '',
            advtyp: '',
            docflg: '',
            docsta: '',
            payrol: '',
            relgoddat: '',
            shpdat: '',
            reltyp: '',
            igndisflg: '',
            tramod: '',
            totdat: '',
            nam: '',
            docprbrol: '',
            rcvdat: '',
            approvcod: '',
            ownref: '',
            rtoaplflg: '',
            ngrcod: '',
            disdat: '',
            blnum: '',
            trpdocnum: '',
            expdat: '',
            tradat: '',
            trpdoctyp: '',
            matdat: '',
            advdat: '',
            stadat: '',
panziyi committed
100
            dscinsflg: '',
liaoxing committed
101 102
            branchinr:'',
            ver:'',
WF1020 committed
103 104 105 106
        },
        cbs: {
            opn1: {
                cur: '',
闫泽浩 committed
107
                amt: '0.0'
WF1020 committed
108 109 110 111 112 113
            },
            opn2: {
                cur: ''
            },
            max: {
                cur: '',
闫泽浩 committed
114
                amt: '0.0'
WF1020 committed
115 116
            },
            max2: {
闫泽浩 committed
117
                amt: '0.0'
WF1020 committed
118 119 120 121 122 123
            }
        }
    },
    mhtyp: '',
    brtp: {
        docgrdm: {
124
          docgrdVos: '',
WF1020 committed
125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148
        },
        oth: {
          pts: new Pts().data,
        },
        cre732flg: '',
        furide: '',
        connum: '',
        cre752flg: ''
    },
    oldbrdgrp: {
        cbs: {
            max: {
                amt: ''
            },
            max2: {
                amt: ''
            }
        }
    },
    oriaddlab: '',
    oridoclab: '',
    days: '',
    lidgrp: {
        rec: {
panziyi committed
149
          inr : '',
WF1020 committed
150 151 152
            expdat: '',
            aplref: '',
            ownref: '',
panziyi committed
153 154
            utlnbr: '',
            branchinr:''
WF1020 committed
155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172
        },
        cbs: {
            opn1: {
                cur: '',
                amt: ''
            }
        }
    },
   
    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,
    }
  }
}