index.js 922 Bytes
Newer Older
fukai committed
1 2 3 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
import Pts from '~/components/business/commonModel/Pts';
import Pub from '~/components/business/commonModel/index.js';
import Bcdgrp from '~/components/business/commonModel/bcdgrp';
import Bctp from '~/components/business/commonModel/bctp';
import Swiadd from '~/components/business/commonModel/swiadd';
export default class Bctame{
  constructor () {
    this.data = {
      amedat: "",			//  Amendment Date		.amedat
      amenbr: "",			//  No. of Amendment		.amenbr
      
      newdoctypcod:"",			//  Amend Condition		.newdoctypcod
      pageId: "",			// ctx的key
      
			bcdgrp: new Bcdgrp().data,
			bctp: new Bctp().data,
			oldbcdgrp: new Bcdgrp().data,
      swiadd: new Swiadd().data,
      
			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, 
	}
			
}
}