shareCoupon.html
3.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<style>
form select{min-width: 0;}
</style>
<div class="pageheader notab">
<h1 class="pagetitle">分享佣金订单下单支付后赠送的优惠券</h1>
<span class="pagedesc">用于添加分享佣金订单下单支付后赠送的优惠券</span>
<ul class="hornav">
<li class="current"><a href="javascript:void(0)">优惠券信息</a></li>
</ul>
</div>
<!--pageheader-->
<div id="contentwrapper" class="contentwrapper">
<div id="basicform" class="subcontent">
<div class="contenttitle2">
<h3>优惠券信息</h3>
</div>
<!--contenttitle-->
<form class="stdform stdform2" method="post" action="javascript:void(0);">
<p>
<label>优惠券名称</label>
<span class="field">
{{coupon.couponName}}
</span>
</p>
<p>
<label>优惠券范围</label>
<span class="field" style="color: red">
{{coupon.rangTypeStr}} {{coupon.fullCutInstruction}}
</span>
</p>
<p>
<label>优惠券面额</label>
<span class="field">
{{coupon.couponMoney}}
{{coupon.cutMoney}} 元
</span>
</p>
<p>
<label>优惠券发行量</label>
<span class="field">
{{coupon.couponNum}}
</span>
</p>
<p>
<label>优惠券发放日期</label>
<span class="field">
<input type="text" id="receiveStartDate" date-format placeholder="请输入开始日期" readonly class="laydate-icon" style="width: 150px;" ng-model="coupon.receiveStartDate" ng-value="{{coupon.receiveStartDate}}"/>
--<input type="text" id="receiveEndDate" date-format placeholder="请输入结束日期" readonly class="laydate-icon" style="width: 150px;" ng-model="coupon.receiveEndDate" ng-value="{{coupon.receiveEndDate}}"/>
</span>
</p>
<p >
<label>发放方式</label>
<span class="field" ng-if="coupon.getSource == 0">
V币商城
</span>
<span class="field" ng-if="coupon.getSource == 1">
新微商
</span>
</p>
<p>
<label>优惠券使用有效期</label>
<span class="field">
<input type="text" id="useStartDate" date-format placeholder="请输入开始日期" readonly class="laydate-icon" style="width: 150px;" ng-model="coupon.useStartDate" ng-value="{{coupon.useStartDate}}"/>
--<input type="text" id="useEndDate" date-format placeholder="请输入结束日期" readonly class="laydate-icon" style="width: 150px;" ng-model="coupon.useEndDate" ng-value="{{coupon.useEndDate}}"/>
</span>
</p>
<p>
<label>使用说明</label>
<span class="field">
<textarea rows="4" cols="220" class="longinput" name="remark" readonly ng-model="coupon.directCutInstruction" ng-value="{{coupon.directCutInstruction}}"></textarea>
<span style="color: red;">(使用说明不能为空)</span>
</span>
</p>
<p>
<label>激活状态</label> <span class="field">
<select name="typeId" id="status" style="width: 150px;" ng-model="coupon.status" readonly="true">
<option value='0' selected="selected">未生效 </option>
<option value='1' >激活</option>
</select>
</span>
</p>
</form>
<br />
</div>
<!--subcontent-->
</div>
<!--contentwrapper-->