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

Commit d341a6a9 authored by xuchen's avatar xuchen

修改代理管理

parent 3eb9424e
......@@ -104,10 +104,23 @@
field: 'type',
title: '类型',
formatter: function(value, row, index) {
if (value == 1) {
if (value === 1) {
return '总代';
} else {
} else if(value === 2){
return '普代';
}else{
return '特邀代理'
}
}
},
{
field: 'state',
title: '状态',
formatter: function(value, row, index) {
if (value === 0) {
return '正常';
} else {
return '黑名单';
}
}
},
......
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