123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141 |
- {template 'common/header'}
- <style>
- ul,li {padding:0; margin:0; border:0;}
- body{background:#d2e6e9; padding-bottom:63px;}
- .btn-group-top-box{padding:10px 0; border-bottom:1px solid #a5d7de; font-family:Helvetica, Arial, sans-serif; text-align:center; width:100%;}
- .btn-group-top{overflow:hidden;}
- .btn-group-top .btn{ -webkit-box-shadow:none; box-shadow:none; border-color:#5ac5d4; color:#5ac5d4; background:#d1e5e9; padding:6px;}
- .btn-group-top .btn:hover{color:#FFF; background:#addbe1;}
- .btn-group-top .btn.active{color:#FFF; background:#5ac5d4;}
- .btn.use{background:#56c6d6; color:#FFF; border:0; border-radius:4px;}
- .card-container{width:100%;max-width:640px;margin:0px auto;border-bottom:1px solid #a5d7de;}
- .card-list{width:100%;margin:10px 0;padding:0 13px}
- .card-list .top{height:60px;line-height:60px;background:#a9d92d url(./resource/images/card_tpl.png) repeat-x 0 bottom;border-top-left-radius:5px;border-top-right-radius:5px;}
- .card-list .top .img{float:left;padding:0 10px}
- .card-list .top .img img{width:40px;height:40px;border-radius:35px;}
- .card-list .top .title{float:left;color:#FFF;font-weight:bold;font-size:16px;letter-spacing:1px}
- .card-list .bottom{color:#b7b7b7;height:30px;line-height:30px;background:#FFF;padding:0 6px;border-bottom-left-radius:5px;border-bottom-right-radius:5px;}
- .card-list .bottom .left-info{float:left;width:50%;overflow:hidden;}
- .card-list .bottom .right-info{float:right;width:50%;overflow:hidden;text-align:right;}
- .no-info{width:100%;padding:0 20px;text-align:center;height:40px;line-height:40px;color:#5ac5d4}
- .page{width:100%;margin:0 auto;text-align:center;}
- .page .pagination{padding:0;margin:0;}
- .page .pagination a{color:#5ac5d4;background:#d2e6e9;border:1px solid #a5d7de;}
- .page .pagination a:hover{color:#FFF;background:#addbe1;border:1px solid #a5d7de;}
- .card-info .card-top{ position:relative; width:100%; color:#fff; background-color:#a9d92d; padding:21px 12px 12px;}
- .card-top .logo img{width:38px; height:38px; border-radius:100%; margin-right:10px;}
- .card-top .title{font-size:24px; margin-bottom:10px;}
- .card-top .sub-title{margin-bottom:10px;}
- .card-top .border-img{position: absolute; bottom: -1px; left: 0; width: 100%; height: 5px; background: url(./resource/images/card_tpl.png) repeat-x;}
- .card-bottom{background:#fff; margin-bottom:15px; text-align:center; padding:15px 0;}
- .card-bottom .bar-code img{width:100%; height:auto; margin-bottom:5px;}
- .card-bottom .tips{margin:10px 0;}
- .wx-card .operate{background:#fff; padding:15px 10px;}
- .wx-card .operate input{margin-bottom:5px;}
- </style>
- {if $do == 'display'}
- <div class="btn-group-top-box">
- <div class="btn-group btn-group-top">
- <a href="{php echo url('wechat/card/display', array('type' => 'discount'))}" class="btn btn-default {if $type == 'discount'}active{/if}">折扣券</a>
- <a href="{php echo url('wechat/card/display', array('type' => 'cash'))}" class="btn btn-default {if $type == 'cash'}active{/if}">代金券</a>
- <a href="{php echo url('wechat/card/display', array('type' => 'groupon'))}" class="btn btn-default {if $type == 'groupon'}active{/if}">团购券</a>
- <a href="{php echo url('wechat/card/display', array('type' => 'gift'))}" class="btn btn-default {if $type == 'gift'}active{/if}">礼品券</a>
- <a href="{php echo url('wechat/card/display', array('type' => 'general_coupon'))}" class="btn btn-default {if $type == 'general_coupon'}active{/if}">优惠券</a>
- </div>
- </div>
- <div class="clearfix card-container">
- {if !empty($data)}
- {loop $data $da}
- <div class="card-list" data-id="{$da['id']}">
- <div class="top" style="background:{$colors[$da['color']]}">
- <div class="img">
- <img src="{$logo}"/>
- </div>
- <div class="title">{$da['title']}</div>
- </div>
- <div class="bottom">
- <div class="left-info">{$da['brand_name']}</div>
- <div class="right-info">{$da['endtime']}</div>
- </div>
- </div>
- {/loop}
- <div class="page">{$pager}</div>
- {else}
- <div class="no-info"><i class="fa fa-info-circle"></i> 没有符合条件的优惠券</div>
- {/if}
- </div>
- <script>
- require(['util'], function(u){
- $('.card-list').click(function(){
- var id = parseInt($(this).attr('data-id'));
- if(!id) return false;
- $.post("{php echo url('wechat/card/detail')}", {'id' : id}, function(data) {
- var data = $.parseJSON(data);
- if(data.errno) {
- u.message(data.error, '', 'error');
- } else {
- eval(data.error);
- }
- return false;
- });
- });
- });
- </script>
- {elseif $do == 'use'}
- <form action="" method="post" id="form1">
- <input type="hidden" name="token" value="{$_W['token']}"/>
- <input type="hidden" name="code" value="{$code['code']}"/>
- <div class="wx-card">
- <div class="card-info">
- <div class="card-top" style="background: {$colors[$card['color']]}">
- <div class="logo">
- <img src="{$card['logo_url']}" alt="" class="img-circle">
- <span>{$card['brand_name']}</span>
- </div>
- <div class="title text-center">{$card['title']}</div>
- <div class="sub-title text-center">{$card['sub_title']}</div>
- <div class="date text-center">
- {if $card['date_info']['time_type'] == 1}
- 有效期:{$card['date_info']['time_limit_start']}~{$card['date_info']['time_limit_end']}
- {else}
- 有效期:领取后{$card['date_info']['deadline']}天后生效,{$card['date_info']['limit']}天有效
- {/if}
- </div>
- <div class="border-img"></div>
- </div>
- <div class="card-bottom">
- {if $error_code == 1}
- <div class="text-muted">code码错误</div>
- {else}
- <img src="{php echo url('wechat/card/qr', array('id' => $record['id'], 'code' => $record['code']));}" alt=""/>
- <div class="text-muted">店员可使用微信扫描上面二维码进行核销</div>
- <div class="text-muted">code码:{$code['code']}</div>
- {/if}
- <div class="tips hide">{$card['notice']}</div>
- </div>
- </div>
- <div class="operate">
- {if $error_code == 1}
- <a class="btn btn-danger btn-block" disabled>code码错误</a>
- {else}
- <input type="password" id="password" name="password" class="form-control" placeholder="请输入店员密码" style="margin-bottom:20px">
- <input type="submit" class="btn btn-success btn-block" name="submit" value="确定核销"/>
- {/if}
- </div>
- </div>
- </form>
- <script>
- require(['util'], function(u){
- $('#form1').submit(function(){
- if(!$.trim($('#password').val())) {
- u.message('请输入店员密码');
- return false;
- }
- return true;
- });
- });
- </script>
- {/if}
- {template 'common/footer'}
|