Logo

GitLab

Sign in

xntalk / xntalk-rnapp

  • Back to Group
  • Project
  • Activity
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • xntalk-rnapp
  • reimbursement
  • src
  • logics
  • ReimbursementStore.js
  • 差旅 & 报销
    633c03f4
    范智凝 authored
    2018-05-27 10:17:37 +0800  
    Browse Code »
ReimbursementStore.js 268 Bytes
Edit Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14
/**
 * Created by yzdd on 2018/5/24.
 */
import {observable} from 'mobx'
export default class ReimbursementStore{
  @observable
  year;
  @observable
  month;
  constructor() {
    this.year = new Date().getFullYear();
    this.month = new Date().getMonth() + 1;
  }
}