index.js 1.07 KB
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 25 26 27 28 29 30

export default class Dblabk{
    constructor () {
        this.data = {
						abkp:{
							isa:"",			//  :		.abkp.isa
							engnam:"",			//  :		.abkp.engnam
							chnnam:"",			//  :		.abkp.chnnam
							bic:"",			//  :		.abkp.bic
							actid:"",			//  :		.abkp.actid
							cur:"",			//  :		.abkp.cur
							ctraid:"",			//  :		.abkp.ctraid
							contry:"",			//  :		.abkp.contry
							actflg:"",			//  :		.abkp.actflg
							drcflg:"",			//  :		.abkp.drcflg
							fulrcvflg:"",			//  全额到账标志		.abkp.fulrcvflg
							minrcvflg:"",			//  小币种兑付标志		.abkp.minrcvflg
							gjsactflg:"",			//  参与国结清算		.abkp.gjsactflg
							ghdactflg:"",			//  参与国际汇兑清算		.abkp.ghdactflg
							gjsdrcflg:"",			//  国结直接清算		.abkp.gjsdrcflg
							ghddrcflg:"",			//  国际汇兑直接清算		.abkp.ghddrcflg
							ptyshwlst:[],			//  		.abkp.ptyshwlst
							exp:"",			//  导出		.abkp.exp
						},
						pageId: ""			// ctx的key
				}
    }
}