From 32be57749006b37eab59916bb5c9823211320df9 Mon Sep 17 00:00:00 2001
From: xiaoyong931011 <15274802129@163.com>
Date: Mon, 30 Nov 2020 17:23:30 +0800
Subject: [PATCH] 20201130
---
src/main/resources/templates/febs/views/modules/orderCoin/orderCoin.html | 20 ++++++++++++++++----
1 files changed, 16 insertions(+), 4 deletions(-)
diff --git a/src/main/resources/templates/febs/views/modules/orderCoin/orderCoin.html b/src/main/resources/templates/febs/views/modules/orderCoin/orderCoin.html
index 1c3da65..49bcfa8 100644
--- a/src/main/resources/templates/febs/views/modules/orderCoin/orderCoin.html
+++ b/src/main/resources/templates/febs/views/modules/orderCoin/orderCoin.html
@@ -9,7 +9,7 @@
<div class="layui-form-item">
<div class="layui-inline">
<div class="layui-input-inline">
- <input type="text" placeholder="手机号/邮箱" name="phone" autocomplete="off" class="layui-input">
+ <input type="text" placeholder="邀请码" name="inviteId" autocomplete="off" class="layui-input">
</div>
</div>
</div>
@@ -81,8 +81,9 @@
url: ctx + 'orderCoin/page',
totalRow: true,
cols: [[
- {field: 'phone', title: '手机号码', minWidth: 120,align:'left',totalRowText: '合计'},
- {field: 'email', title: '邮箱', minWidth: 50,align:'left'},
+ //{field: 'phone', title: '手机号码', minWidth: 120,align:'left',totalRowText: '合计'},
+ //{field: 'email', title: '邮箱', minWidth: 50,align:'left'},
+ {field: 'inviteId', title: '邀请码', minWidth: 120,align:'left'},
{field: 'orderType', title: '订单类型',
templet: function (d) {
if (d.orderType === 1) {
@@ -109,6 +110,17 @@
{field: 'entrustPrice', title: '委托价', minWidth: 30,align:'center'},
{field: 'dealPrice', title: '成交价', minWidth: 30,align:'center'},
{field: 'dealAmount', title: '成交金额', minWidth: 30,align:'center'},
+ {field: 'ipo', title: '私募',
+ templet: function (d) {
+ if (d.ipo == 1) {
+ return '<span style="color:red;">是</span>'
+ } else if (d.ipo == 0) {
+ return '<span style="color:gray;">否</span>'
+ } else{
+ return '<span style="color:red;">是</span>'
+ }
+ },
+ minWidth: 20,align:'center'},
{field: 'feeAmount', title: '手续费', minWidth: 30,align:'center'},
{field: 'createTime', title: '创建时间', minWidth: 200,align:'center'},
]]
@@ -118,7 +130,7 @@
// 获取查询参数
function getQueryParams() {
return {
- phone: $searchForm.find('input[name="phone"]').val().trim()
+ inviteId: $searchForm.find('input[name="inviteId"]').val().trim()
};
}
--
Gitblit v1.9.1