12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- {extend name="default/base/base_seller" /}
- {block name="seller_main"}
- <div class="dssc-form-default">
- {if $Request.action == 'bundling_quota_add'}
- <form id="add_form" action="{:url('Sellerpromotionbundling/bundling_quota_add')}" method="post">
- {else /}
- <form id="add_form" action="{:url('Sellerpromotionbundling/bundling_renew')}" method="post">
- {/if}
- <dl>
- <dt><i class="required">*</i>{$Think.lang.bundling_quota_add_quantity}{$Think.lang.ds_colon}</dt>
- <dd>
- <input id="bundling_quota_quantity" name="bundling_quota_quantity" type="text" class="text w50"/><em class="add-on">{$Think.lang.ds_month}</em><span></span>
- <p class="hint">{$Think.lang.bundling_price_explain1}</p>
- <p class="hint">{php}printf(lang('bundling_price_explain2'), intval(config('ds_config.promotion_bundling_price'))){/php}</p>
- <p class="hint"><strong style="color: red">{$Think.lang.notice_package_renewal6}</strong></p>
- </dd>
- </dl>
- <div class="bottom">
- <input id="submit_button" type="submit" value="{$Think.lang.ds_submit}" class="submit">
- </div>
- </form>
- </div>
- <script type="text/javascript">
- $(document).ready(function () {
- //页面输入内容验证
- $("#add_form").validate({
- errorPlacement: function (error, element) {
- var error_td = element.parent('dd').children('span');
- error_td.append(error);
- },
- submitHandler: function (form) {
- var unit_price = parseInt({$Think.config.ds_config.promotion_bundling_price});
- var quantity = parseInt($("#bundling_quota_quantity").val());
- var price = unit_price * quantity;
- layer.confirm('{$Think.lang.bundling_quota_add_confirm}' + price + '{$Think.lang.ds_yuan}', {
- btn: ['{$Think.lang.ds_ok}', '{$Think.lang.ds_cancel}'],
- title: false,
- }, function () {
- ds_ajaxpost('add_form', 'url', "{:url('Sellerpromotionbundling/index')}");
- });
- },
- rules: {
- bundling_quota_quantity: {
- required: true,
- digits: true,
- min: 1,
- max: 12
- }
- },
- messages: {
- bundling_quota_quantity: {
- required: '<i class="iconfont"></i>{$Think.lang.bundling_quota_quantity_error}',
- digits: '<i class="iconfont"></i>{$Think.lang.bundling_quota_quantity_error}',
- min: '<i class="iconfont"></i>{$Think.lang.bundling_quota_quantity_error}',
- max: '<i class="iconfont"></i>{$Think.lang.bundling_quota_quantity_error}'
- }
- }
- });
- });
- </script>
- {/block}
|