wpfw_ewei_shopv2/template/web/sale/peerpay/basic.html
2023-02-14 19:57:32 +08:00

20 lines
870 B
HTML

<div class="form-group">
<label class="col-sm-2 control-label">求助语句</label>
<div class="col-sm-9">
<div class='recharge-items'>
{loop $enough1 $it}
<div class="input-group recharge-item" style="margin-top:5px">
<input type="text" class="form-control" name='enough1[]' value='{$it}' />
<div class='input-group-btn'>
<button class='btn btn-danger' type='button' onclick="$(this).parents('.recharge-item').remove()"><i class='fa fa-remove'></i></button>
</div>
</div>
{/loop}
</div>
<div style="margin-top:5px">
<button type='button' class="btn btn-default" onclick='addConsumeItem(this,"enough1")' style="margin-bottom:5px"><i class='fa fa-plus'></i> 增加优惠项</button>
</div>
<span class="help-block">随机出现以上一条求助语句 例如 : 万水千山总是情,这单帮我一定行</span>
</div>
</div>