module.js 274 Bytes Edit Raw Blame History 1 2 3 4 5 6 7 8 9 function Form () { this.politeName = '' // 活动名称 this.remark = '' // 活动备注 this.growth = 0 this.buyerMode = 1 // 消费方式 1-购买一定金额商品 2-购买一定数量商品 this.buyer = 0 // 满多少元/件参与活动 } export default Form