index.js 1.37 KB
Newer Older
1 2 3 4 5 6 7 8 9 10
import Pts from "~/model/Common/Pts"

export default class Infgid{
    constructor () {
        this.data = {
						infcon:{
							ownref: '', //  Own Reference		.infcon.ownref
							opndatfrom: new Date(), //  Opening between		.infcon.opndatfrom
							opndatto: new Date(), //  Open Date to		.infcon.opndatto
							nam: '', //  Name		.infcon.nam
11
							etyextkey: '', //  Select Single Party		.infcon.pty.etyextkey
12
							seapty: '', //  当事人编号	.infcon.seapty
13 14 15
							relflg: '', //  Release Status		.infcon.relflg
							hndtyp: '', //  Handling Type		.infcon.hndtyp
							searol: '', //  Role		.infcon.searol
16
							extkey: '', //  User ID		.infcon.usr.extkey
17 18 19
							statsus: '', //  statsus		.infcon.statsus
							seacur: '', //  Currency		.infcon.seacur
							cxmflg: '', //  是否显示查询码		.infcon.cxmflg
WF1020 committed
20
							amtdown: '0.00', //  Amount between		.infcon.seaamtfr	amtup: '0.00', //  Amount to		.infcon.seaamtto
21 22 23
							segtyp: '', //  特殊保函类型		.infcon.segtyp
							searef: '', //  Party Reference		.infcon.searef
						},
24 25 26 27 28 29 30
						fenlishi: '', //  是否分离式保函		.fenlishi 
						seapurpos: '', //会议目的 .seapurpos
						seagtyp: '', // 保函文本类型 .seagtyp
						fromflg: '', //  电子渠道类型		.fromflg
						cmtflg:'', //跨境人民币保函 .cmtflg
						fingua: '', //融资性对外担保
						pageId: '' // ctx的key
31 32 33
					}
    }
}