dltxdetails.html 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. {template 'public/header'}
  2. {template 'public/comhead'}
  3. <link rel="stylesheet" type="text/css" href="../addons/zh_jdgjb/template/public/ygcsslist.css">
  4. <style type="text/css">
  5. .yg5_key>div{float: left;line-height: 34px;}
  6. .store_td1{height: 45px;}
  7. .store_list_img{width: 60px;height: 60px;}
  8. .yg5_tabel{border-color: #e5e5e5;outline: 1px solid #e5e5e5;text-align: center;}
  9. .yg5_tr2>td{padding: 15px;border: 1px solid #e5e5e5;}
  10. .yg5_tr1>td{
  11. border: 1px solid #e5e5e5;
  12. background-color: #FAFAFA;
  13. font-weight: bold;
  14. }
  15. .yg5_btn{background-color: #EEEEEE;color: #333;border: 1px solid #E4E4E4;border-radius: 6px;width: 100px;height: 34px;}
  16. .check_img{width: 45px;height: 45px;}
  17. </style>
  18. <ul class="nav nav-tabs">
  19. <span class="ygxian"></span>
  20. <div class="ygdangq">当前位置:</div>
  21. <li {if $type=='now'} class="active" {/if}><a href="{php echo $this->createWebUrl2('dltxdetails',array('type'=>now,'state'=>2));}">提现通过</a></li>
  22. <li {if $type=='wait'} class="active" {/if}><a href="{php echo $this->createWebUrl2('dltxdetails',array('type'=>wait,'state'=>1));}">待提现</a></li>
  23. <li {if $type=='delivery'} class="active" {/if}><a href="{php echo $this->createWebUrl2('dltxdetails',array('type'=>delivery,'state'=>3));}">提现拒绝</a></li>
  24. <li {if $type=='all'} class="active" {/if}><a href="{php echo $this->createWebUrl2('dltxdetails',array('type'=>all));}">全部</a></li>
  25. </ul>
  26. <div class="main">
  27. <div class="panel panel-default">
  28. <div class="panel-heading">
  29. 提现明细
  30. </div>
  31. <div class="panel-body" style="padding: 0px 15px;">
  32. <div class="row">
  33. <table class="yg5_tabel col-md-12">
  34. <tr class="yg5_tr1">
  35. <td class="store_td1">申请日期</td>
  36. <td class="store_td1">审核日期</td>
  37. <td>提现金额</td>
  38. <td>实际金额</td>
  39. <td>提现账号</td>
  40. <td>真实姓名</td>
  41. <td >审核状态</td>
  42. </tr>
  43. {loop $list $key $item}
  44. <tr class="yg5_tr2">
  45. <td >{$item['time']}</td>
  46. <td >{$item['sh_time']}</td>
  47. <td>{$item['tx_cost']}</td>
  48. <td>{$item['sj_cost']}</td>
  49. <td>{$item['username']}</td>
  50. <td>{$item['name']}</td>
  51. {if $item['state']==1}
  52. <td >
  53. <span class="label storered">待确认</span>
  54. </td >
  55. {elseif $item['state']==2}
  56. <td >
  57. <span class="label storeblue">已提现</span>
  58. </td>
  59. {elseif $item['state']==3}
  60. <td >
  61. <span class="label storegrey">已拒绝</span>
  62. </td>
  63. {/if}
  64. </td>
  65. </tr>
  66. {/loop}
  67. {if empty($list)}
  68. <tr class="yg5_tr2">
  69. <td colspan="9">
  70. 暂无提现信息
  71. </td>
  72. </tr>
  73. {/if}
  74. </table>
  75. </div>
  76. </div>
  77. </div>
  78. </div>
  79. <div class="text-right we7-margin-top">
  80. {$pager}
  81. </div>
  82. <script type="text/javascript">
  83. $(function(){
  84. // $("#frame-6").addClass("in");
  85. $("#frame-7").show();
  86. $("#yframe-7").addClass("wyactive");
  87. })
  88. </script>
  89. {template 'common/footer'}