123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127 |
- <div style='max-height:500px;overflow:auto;min-width:850px;'>
- <div class="input-group layui-row" style="margin:10px;">
- <input type="text" placeholder="请输入会员卡名称" id="select-url-kw" value="" class="form-control">
- <span class="input-group-addon btn btn-default select-btn" data-type="url">搜索</span>
- </div>
- <table class="table supplyquery table-hover supplyquery" style="min-width:850px;">
- <tbody>
- <tr>
- <th>会员卡名称</th>
- <th>原价</th>
- <th>现价</th>
- <th>有效天数</th>
- <th>操作</th>
- </tr>
- <?php foreach( $list as $row ){ ?>
- <tr>
- <td>{$row['cardname']}</td>
- <td>{$row['orignprice']}</td>
- <td>{$row['price']}</td>
- <td>{$row['expire_day']}天</td>
- <td style="width:80px;"><a href="javascript:;" class="choose_dan_link" data-json='{:json_encode($row);}'>选择</a></td>
- </tr>
- <?php } ?>
- <?php if( count($list)<=0){ ?>
- <tr>
- <td colspan='5' align='center'>未找到会员卡</td>
- </tr>
- <?php } ?>
- </tbody>
- <?php if( count($list) > 0){ ?>
- <tfoot>
- <tr>
- <td colspan='5' align='center' id="pager_ajax">{$pager}</td>
- </tr>
- </tfoot>
- <?php } ?>
- </table>
- </div>
- <script>
- var query_kwd = "{$kwd}";
- var query_url = "{:U('user/query_card')}";
- var can_next = true;
- var member_id = "{$member['member_id']}";
- $(document).delegate(".choose_dan_link","click",function(){
- var json_obj = JSON.parse($(this).attr('data-json'));
- var card_id = json_obj.id;
- $.ajax({
- url:"{:U('user/open_ucard')}",
- type:'post',
- dataType:'json',
- data:{card_id:card_id,member_id:member_id},
- success:function(info){
- if(info.status == 0)
- {
- layer.msg(info.result.message,{icon: 1,time: 2000});
- }else if(info.status == 1){
- var go_url = location.href;
- if( info.result.hasOwnProperty("url") )
- {
- go_url = info.result.url;
- }
- layer.msg('操作成功',{time: 1000,
- end:function(){
- location.href = info.result.url;
- }
- });
- }
- }
- })
- layer.close(layer.index);
- });
-
- $(".select-btn").click(function(){
-
- query_kwd = $.trim($("#select-url-kw").val());
-
- var s_page = $(this).attr('page');
- if(!can_next)
- {
- return false;
- }
- can_next = false;
- $.ajax({
- url:query_url,
- type:'post',
- dataType:'json',
- data:{keyword:query_kwd, page:1,is_ajax:1},
- success:function(ret){
- if(ret.code == 0)
- {
- $('.supplyquery tbody').html(ret.html);
- $('#pager_ajax').html(ret.pager);
- }
- can_next = true;
- }
- })
- });
- $("body").delegate(".pagination a","click",function(){
- var s_page = $(this).attr('page');
- if(!can_next)
- {
- return false;
- }
- can_next = false;
- $.ajax({
- url:query_url,
- type:'post',
- dataType:'json',
- data:{keyword:query_kwd, page:s_page,is_ajax:1},
- success:function(ret){
- if(ret.code == 0)
- {
- $('.supplyquery tbody').html(ret.html);
- $('#pager_ajax').html(ret.pager);
-
- }
- can_next = true;
- }
- })
- })
- </script>
|