From a6b3c3c8e76755c1daba2b7276b398346bf00269 Mon Sep 17 00:00:00 2001
From: xiaoyong931011 <15274802129@163.com>
Date: Tue, 21 Jul 2020 13:41:50 +0800
Subject: [PATCH] 20200721  代码提交

---
 src/main/resources/templates/febs/views/modules/trademanage/contractHoldOrderAlone.html |    4 ++--
 src/main/resources/mapper/modules/ContractHoldOrderEntityMapper.xml                     |    4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/main/resources/mapper/modules/ContractHoldOrderEntityMapper.xml b/src/main/resources/mapper/modules/ContractHoldOrderEntityMapper.xml
index d37eab5..6ec2e3d 100644
--- a/src/main/resources/mapper/modules/ContractHoldOrderEntityMapper.xml
+++ b/src/main/resources/mapper/modules/ContractHoldOrderEntityMapper.xml
@@ -38,8 +38,8 @@
                 <if test="record.account!=null and record.account!=''">
                     and (m.phone = #{record.account} or m.email = #{record.account} or m.invite_id=#{record.account})
                 </if>
-                 <if test="record.isTest!=null and record.isTest!=''">
-                    and m.account_type= #{record.isTest}
+                 <if test="record.accountType!=null and record.accountType!=''">
+                    and m.account_type= #{record.accountType}
                 </if>
             </if>
 		</where>
diff --git a/src/main/resources/templates/febs/views/modules/trademanage/contractHoldOrderAlone.html b/src/main/resources/templates/febs/views/modules/trademanage/contractHoldOrderAlone.html
index 281e0e5..08555f9 100644
--- a/src/main/resources/templates/febs/views/modules/trademanage/contractHoldOrderAlone.html
+++ b/src/main/resources/templates/febs/views/modules/trademanage/contractHoldOrderAlone.html
@@ -15,7 +15,7 @@
                                     <div class="layui-inline">
                                         <label class="layui-form-label layui-form-label-sm">账号类型</label>
                                         <div class="layui-input-inline">
-                                            <select name="isTest">
+                                            <select name="accountType">
                                                 <option value=""></option>
                                                 <option value="1">正常账号</option>
                      							<option value="2">测试账号</option>
@@ -138,7 +138,7 @@
         function getQueryParams() {
             return {
                 account: $searchForm.find('input[name="account"]').val().trim(),
-                isTest: $searchForm.find("select[name='isTest']").val()
+                accountType: $searchForm.find("select[name='accountType']").val()
             };
         }
         

--
Gitblit v1.9.1