From 041f8683651a19ebe041c239a3ca19822c53470c Mon Sep 17 00:00:00 2001
From: xiaoyong931011 <15274802129@163.com>
Date: Tue, 28 Sep 2021 20:39:24 +0800
Subject: [PATCH] 20210928

---
 src/main/resources/templates/febs/views/modules/mallMember/moneyFlowList.html |    7 ++++++-
 1 files changed, 6 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 4b72d5b..ace7df4 100644
--- a/src/main/resources/templates/febs/views/modules/mallMember/moneyFlowList.html
+++ b/src/main/resources/templates/febs/views/modules/mallMember/moneyFlowList.html
@@ -121,11 +121,16 @@
                     {field: 'type', title: '支付方式',
                         templet: function (d) {
                             if (d.type === 3) {
-                                return '<span>'+d.payMethod+'</span>'
+                                if(d.payMethod === null || d.payMethod ===''){
+                                    return ''
+                                }else{
+                                    return '<span>'+d.payMethod+'</span>'
+                                }
                             } else{
                                 return ''
                             }
                         }, minWidth: 80,align:'center'},
+                    {field: 'orderNo', title: '订单编号', minWidth: 150,align:'left'},
                     {field: 'createdTime', title: '创建时间', minWidth: 180,align:'center'}
                 ]]
             });

--
Gitblit v1.9.1