rabin 2 yıl önce
ebeveyn
işleme
33137b525a

+ 27 - 0
app/shop/assets/manage/html/user_money.html

@@ -0,0 +1,27 @@
+
+<form class="layui-form form10" action="" target="f10" method="post">
+<iframe id="f10" name="f10" style="display:none;"></iframe>
+<div class="layui-form-item" id="show">
+    <table class="layui-table">
+      <thead>
+        <tr>
+          <th>昵称</th>
+          <th>加入时间</th>
+          <th>签名</th>
+        </tr> 
+      </thead>
+      <tbody>
+        <tr>
+          <td>贤心</td>
+          <td>2016-11-29</td>
+          <td>人生就像是一场修行</td>
+        </tr>
+        <tr>
+          <td>许闲心</td>
+          <td>2016-11-28</td>
+          <td>于千万人之中遇见你所遇见的人,于千万年之中,时间的无涯的荒野里…</td>
+        </tr>
+      </tbody>
+    </table>
+</div>
+</form>

+ 1 - 1
app/shop/database/user_money.php

@@ -26,7 +26,7 @@ $type = array
 $excel = false;
 
 $list_button = array();
-$list_button['list'] = array('查看详情', '"user_money_push&project=shop&id={id}&page_type=1&[refer]"');
+$list_button['list'] = array('查看详情', '"user_money_sign&project=shop&id={id}&page_type=1&[refer]"');
 if (Dever::load('manage/auth')->checkFunc('bill.tixian', 'edit', '审核')) {
     $list_button['fast'] = array('审核', '"cash&where_id={id}&col=audit,audit_desc&oper_save_jump=cash&oper_table=cash&oper_parent=cash"', '{status} == 1');
 }

+ 2 - 0
app/shop/database/user_money_sign.php

@@ -14,6 +14,7 @@ return array
     # 显示给用户看的名称
     'lang' => '用户资金流水',
     'order' => 99,
+    'menu' => false,
     # 数据结构
     'struct' => array
     (
@@ -71,6 +72,7 @@ return array
         'insert' => false,
         'delete' => false,
         'edit' => false,
+        'page_list' => 'user_money',
     ),
 
     'request' => array

+ 5 - 0
app/shop/template/manage/user_money.php

@@ -0,0 +1,5 @@
+<?php
+
+$view
+->fetch('#show', 'shop/lib/money.show')
+->display();