index.js 502 Bytes
Newer Older
fukai committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
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';

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