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

Commit d8664622 authored by liuran's avatar liuran

添加代理管理模块

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