From 7572b8dbd4c41ca9b6437a032da2aa1a0fdd5444 Mon Sep 17 00:00:00 2001 From: xiaoyong931011 <15274802129@163.com> Date: Mon, 17 May 2021 18:18:09 +0800 Subject: [PATCH] 20210517 云顶 --- src/main/resources/templates/febs/views/modules/member/applyCoin.html | 7 +++---- 1 files changed, 3 insertions(+), 4 deletions(-) diff --git a/src/main/resources/templates/febs/views/modules/member/applyCoin.html b/src/main/resources/templates/febs/views/modules/member/applyCoin.html index 4d261f3..c63bbc9 100644 --- a/src/main/resources/templates/febs/views/modules/member/applyCoin.html +++ b/src/main/resources/templates/febs/views/modules/member/applyCoin.html @@ -76,9 +76,7 @@ // 刷新按钮 $reset.on('click', function () { $searchForm[0].reset(); - treeSelect.revokeNode('dept'); - sortObject.type = 'null'; - tableIns.reload({where: getQueryParams(), page: {curr: 1}, initSort: sortObject}); + tableIns.reload({where: getQueryParams(), page: {curr: 1}}); }); function initTable() { @@ -99,7 +97,7 @@ {field: 'createTime', title: '创建时间', minWidth: 200,align:'center'}, {field: 'status', title: '状态', templet: function (d) { - if (d.status === 2) { + if (d.status === 1) { return '<span style="color:green;">已到账</span>' } else { return '' @@ -114,6 +112,7 @@ return { account: $searchForm.find('input[name="account"]').val().trim(), address: $searchForm.find('input[name="address"]').val().trim(), + isTest: $searchForm.find("select[name='isTest']").val() }; } -- Gitblit v1.9.1