Commit bd181f3c by xiexiaoqin

fix:修改actionlog

parent 40b59535
...@@ -23,7 +23,7 @@ ...@@ -23,7 +23,7 @@
<view class="userDynamic"> <view class="userDynamic">
<view class="dynamicTime" data-groupId="{{item.meetingId}}" catchTap="nextDetail" data-item="{{item}}"> <view class="dynamicTime" data-groupId="{{item.meetingId}}" catchTap="nextDetail" data-item="{{item}}">
<text>{{dynamicItem.creator && dynamicItem.creator.name}}</text> <text>{{dynamicItem.creator && dynamicItem.creator.name}}</text>
<text>{{dynamicItem.actionLog}}</text> <text>{{actionLog[dynamicItem.commentCategory]}}</text>
<text>{{dynamicItem.createTime}}</text> <text>{{dynamicItem.createTime}}</text>
</view> </view>
<view class="desc" a:if="{{dynamicItem.remark}}">{{dynamicItem.remark}}</view> <view class="desc" a:if="{{dynamicItem.remark}}">{{dynamicItem.remark}}</view>
......
...@@ -32,6 +32,15 @@ let maxClickCount = 5; ...@@ -32,6 +32,15 @@ let maxClickCount = 5;
create.Page({ create.Page({
store: pageStore, store: pageStore,
data: { data: {
actionLog: {
"comment_reply": "添加了评论",
"file_create": "上传了文件",
"notes_create": "添加了笔记",
"notes_modify": "更新了笔记",
"task_create": "添加了任务",
"task_modify_success": "更新了任务",
"meeting_create": "添加了会议",
},
relatedAppPlatform: null, relatedAppPlatform: null,
sign: "", sign: "",
refresh: false, refresh: false,
......
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