@using WX.CRM.WebHelper;
@using WX.CRM.Model.Entity;
@using WX.CRM.Model.MAP;
@using WX.CRM.Common;
@using WX.CRM.Model.QueryMap
@{
ViewBag.Title = "我的桌面";
Layout = "~/Views/Shared/_Index_Layout2.cshtml";
}
|
|
@*
| |
微信用户名 |
微信号 |
昵称 |
状态 |
最后刷新时间 |
@{int i = 0;}
@foreach (var msg in (ViewBag.wxWorkAccount as List))
{
i++;
| @i |
@msg.UserName |
@msg.Alias |
@msg.NickName |
@(msg.OnLine == 1 ? "在线" : "离线") |
@msg.LastTime |
}
| *@
| |
标题 |
时间 |
操作 |
@{int n = 0;}
@foreach (var msg in (ViewBag.noticeList as List))
{
n++;
| @n |
@msg.TITLE |
@msg.CTIME |
查看 |
}
|