module.js 361 B

1234567891011121314151617
  1. function Form() {
  2. this.currencyName = ''
  3. this.currencyMoney = 0,
  4. this.setRules = 1,
  5. this.remark = ''
  6. this.ifAdd = 0
  7. this.ifBond = 0 // 活动保证金
  8. this.bondMoney = '' // 保证金金额
  9. this.ifLimit = 1
  10. this.limitNumber = 0
  11. this.signStartTime = ''
  12. this.signEndTime = ''
  13. this.startTime = ''
  14. this.endTime = ''
  15. }
  16. export default Form