Commit 7320d83e by zhangchen

1.活动页面添加红包字段

parent 45039106
......@@ -160,7 +160,24 @@
<@form.textInput path="dto.communePrice" attributes="class=\"input-medium\"" label="社员价" required = true />
<@form.textInput path="dto.guestPrice" attributes="class=\"input-medium\"" label="嘉宾价" required = true />
<@form.textInput path="dto.buyLimitTimes" attributes="class=\"input-medium\"" label="限制购买数量" required = true />
<@form.textInput path="dto.voucherIds" attributes="class=\"input-medium\"" label="券ID拼接(英文逗号分割)" required = true />
<@form.textInput path="dto.voucherIds" attributes="class=\"input-medium\"" label="券ID拼接(英文逗号分割)" required = true />
<div class="long_content_div control-group" id="isSendRedPacketshow">
<label class="control-label" for="type">是否发红包</label>
<div class="controls">
<#if dto.isSendRedPacket??>
<input style="margin-bottom: 5px;" type="radio" name="isSendRedPacket" value="0" <#if dto.isSendRedPacket == 0>checked</#if>>
<span style="padding-right: 20px;">否</span>
<input style="margin-bottom: 5px;" type="radio" name="isSendRedPacket" value="1" <#if dto.isSendRedPacket == 1>checked</#if>>
<span style="padding-right: 20px;">是</span>>
<#else>
<input style="margin-bottom: 5px;" type="radio" name="isSendRedPacket" value="0" checked>
<span style="padding-right: 20px;">否</span>
<input style="margin-bottom: 5px;" type="radio" name="isSendRedPacket" value="1" >
<span style="padding-right: 20px;">是</span>>
</#if>
</div>
</div>
<@form.textInput path="dto.redPacketPrice" attributes="class=\"input-medium\"" label="红包金额" required = true />
<@form.textInputTwoDate path1="dto.activityStart" path2="dto.activityEnd" attributes="" label="活动时间" required = true/>
<@form.textArea path="dto.miniAppMessage" attributes="class=\"input-medium\" required rows=\"3\"" label="提示拼接(英文分号分割)" required = true />
<div class="long_content_div control-group" id="voucherRuleTypeValue1show">
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment