12345678910111213141516171819202122232425262728 |
- <!DOCTYPE html>
- <html>
- <head>
- <title></title>
- #parse("sys/header.html")
- </head>
- <body>
- <div id="rrapp" v-cloak>
- <Card>
- <p slot="title">分享优惠</p>
- <i-form ref="formValidate" :model="coupon" :rules="ruleValidate" :label-width="120">
- <Form-item label="赠送最小金额">
- <Input-number :min="0" v-model="coupon.minAmount" placeholder="赠送最小金额" style="width: 188px;"/>
- </Form-item>
- <Form-item label="赠送最大金额">
- <Input-number :min="0" v-model="coupon.maxAmount" placeholder="最大金额" style="width: 188px;"/>
- </Form-item>
- <Form-item>
- <i-button type="primary" @click="saveOrUpdate">保存</i-button>
- </Form-item>
- </i-form>
- </Card>
- </div>
- <script src="${rc.contextPath}/js/shop/couponshare.js?_${date.systemTime}"></script>
- </body>
- </html>
|