index.js 2.21 KB
Newer Older
WH committed
1 2
import Pts from '~/components/business/commonModel/Pts';
import Pub from '~/components/business/commonModel/index.js';
WH committed
3
export default class Betdcr {
WH committed
4 5 6 7
    constructor() {
        this.data = {
            betp: {
                adaflg: '',
WH committed
8 9 10 11

                docgrdm:{
                    docgrd:'',
                },
WH committed
12 13 14 15
            },
            advdisflg: '',
            ledgrp: {
                rec: {
panziyi committed
16
                    inr: '',
WH committed
17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
                    ownref: ''
                },
                cbs: {
                    opn1: {
                        cur: '',
                        amt: ''
                    }
                },
            },
            rejpenins: '',
            advrefflg: '',
            bedgrp: {
                blk: {
                    docdisflg: '',
                    disdoc: '',
                    docdis: '',
                    docins: '',
                    intdis: ''
                },
                rec: {
panziyi committed
37
                    inr:'',
WH committed
38 39 40 41 42 43 44 45 46
                    predat: '',
                    rcvdat: '',
                    doctypcod: '',
                    docsta: '',
                    ownref: '',
                    payrol: '',
                    matdat: '',
                    nam: '',
                    docprbrol: '',
panziyi committed
47
                    branchinr:'',
panziyi committed
48
                    advdocflg: '',
WH committed
49 50 51 52 53 54 55 56 57 58 59 60 61 62 63
                },
                cbs: {
                    opn1: {
                        cur: '',
                        amt: ''
                    },
                    max: {
                        cur: '',
                        amt: ''
                    }
                },

                prb: {
                    pts: new Pts().data,
                },
WH committed
64
                iss: {
WH committed
65 66
                    pts: new Pts().data,
                },
WH committed
67
                apl:{
WH committed
68 69
                    pts: new Pts().data,
                },
WH committed
70

WH committed
71 72 73
                oth:{
                    pts: new Pts().data,
                },
WH committed
74

WH committed
75 76 77 78 79 80 81 82 83 84
            },
            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,
        };
    }
}