From 7e6bbd05a75b07cb0717812d0b51aad128361012 Mon Sep 17 00:00:00 2001
From: Helius <wangdoubleone@gmail.com>
Date: Thu, 19 May 2022 18:43:42 +0800
Subject: [PATCH] fix some problem

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

diff --git a/src/main/resources/templates/febs/views/modules/mallMember/moneyFlowList.html b/src/main/resources/templates/febs/views/modules/mallMember/moneyFlowList.html
index ace7df4..ce8cf2a 100644
--- a/src/main/resources/templates/febs/views/modules/mallMember/moneyFlowList.html
+++ b/src/main/resources/templates/febs/views/modules/mallMember/moneyFlowList.html
@@ -29,6 +29,8 @@
                                                 <option value="5">转账</option>
                                                 <option value="6">提现</option>
                                                 <option value="7">排名奖励</option>
+                                                <option value="8">利润分红</option>
+                                                <option value="9">系统拨付</option>
                                             </select>
                                         </div>
                                     </div>
@@ -96,7 +98,8 @@
                 url: ctx + 'admin/mallMember/getMoneyFlowList',
                 cols: [[
                     {field: 'name', title: '名称', minWidth: 100,align:'left'},
-                    {field: 'phone', title: '手机号', minWidth: 150,align:'left'},
+                    {field: 'phone', title: '账号', minWidth: 150,align:'left'},
+                    {field: 'bindPhone', title: '手机号', minWidth: 150,align:'left'},
                     {field: 'amount', title: '金额', minWidth: 150,align:'left'},
                     {field: 'type', title: '流水类型',
                         templet: function (d) {
@@ -114,6 +117,10 @@
                                 return '<span>提现</span>'
                             }else if (d.type === 7) {
                                 return '<span>排名奖励</span>'
+                            }else if (d.type === 8) {
+                                return '<span>利润分红</span>'
+                            }else if (d.type === 9) {
+                                return '<span>系统拨付</span>'
                             }else{
                                 return ''
                             }

--
Gitblit v1.9.1