From df8cb45fe80d17e1df8b789250a30a429fee2626 Mon Sep 17 00:00:00 2001
From: xiaoyong931011 <15274802129@163.com>
Date: Sun, 26 Sep 2021 20:26:21 +0800
Subject: [PATCH] 20210926
---
src/main/resources/templates/febs/views/modules/mallMember/moneyFlowList.html | 22 ++++++++++++++++++++++
1 files changed, 22 insertions(+), 0 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 8e58caf..07791c0 100644
--- a/src/main/resources/templates/febs/views/modules/mallMember/moneyFlowList.html
+++ b/src/main/resources/templates/febs/views/modules/mallMember/moneyFlowList.html
@@ -17,6 +17,19 @@
<input type="text" placeholder="手机号" name="phone" autocomplete="off" class="layui-input">
</div>
</div>
+ <div class="layui-inline">
+ <label class="layui-form-label layui-form-label-sm">账户状态</label>
+ <div class="layui-input-inline">
+ <select name="type">
+ <option value="">请选择</option>
+ <option value="1">分红收入</option>
+ <option value="2">业绩奖励</option>
+ <option value="3">订单支付</option>
+ <option value="4">退款</option>
+ <option value="5">转账</option>
+ </select>
+ </div>
+ </div>
</div>
</div>
<div class="layui-col-md2 layui-col-sm12 layui-col-xs12 table-action-area">
@@ -99,6 +112,14 @@
return ''
}
}, minWidth: 80,align:'center'},
+ {field: 'type', title: '支付方式',
+ templet: function (d) {
+ if (d.type === 3) {
+ return '<span>'+d.payMethod+'</span>'
+ } else{
+ return ''
+ }
+ }, minWidth: 80,align:'center'},
{field: 'createdTime', title: '创建时间', minWidth: 180,align:'center'}
]]
});
@@ -109,6 +130,7 @@
return {
name: $searchForm.find('input[name="name"]').val().trim(),
phone: $searchForm.find('input[name="phone"]').val().trim(),
+ type: $searchForm.find("select[name='type']").val(),
};
}
--
Gitblit v1.9.1