index.js 827 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
import Pub from '~/components/business/commonModel/index.js';
import Didgrp from '~/components/business/commonModel/didgrp';
import Pts from '~/components/business/commonModel/Pts';

export default class Ditcan {
	constructor() {
		this.data = {
			didgrp: new Didgrp().data,
			advnam: "",
			strinf: "",			//  附言		.strinf
			byinst: "",			//  On Applicant instruction		.byinst
			sndmsg: "",			//  Send message to apllicant		.sndmsg
			rejhnd: "",			//  注销/闭卷		.rejhnd
			pageId: "",			// ctx的key
			setmod: new Pub().data.Setmod,
			mtabut: new Pub().data.Mtabut,
			trnmod: new Pub().data.Trnmod,
			liaall: new Pub().data.Liaall,
			limmod: new Pub().data.Limmod,
			docpan: new Pub().data.Docpan,
			doctre: new Pub().data.Doctre,
			liaccv: new Pub().data.Liaccv,
			trndia: new Pub().data.Trndia,
		}
	}
}