记得上下班打卡 | git大法好,push需谨慎

Commit d8664622 authored by liuran's avatar liuran

添加代理管理模块

parent 4321bf58
......@@ -51,48 +51,64 @@
title: '用户id'
},
{
field: 'orderCode',
title: '生活照'
field: 'img',
title: '生活照',
formatter: function(value, row, index) {
return $.table.imageView(value,"300", "300");
}
},
{
field: 'performanceTitle',
field: 'name',
title: '姓名'
},
{
field: 'getTicketType',
title: '性别'
field: 'sex',
title: '性别',
formatter: function(value, row, index) {
if (value == 1) {
return '男';
} else {
return '女';
}
}
},
{
field: 'getTicketType',
field: 'birthday',
title: '年龄'
},
{
field: 'paymentType',
field: 'phone',
title: '手机号'
},
{
field: 'userId',
title: '身份'
field: 'identity',
title: '身份',
formatter: function(value, row, index) {
if (value == 1) {
return '在校学生';
} else {
return '已毕业';
}
}
},
{
field: 'userName',
field: 'schoolName',
title: '学校/公司名称'
},
{
field: 'number',
field: 'province',
title: '地区'
},
{
field: 'userId',
title: '类型'
},
{
field: 'userMobile',
title: '状态'
},
{
field: 'qrCode',
title: '客户端'
field: 'agent',
title: '类型',
formatter: function(value, row, index) {
if (value == 1) {
return '总代';
} else {
return '普代';
}
}
},
{
title: '操作',
......
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