Commit be13bf81 authored by zhengke's avatar zhengke

修改

parent a44cca74
...@@ -1932,20 +1932,23 @@ export default { ...@@ -1932,20 +1932,23 @@ export default {
null null
); );
}, },
refreshSysNoteDate(add) { refreshSysNoteDate(add) {
this.sysMsgList = []; this.sysMsgList = [];
if (add) { if (add) {
this.sysMsgPageIndex = this.sysMsgPageIndex + 1; this.sysMsgPageIndex = this.sysMsgPageIndex + 1;
} }
let userInfo = this.getLocalStorage();
let RBBranchid = userInfo.RB_Branch_id; //集团
let EmployeeId = userInfo.EmployeeId; //员工ID
// todo 实现加载系统通知 // todo 实现加载系统通知
//获取消息列表 //获取消息列表
let msg = { let msg = {
pageIndex: this.sysMsgPageIndex, pageIndex: this.sysMsgPageIndex,
pageSize: "5", pageSize: "5",
RB_BranchId: parseInt(this.$cookie.get("RB_Branch_id")), RB_BranchId: RBBranchid,
IsRead: 0, IsRead: 0,
IsSys: 1, IsSys: 1,
Recipient: parseInt(this.$cookie.get("EmployeeId")), Recipient: EmployeeId,
RecPlatform: 2, RecPlatform: 2,
Title: "", Title: "",
Type: "0", Type: "0",
......
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