index.js 1 KB
Newer Older
WH committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14
import Pts from '~/components/business/commonModel/Pts';
import Pub from '~/components/business/commonModel/index.js';
export default class Infbrd {
    constructor() {
        this.data = {
            brdgrp: {
                rec: {
                    inr: ''
                }
            },
            seagodcod: '',
            seadocflg: '',
            infcon: {
                chksubcon: '',
WH committed
15 16
                opndatfrom: new Date(),
                opndatto: new Date(),
17
                ownref: '',
WH committed
18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
                seashgref: '',
                seaamtfr: '',
                seasta: '',
                seacur: '',
                pty: {
                    extkey: '',
                    nam: ''
                },
                usr: {
                    extkey: ''
                },
                objinr: '',
                seaamtto: '',
                searol: '',
                nam: '',
                seapty: '',
                searef: ''
WH committed
35 36 37
            },

            pageId:'',
WH committed
38 39 40
        };
    }
}