From c16f945a56dbedbfd5778a6de7b124298588607c Mon Sep 17 00:00:00 2001 From: xiaoyong931011 <15274802129@163.com> Date: Thu, 22 Dec 2022 12:15:00 +0800 Subject: [PATCH] 20221221 --- src/main/resources/templates/febs/views/modules/mallMember/chargeFlowList.html | 12 +++++------- 1 files changed, 5 insertions(+), 7 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 03d6a16..d166530 100644 --- a/src/main/resources/templates/febs/views/modules/mallMember/chargeFlowList.html +++ b/src/main/resources/templates/febs/views/modules/mallMember/chargeFlowList.html @@ -122,16 +122,15 @@ {field: 'withdrawNo', title: '编号', minWidth: 100,align:'left'}, {field: 'name', title: '名称', minWidth: 100,align:'left'}, {field: 'phone', title: '账号', minWidth: 150,align:'left'}, - {field: 'bindPhone', title: '手机号', minWidth: 150,align:'left'}, {field: 'amount', title: '金额', minWidth: 150,align:'left'}, {field: 'amountFee', title: '手续费', minWidth: 150,align:'left'}, - {field: 'remark', title: '错误信息', minWidth: 150,align:'left'}, + {field: 'bankNo', 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{ @@ -144,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