index.js 553 Bytes
Newer Older
fukai committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
import Pub from '~/components/business/commonModel/index.js';
import Ledgrp from '~/components/business/commonModel/ledgrp';
import Ltdgrp from '~/components/business/commonModel/ltdgrp';
import Btdgrp from '~/components/business/commonModel/btdgrp';
import Bttp from '~/components/business/commonModel/bttp';

export default class Bttadd {
	constructor() {
		this.data = {
			ledgrp: new Ledgrp().data,
			ltdgrp: new Ltdgrp().data,
			btdgrp: new Btdgrp().data,
			bttp: new Bttp().data,
      addamtflg: "",
			trndia: new Pub().data.Trndia,
		}
	}
}