From c08844c08e64ad79f25a7e68bbc3f41fea3cded8 Mon Sep 17 00:00:00 2001
From: xiaoyong931011 <15274802129@163.com>
Date: Wed, 25 Oct 2023 15:52:18 +0800
Subject: [PATCH] 版本管理

---
 src/main/resources/templates/febs/views/modules/chat/chatWithDrawList.html |    8 ++++++++
 1 files changed, 8 insertions(+), 0 deletions(-)

diff --git a/src/main/resources/templates/febs/views/modules/chat/chatWithDrawList.html b/src/main/resources/templates/febs/views/modules/chat/chatWithDrawList.html
index 8f3b2c7..c553ab7 100644
--- a/src/main/resources/templates/febs/views/modules/chat/chatWithDrawList.html
+++ b/src/main/resources/templates/febs/views/modules/chat/chatWithDrawList.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">
@@ -135,6 +141,7 @@
         // 获取查询参数
         function getQueryParams() {
             return {
+                phone: $searchForm.find('input[name="phone"]').val().trim(),
                 nickName: $searchForm.find('input[name="nickName"]').val().trim(),
                 address: $searchForm.find('input[name="address"]').val().trim(),
                 state: $searchForm.find("select[name='state']").val(),
@@ -152,6 +159,7 @@
                 totalRow: true ,// 开启合计行
                 cols: [[
                     {field: 'id', title: '', minWidth: 150,align:'center', totalRowText: '合计:',align:'center'},
+                    {field: 'phone', title: '电话号码', minWidth: 150,align:'center'},
                     {field: 'nickName', title: '昵称', minWidth: 150,align:'center'},
                     {field: 'amount', title: '金额', minWidth: 100,align:'center',align:'center',totalRow: '{{= parseInt(d.amount) }}'},
                     {field: 'type', title: '类型',

--
Gitblit v1.9.1