1234567891011121314151617 |
- function Form() {
- this.currencyName = ''
- this.currencyMoney = 0,
- this.setRules = 1,
- this.remark = ''
- this.ifAdd = 0
- this.ifBond = 0 // 活动保证金
- this.bondMoney = '' // 保证金金额
- this.ifLimit = 1
- this.limitNumber = 0
- this.signStartTime = ''
- this.signEndTime = ''
- this.startTime = ''
- this.endTime = ''
- }
- export default Form
|