index.js 869 Bytes
Newer Older
1 2 3 4 5 6
import Api from "~/service/Api"
import Pts from "../Common/Pts"

export default class Fctopn{
    constructor () {
        this.data = {
潘际乾 committed
7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
						fcdgrp:{
							apl:{
								pts:new Pts().data,
								pta:{
									nam1:"",			//  Externally Visible Name of Address		.fcdgrp.apl.pta.nam1
								},
							},
						},
						aplp:{
							ptsget:{
								sdamod:{
									dadsnd:"",			//  Drag  Drop Sender		.aplp.ptsget.sdamod.dadsnd
									seainf:"",			//  		.aplp.ptsget.sdamod.seainf
								},
							},
						},
						cashcur:"",			//  currency		.cashcur
						cashamt:"",			//  金额		.cashamt
						gleflg:"",			//  是否过帐		.gleflg
						cashacc:"",			//  account		.cashacc
						trmtyp:"",			//  科目		.trmtyp
						reason:"",			//  collect reason		.reason
						cshstm:"",			//  STREAM OF CSH		.cshstm
30 31 32 33
						pageId: ""			// ctx的key
				}
    }
}