From a70577eb2258f67bde70e5f995c286c9aa5fb220 Mon Sep 17 00:00:00 2001
From: xiaoyong931011 <15274802129@163.com>
Date: Fri, 11 Nov 2022 02:27:25 +0800
Subject: [PATCH] 20221021
---
src/main/resources/templates/febs/views/dapp/money-change-flow.html | 16 +++++++---------
1 files changed, 7 insertions(+), 9 deletions(-)
diff --git a/src/main/resources/templates/febs/views/dapp/money-change-flow.html b/src/main/resources/templates/febs/views/dapp/money-change-flow.html
index 1716dac..74d9473 100644
--- a/src/main/resources/templates/febs/views/dapp/money-change-flow.html
+++ b/src/main/resources/templates/febs/views/dapp/money-change-flow.html
@@ -8,8 +8,9 @@
<div class="layui-col-md10">
<div class="layui-form-item">
<div class="layui-inline">
+ <label class="layui-form-label layui-form-label-sm">用户名</label>
<div class="layui-input-inline">
- <input type="text" name="address" autocomplete="off" placeholder="输入地址或邀请码" class="layui-input">
+ <input type="text" name="username" autocomplete="off" class="layui-input">
</div>
</div>
<div class="layui-inline">
@@ -145,20 +146,17 @@
{field: 'amount', title: '变化金额', minWidth: 100},
{field: 'afterAmount', title: '变化后金额', minWidth: 100},
{field: 'content', title: '描述', minWidth: 130},
- {title: '类型', templet: '#type-format'},
+ // {title: '类型', templet: '#type-format'},
{field: 'createTime', title: '创建时间', minWidth: 180}
]]
});
}
function getQueryParams() {
- // return {
- // inviteId: $searchForm.find('input[name="inviteId"]').val().trim(),
- // changeAble: $searchForm.find("select[name='changeAble']").val(),
- // accountStatus: $searchForm.find("select[name='accountStatus']").val(),
- // withdrawAble: $searchForm.find("input[name='withdrawAble']").val(),
- // invalidate_ie_cache: new Date()
- // };
+ return {
+ type: $searchForm.find("select[name='type']").val(),
+ username: $searchForm.find('input[name="username"]').val().trim()
+ };
}
function changeStatus(url) {
--
Gitblit v1.9.1