mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/learning-system-portal.git
synced 2025-12-11 03:46:44 +08:00
留言
This commit is contained in:
@@ -232,12 +232,12 @@ export default {
|
||||
);
|
||||
let event = {
|
||||
key: "ViewCase",//后台的事件key 发布文章且审核通过
|
||||
title: this.caseDetail.title,//事件的标题
|
||||
title: '查看案例',//事件的标题
|
||||
parameters:"",//用户自定义参数 name:value,name:value
|
||||
content: this.caseDetail.summary,//事件的内容
|
||||
content: '查看了案例',//事件的内容
|
||||
objId: this.resolveId,//关联的id
|
||||
objType: "3",//关联的类型
|
||||
objInfo: "案例",
|
||||
objInfo:this.caseDetail.title,
|
||||
aid: this.userInfo.aid, //当前登录人的id
|
||||
aname: this.userInfo.name,//当前人的姓名
|
||||
status: 1 //状态,直接写1
|
||||
@@ -245,8 +245,8 @@ export default {
|
||||
this.$store.dispatch("userTrigger", event);
|
||||
this.setTimeCase = setTimeout(()=>{
|
||||
event.key = 'ReadCase';
|
||||
event.title = this.caseDetail.title;
|
||||
event.content = this.caseDetail.summary;
|
||||
event.title = '阅读案例';
|
||||
event.content = '阅读了案例';
|
||||
this.$store.dispatch("userTrigger", event);
|
||||
},1000 * 60 *3)
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user