index.js 1.7 KB
Newer Older
潘际乾 committed
1 2 3 4 5 6
import Api from "~/service/Api"
import Pts from "../Common/Pts"

export default class Sptrel{
    constructor () {
        this.data = {
7 8 9 10
			            selsptinr:"",
						sptrel: {
							selinr: {},
						},
潘际乾 committed
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 50
						usfmod:{
							labtxt:"",			//  Text of Label		.usfmod.labtxt
							usftxt:"",			//  Text of Selection Text		.usfmod.usftxt
							flt:"",			//  Filter		.usfmod.flt
							selusg:"",			//  Selected User Group		.usfmod.selusg
							selusgset:"",			//  Selected User Group Set		.usfmod.selusgset
							usr:{
								extkey:"",			//  User ID		.usfmod.usr.extkey
							},
							usrget:{
								sdamod:{
									seainf:"",			//  		.usfmod.usrget.sdamod.seainf
								},
							},
							selusb:"",			//  Select user branch		.usfmod.selusb
						},
						selobj:"",			//  Reference		.selobj
						seltxt:"",			//  Name		.seltxt
						usr:{
							extkey:"",			//  User ID		.usr.extkey
						},
						usrget:{
							sdamod:{
								seainf:"",			//  		.usrget.sdamod.seainf
							},
						},
						atp:{
							cod:"",			//  Transaction Type 		.atp.cod
						},
						atpget:{
							sdamod:{
								seainf:"",			//  		.atpget.sdamod.seainf
								dadsnd:"",			//  Drag  Drop Sender		.atpget.sdamod.dadsnd
							},
						},
						atptxt:"",			//  Transaction Text		.atptxt
						inidatfro:"",			//  Date of entry of Transaction		.inidatfro
						inidattil:"",			//  Date of entry of Transaction until		.inidattil
						sptstm:"",			//  List of SPT records		.sptstm
						sta:"",			//  Status		.sta
吴佳 committed
51 52 53 54 55 56 57 58 59 60
						// chkinc:"",
						// chkdzt:"",
						// chkpen:"",
						// chkcor:"",

						// chkaut:"",
						// chkdel:"",
						// chktco:"",
						// chkcan:"",
						selrow:"",
潘际乾 committed
61 62 63 64
						pageId: ""			// ctx的key
				}
    }
}