couponshare.html 926 B

12345678910111213141516171819202122232425262728
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title></title>
  5. #parse("sys/header.html")
  6. </head>
  7. <body>
  8. <div id="rrapp" v-cloak>
  9. <Card>
  10. <p slot="title">分享优惠</p>
  11. <i-form ref="formValidate" :model="coupon" :rules="ruleValidate" :label-width="120">
  12. <Form-item label="赠送最小金额">
  13. <Input-number :min="0" v-model="coupon.minAmount" placeholder="赠送最小金额" style="width: 188px;"/>
  14. </Form-item>
  15. <Form-item label="赠送最大金额">
  16. <Input-number :min="0" v-model="coupon.maxAmount" placeholder="最大金额" style="width: 188px;"/>
  17. </Form-item>
  18. <Form-item>
  19. <i-button type="primary" @click="saveOrUpdate">保存</i-button>
  20. </Form-item>
  21. </i-form>
  22. </Card>
  23. </div>
  24. <script src="${rc.contextPath}/js/shop/couponshare.js?_${date.systemTime}"></script>
  25. </body>
  26. </html>