index.js 512 Bytes
Newer Older
1
import moment from "moment";
fukai committed
2

李少勇 committed
3 4 5 6
export default class Fxdsdb {
  constructor() {
    this.data = {
      fddp: {
7 8
        begdat: moment(new Date()).add(-3, 'd').format('YYYY-MM-DD'),			//  导入起始日期		.fddp.begdat
        enddat: moment(new Date()).format('YYYY-MM-DD'),			//  导入截止日期		.fddp.enddat
李少勇 committed
9 10 11 12 13 14
        filtyp: "",			//  文件类型		.fddp.filtyp
        filnam: "",			//  文件名		.fddp.filnam
      },
      cpsfxdgrp: {
        fxdlst: [],			//  		.cpsfxdgrp.fxdlst
      },
fukai committed
15
    }
李少勇 committed
16
  }
fukai committed
17
}