index.js 504 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

export default class Dblfxd{
    constructor () {
        this.data = {
						fxdp:{
							filtyp:"",			//  文件类型:		.fxdp.filtyp
							filnam:"",			//  文件名:		.fxdp.filnam
							begdat:"",			//  导入起始日期:		.fxdp.begdat
							enddat:"",			//  导入截止日期:		.fxdp.enddat
						},
						fxdgrp:{
							fxdlst:[],			//  		.fxdgrp.fxdlst
						},
						pageId: ""			// ctx的key
				}
    }
}