diff --git a/app/wechat/view/fans/index.html b/app/wechat/view/fans/index.html
index f79b5f6a3..a72e12a54 100644
--- a/app/wechat/view/fans/index.html
+++ b/app/wechat/view/fans/index.html
@@ -34,13 +34,13 @@
{field: 'province', title: '所在区域', minWidth: 120, templet: '
{{d.country}} {{d.province}} {{d.city}}
'},
{field: 'sex', title: '性别', align: 'center', minWidth: 80, templet: '{{d.sex==1 ? "男" : (d.sex==2 ? "女" : "未知")}}
'},
{field: 'language', title: '所属国家', align: 'center', minWidth: 100, templet: '{{d.language}}
'},
- {field: 'subscribe_time', title: '关注时间', minWidth: 170, align: 'center', sort: true, templet: '{{d.subscribe_at}}
'},
{
field: 'subscribe', title: '订阅状态', align: "center", templet: function (d) {
if (d.subscribe > 0) return '已订阅';
- return '未订阅';
+ else return '未订阅';
}
},
+ {field: 'subscribe_time', title: '订阅时间', minWidth: 170, align: 'center', sort: true, templet: '{{d.subscribe_at}}
'},
{field: 'is_black', title: '是否黑名单', align: 'center', minWidth: 110, templet: '#StatusSwitchTpl'},
{toolbar: '#toolbar', title: '操作面板', align: 'center', fixed: 'right'}
]]