index.js 364 Bytes
Newer Older
fukai committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14
import moment from "moment";

export default class Comcal {
  constructor() {
    this.data = {
      ptyExtkey: '',
      opndatfrom: moment(new Date()).format('YYYY-MM-DD'), //  Opening between		.infcon.opndatfrom
      opndatto: moment(new Date()).add(3, 'month').format('YYYY-MM-DD'),
      gidopentyps: [],
      seaownref: '',
      querytyp: '',
    }
  }
}