index.js 1.97 KB
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 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78
import Pub from '~/components/business/commonModel/index.js';
import Pts from '~/components/business/commonModel/Pts.js';

export default class Syselc {
	constructor() {
		this.data = {
			formatData:{},
			textContext:"",
			bchlev:"",
			comchk: {
				msgid: "",			//  报文标识号		.comdow.msgid
				instgagtmmbid: "",			//  发起直接参与机构		.comdow.instgagtmmbid
				sndrcv: "",			//  发送接收标识		.comdow.sndrcv
				chkdat: "",			//  对账日期		.comdow.chkdat
				dowpth: "",			//  报文路径		.comdow.dowpth
				msgtxt: "",			//  报文内容		.comdow.msgtxt
				msgtyp: "",			//  报文类型		.comdow.msgtyp
				elcreclist:[],
				msglist:[],
				elcgrd:[],
				msggrd:[],
				chklab:"",
			},
			comdow: {
				msgid: "",			//  报文标识号		.comdow.msgid
				instgagtmmbid: "",			//  发起直接参与机构		.comdow.instgagtmmbid
				sndrcv: "",			//  发送接收标识		.comdow.sndrcv
				chkdat: "",			//  对账日期		.comdow.chkdat
				dowpth: "",			//  报文路径		.comdow.dowpth
				msgtxt: "",			//  报文内容		.comdow.msgtxt
				msgtyp: "",			//  报文类型		.comdow.msgtyp
			},
			comlog:{
				oprtyp:"",
				elcsys:{
					syssta:"",
					sysdat:"",
					onlnst:"",
					bkcgnb:"",
					stcgnb:"",
					logflg:"",
				}
			},
			cominf: {
				issbankno: "",			//  开证行行号		.cominf.issbankno
				letcrdnum: "",			//  信用证编号		.cominf.letcrdnum
				dowpth: "",			//  报文路径		.cominf.dowpth
				msgtxt:"",
			},
			cominv: {
				invcod: "",			//  发票代码		.cominv.invcod
				invnum: "",			//  发票号码		.cominv.invnum
				dowpth: "",			//  报文路径		.cominv.dowpth
				fbcxjg: "",			//  发票查询结果		.cominv.fbcxjg
				msgtxt:"",
			},
			comreg:{
				ptcptbk:"",
				sndrcv:"",
				msgtyp:"",
				systyp:"",
				pmslst:[],
				pmslst2:[],
			},
			comcer:{
				bnk:"",
				bnk919:"",
				certyp:"",
				certyp1:"",
				sta:"",
				lcfssta:"",
				chgtyp:"",
				chgtyp1:"",
			},
			pageId: ""			// ctx的key
		}
	}
}