index.js 626 Bytes
Newer Older
fukai committed
1
import Api from "~/service/Api"
2
import Pts from "~/page/Model/Common/Pts"
fukai committed
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24

export default class Dblinn{
    constructor () {
        this.data = {
						innp:{
							iact:"",			//  内部账号		.innp.iact
							cur:"",			//  币种		.innp.cur
							ptycod:"",			//  开户机构		.innp.ptycod
							knd:"",			//  账户名称		.innp.knd
							area:"",			//  开户机构地区		.innp.area
							lst:[],			//  		.innp.lst
							stm:"",			//  导出		.innp.stm
						},
						ptpmod:{
							pty:{
								extkey:"",			//  账户行BIC		.ptpmod.pty.extkey
							},
						},
						pageId: ""			// ctx的key
				}
    }
}