From b6cfeee9e1df352d40ee17c94bf276b7a514226d Mon Sep 17 00:00:00 2001
From: xiaoyong931011 <15274802129@163.com>
Date: Fri, 27 Oct 2023 17:22:59 +0800
Subject: [PATCH] 版本管理
---
src/main/resources/templates/febs/views/modules/chat/chatAmountFlow.html | 24 +++++++++++++++++++++++-
1 files changed, 23 insertions(+), 1 deletions(-)
diff --git a/src/main/resources/templates/febs/views/modules/chat/chatAmountFlow.html b/src/main/resources/templates/febs/views/modules/chat/chatAmountFlow.html
index 80b2a9b..6ad255a 100644
--- a/src/main/resources/templates/febs/views/modules/chat/chatAmountFlow.html
+++ b/src/main/resources/templates/febs/views/modules/chat/chatAmountFlow.html
@@ -8,6 +8,12 @@
<div class="layui-col-md10">
<div class="layui-form-item">
<div class="layui-inline">
+ <label class="layui-form-label">电话号码:</label>
+ <div class="layui-input-inline">
+ <input type="text" placeholder="电话号码" name="phone" autocomplete="off" class="layui-input">
+ </div>
+ </div>
+ <div class="layui-inline">
<label class="layui-form-label">昵称:</label>
<div class="layui-input-inline">
<input type="text" placeholder="昵称" name="nickName" autocomplete="off" class="layui-input">
@@ -25,6 +31,13 @@
<option value="4">转账</option>
<option value="5">创建群聊</option>
<option value="6">系统拨付</option>
+ <option value="7">团队奖励</option>
+ <option value="8">集团奖励</option>
+ <option value="9">中雷补偿</option>
+ <option value="10">中雷扣除</option>
+ <option value="11">发送红包</option>
+ <option value="12">领取红包</option>
+ <option value="13">红包退回</option>
</select>
</div>
</div>
@@ -64,6 +77,13 @@
4: {title: '转账', color: 'orange'},
5: {title: '创建群聊', color: 'green'},
6: {title: '系统拨付', color: 'blue'},
+ 7: {title: '团队奖励', color: 'blue'},
+ 8: {title: '集团奖励', color: 'blue'},
+ 9: {title: '中雷补偿', color: 'blue'},
+ 10: {title: '中雷扣除', color: 'blue'},
+ 11: {title: '发送红包', color: 'blue'},
+ 12: {title: '领取红包', color: 'blue'},
+ 13: {title: '红包退回', color: 'blue'},
}[d.type];
}}
<span class="layui-badge febs-bg-{{type.color}}">{{ type.title }}</span>
@@ -109,6 +129,7 @@
// 获取查询参数
function getQueryParams() {
return {
+ phone: $searchForm.find('input[name="phone"]').val().trim(),
nickName: $searchForm.find('input[name="nickName"]').val().trim(),
type: $searchForm.find("select[name='type']").val()
};
@@ -123,7 +144,8 @@
// defaultToolbar:[],
totalRow: true ,// 开启合计行
cols: [[
- {field: 'nickName', title: '昵称', minWidth: 150,align:'center', totalRowText: '合计:',align:'center'},
+ {field: 'phone', title: '电话号码', minWidth: 150,align:'center', totalRowText: '合计:'},
+ {field: 'nickName', title: '昵称', minWidth: 150,align:'center'},
{title: '操作类型', minWidth: 150,templet: '#flow-type',align:'center'},
{field: 'amount', title: '金额', minWidth: 100,align:'center',align:'center',totalRow: '{{= parseInt(d.amount) }}'},
{field: 'state', title: '状态',
--
Gitblit v1.9.1