From 78bbc1dae1bb20acb51fd454adf53b3ab5ae97b3 Mon Sep 17 00:00:00 2001
From: xiaoyong931011 <15274802129@163.com>
Date: Fri, 23 Dec 2022 15:20:11 +0800
Subject: [PATCH] 20221221

---
 src/main/resources/templates/febs/views/modules/mallMember/chargeFlowList.html |   14 ++++++++------
 1 files changed, 8 insertions(+), 6 deletions(-)

diff --git a/src/main/resources/templates/febs/views/modules/mallMember/chargeFlowList.html b/src/main/resources/templates/febs/views/modules/mallMember/chargeFlowList.html
index ff44032..e1a74bd 100644
--- a/src/main/resources/templates/febs/views/modules/mallMember/chargeFlowList.html
+++ b/src/main/resources/templates/febs/views/modules/mallMember/chargeFlowList.html
@@ -119,15 +119,18 @@
                 id: 'moneyFlowChargeTable',
                 url: ctx + 'admin/mallMember/getMoneyChargeList',
                 cols: [[
+                    {field: 'withdrawNo', title: '编号', minWidth: 100,align:'left'},
                     {field: 'name', title: '名称', minWidth: 100,align:'left'},
-                    {field: 'phone', title: '手机号', minWidth: 150,align:'left'},
+                    {field: 'phone', title: '账号', minWidth: 150,align:'left'},
                     {field: 'amount', title: '金额', minWidth: 150,align:'left'},
+                    {field: 'amountFee', title: '手续费', minWidth: 150,align:'left'},
+                    {field: 'remark', title: '地址', minWidth: 300,align:'left'},
                     {field: 'status', title: '状态',
                         templet: function (d) {
                             if (d.status === 1) {
-                                return '<span style="color:green;">提现中</span>'
+                                return '<span style="color:blue;">提现中</span>'
                             } else if (d.status === 2) {
-                                return '<span style="color:red;">成功</span>'
+                                return '<span style="color:green;">成功</span>'
                             } else if (d.status === 3) {
                                 return '<span style="color:red;">拒绝</span>'
                             } else{
@@ -140,11 +143,10 @@
                             if (d.status === 1) {
                                 return '<button class="layui-btn layui-btn-normal layui-btn-xs" lay-event="chargeAgree" shiro:hasPermission="user:update">同意</button>'
                                     +'<button class="layui-btn layui-btn-normal layui-btn-xs" lay-event="chargeDisagree" shiro:hasPermission="user:update">拒绝</button>'
-                                    +'<button class="layui-btn layui-btn-normal layui-btn-xs" lay-event="paymentInfo" shiro:hasPermission="user:update">查看收款方式</button>'
                             }else{
-                                return '<button class="layui-btn layui-btn-normal layui-btn-xs" lay-event="paymentInfo" shiro:hasPermission="user:update">查看收款方式</button>'
+                                return ''
                             }
-                        },minWidth: 300,align:'center'}
+                        },minWidth: 200,align:'center'}
                 ]]
             });
         }

--
Gitblit v1.9.1