diff --git a/src/api/xm/core/xmMenuComment.js b/src/api/xm/core/xmMenuComment.js
index 9064ac64..e209ebec 100644
--- a/src/api/xm/core/xmMenuComment.js
+++ b/src/api/xm/core/xmMenuComment.js
@@ -27,6 +27,10 @@ export const editXmMenuComment = params => { return axios.post(`${base}/xm/core/
//新增一条档案评论表
export const addXmMenuComment = params => { return axios.post(`${base}/xm/core/xmMenuComment/add`, params); };
+
+//点赞一条评论
+export const praiseXmMenuComment = params => { return axios.post(`${base}/xm/core/xmMenuComment/praise`, params); };
+
//批量修改某些字段
export const editSomeFieldsXmMenuComment = params => { return axios.post(`${base}/xm/core/xmMenuComment/editSomeFields`, params); };
diff --git a/src/views/xm/core/xmMenu/XmMenuEdit.vue b/src/views/xm/core/xmMenu/XmMenuEdit.vue
index 17880ef7..f3ba6af8 100644
--- a/src/views/xm/core/xmMenu/XmMenuEdit.vue
+++ b/src/views/xm/core/xmMenu/XmMenuEdit.vue
@@ -234,7 +234,7 @@
-
+
上传附件
@@ -244,6 +244,9 @@
+
+
+
@@ -300,6 +303,7 @@
import XmEpicFeaturesSelect from "../xmMenu/XmEpicFeaturesSelect";
import MdpSelectUserXm from '@/views/xm/core/components/MdpSelectUserXm'
+import CommentArea from '../xmMenuComment/comment-area.vue';
export default {
computed: {
...mapGetters([
@@ -638,6 +642,7 @@
'xm-workload-record':()=>import("../xmWorkload/XmWorkloadRecord"),
XmEpicFeaturesSelect,
xmQuestionMng,
+ CommentArea,
},
mounted() {
diff --git a/src/views/xm/core/xmMenuComment/XmMenuCommentEdit.vue b/src/views/xm/core/xmMenuComment/XmMenuCommentEdit.vue
deleted file mode 100644
index 71df12c5..00000000
--- a/src/views/xm/core/xmMenuComment/XmMenuCommentEdit.vue
+++ /dev/null
@@ -1,204 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 取消
- 提交
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/src/views/xm/core/xmMenuComment/XmMenuCommentMng.vue b/src/views/xm/core/xmMenuComment/XmMenuCommentMng.vue
deleted file mode 100644
index d38b2a6f..00000000
--- a/src/views/xm/core/xmMenuComment/XmMenuCommentMng.vue
+++ /dev/null
@@ -1,372 +0,0 @@
-
-
-
-
- 查询
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- {{scope.row.userid}}
-
-
-
-
- {{scope.row.username}}
-
-
-
-
- {{scope.row.star}}
-
-
-
-
- {{scope.row.cdate}}
-
-
-
-
- {{scope.row.menuId}}
-
-
-
-
- {{scope.row.pid}}
-
-
-
-
- {{scope.row.ups}}
-
-
-
-
- {{scope.row.isShow}}
-
-
-
-
- {{scope.row.toUserid}}
-
-
-
-
- {{scope.row.toUsername}}
-
-
-
-
- {{scope.row.lvl}}
-
-
-
-
- {{scope.row.context}}
-
-
-
-
- {{scope.row.branchId}}
-
-
-
-
- {{scope.row.ip}}
-
-
-
-
- {{scope.row.cityId}}
-
-
-
-
- {{scope.row.cityName}}
-
-
-
-
- {{scope.row.status}}
-
-
-
-
- {{scope.row.childNums}}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/src/views/xm/core/xmMenuComment/comment-area.vue b/src/views/xm/core/xmMenuComment/comment-area.vue
index c05f7f26..7e4b9985 100644
--- a/src/views/xm/core/xmMenuComment/comment-area.vue
+++ b/src/views/xm/core/xmMenuComment/comment-area.vue
@@ -13,7 +13,7 @@