index.js 803 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 25 26 27 28

export default class Smtexe{
    constructor () {
        this.data = {
						smegrp:{
							mpi:{
								sndbic:"",			//  :		.smegrp.mpi.sndbic
								act:"",			//  :		.smegrp.mpi.act
								cur:"",			//  :		.smegrp.mpi.cur
								subtyp:"",			//  :		.smegrp.mpi.subtyp
								rcvbic:"",			//  :		.smegrp.mpi.rcvbic
								othref:"",			//  :		.smegrp.mpi.othref
							},
							lst:[],			//  		.smegrp.lst
						},
						smep:{
							begdat:"",			//  :		.smep.begdat
							enddat:"",			//  至		.smep.enddat
							begvaldat:"",			//  :		.smep.begvaldat
							endvaldat:"",			//  至		.smep.endvaldat
							daochu:"",			//  导出		.smep.daochu
						},
						pageId: ""			// ctx的key
				}
    }
}