Commit 456fc9c1 authored by rlgy's avatar rlgy

空投管理增加手机号

parent 1231c593
......@@ -12,18 +12,19 @@ table.render({
limit: 10,
url: '/admin/investment/index',
cols: [[
{field: 'uid', title: "UID"},
{field: 'nickname', title: "昵称"},
{field: 'coin', title: "币种"},
{field: 'count', title: "数量"},
{field: 'type', title: "类型"},
{field: 'status', title: "状态"},
{field: 'address', title: "地址"},
{field: 'create_at', title: "添加时间"},
{field: 'update_at', title: "处理时间"}
{field: 'uid', title: 'UID'},
{field: 'nickname', title: '昵称'},
{field: 'phone', title: '手机'},
{field: 'coin', title: '币种'},
{field: 'count', title: '数量'},
{field: 'type', title: '类型'},
{field: 'status', title: '状态'},
{field: 'address', title: '地址'},
{field: 'create_at', title: '添加时间'},
{field: 'update_at', title: '处理时间'}
]]
});
$("#add1").click(function () {
$('#add1').click(function () {
//打开弹窗
$.get('/admin/investment/add-one', {}, function (str) {
var index = layer.open({
......
......@@ -84,6 +84,7 @@ class Investment extends BaseActiveRecord
'a.id',
'a.uid',
'c.nickname',
'c.phone',
'a.coin',
'a.count',
'b.name as type',
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment