index.js 1.69 KB
Newer Older
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
import Api from "~/service/Api"
import Pts from "../Common/Pts"

export default class Cptrel{
    constructor () {
        this.data = {
						trncorco:{
							usfmod:{
								labtxt:"",			//  Text of Label		.trncorco.usfmod.labtxt
								usftxt:"",			//  Text of Selection Text		.trncorco.usfmod.usftxt
								flt:"",			//  Filter		.trncorco.usfmod.flt
								selusg:"",			//  Selected User Group		.trncorco.usfmod.selusg
								selusgset:"",			//  Selected User Group Set		.trncorco.usfmod.selusgset
								usr:{
									extkey:"",			//  User ID		.trncorco.usfmod.usr.extkey
								},
								usrget:{
									sdamod:{
										seainf:"",			//  		.trncorco.usfmod.usrget.sdamod.seainf
									},
								},
								selusb:"",			//  Select user branch		.trncorco.usfmod.selusb
							},
							ownref:"",			//  Reference		.trncorco.ownref
							relflg:"",			//  Status		.trncorco.relflg
							inidatfro:"",			//  Date of entry of Transaction		.trncorco.inidatfro
							inidattil:"",			//  Date of entry of Transaction until		.trncorco.inidattil
							trnstm:"",			//  List of transaction sfor display		.trncorco.trnstm
							trntyp:"",			//  汇款性�'�		.trncorco.trntyp
						},
						atp:{
							cod:"",			//  Transaction Type 		.atp.cod
						},
						atpget:{
							sdamod:{
								seainf:"",			//  		.atpget.sdamod.seainf
								dadsnd:"",			//  Drag  Drop Sender		.atpget.sdamod.dadsnd
							},
						},
						numtrn:"",			//  # of transactions		.numtrn
						relcur:"",			//  Curr.		.relcur
						amt1:"",			//  Amount		.amt1
						amt2:"",			//  Amount		.amt2
						ptyextkey:"",			//  Party extkey		.ptyextkey
						branch:"",			//  branch		.branch
						pageId: ""			// ctx的key
				}
    }
}