Ethan 6 жил өмнө
parent
commit
305e621c08

+ 0 - 8
application/admin/controller/AdminControl.php

@@ -166,10 +166,6 @@ class AdminControl extends Controller
                 'name' => 'personnel_manage',
                 'text' => '管理员管理',
                 'children' => array(
-                    'member' => array(
-                        'text' => lang('ds_member'),
-                        'url' => url('User/index'),
-                    ),
                     'admin' => array(
                         'text' => lang('ds_admin'),
                         'url' => url('Recharge/index'),
@@ -216,10 +212,6 @@ class AdminControl extends Controller
                         'text' => lang('ds_order_list'),
                         'url' => url('Order/index'),
                     ),
-                    'examine' => array(
-                        'text' => '充值审核',
-                        'url' => url('Recharge/examine'),
-                    ),
                 ),
             ),
             'detail' => array(

+ 3 - 3
application/admin/controller/Server.php

@@ -290,9 +290,9 @@ class Server extends AdminControl
     public function userServer()
     {
         $UserProductModel = Model('Userproduct');
-        $userName = input('get.user_name');
-        $productName = input('get.product_name');
-        $userProductIdentity = input('get.userProduct_identity');
+        $userName = input('post.user_name');
+        $productName = input('post.product_name');
+        $userProductIdentity = input('post.userProduct_identity');
         $userProductWhere = [];
         if ($userName) {
             $userProductWhere['user_email'] = $userName;

+ 2 - 0
application/admin/view/server/userServer.html

@@ -30,6 +30,7 @@
             </colgroup>
             <thead>
             <tr>
+                <th>订单号</th>
                 <th>服务名称</th>
                 <th>用户名</th>
                 <th>购买总时长</th>
@@ -41,6 +42,7 @@
             {if count($userproduct)}
             {volist name="userproduct" id="value"}
             <tr>
+                <td>{$value.userProduct_identity}</td>
                 <td>{$value.product_name}</td>
                 <td>{$value.user_email}</td>
                 <td>{$value.userProduct_dayNumber}</td>

+ 3 - 3
application/admin/view/wlcome/index.html

@@ -1,7 +1,7 @@
 {extend name="layout:home" /}
 {block name="container"}
 <div class="layui-tab-content page-tab-content">
-    <h1>{$Think.lang.wel_version_info}</h1>
+    <!--<h1>{$Think.lang.wel_version_info}</h1>
     <table class="layui-table lay-even">
         <colgroup>
             <col width="300">
@@ -27,7 +27,7 @@
             <td><a href="http://bbs.csdeshang.com" target="_blank">{$Think.lang.wel_communication_bbs}</a></td>
         </tr>
         </tbody>
-    </table>
+    </table>-->
 
     <h1>{$Think.lang.wel_sys_info}</h1>
     <table class="layui-table lay-even">
@@ -82,4 +82,4 @@
     </table>
 </div>
 
-{/block}
+{/block}