소스 검색

14.7.1 bug 修复

bding 11 달 전
부모
커밋
426e1f8899
2개의 변경된 파일3개의 추가작업 그리고 3개의 파일을 삭제
  1. 1 1
      src/views/custom_manage/contacts/compontents/contactsColums.js
  2. 2 2
      src/views/custom_manage/contacts/mixins/mutualAssistance.js

+ 1 - 1
src/views/custom_manage/contacts/compontents/contactsColums.js

@@ -291,7 +291,7 @@ export const tableColums = (type) => {
     ? [
         {
           label: "文章标题",
-          key: "TagName",
+          key: "Title",
         },
         {
           label: "文章类型",

+ 2 - 2
src/views/custom_manage/contacts/mixins/mutualAssistance.js

@@ -114,9 +114,9 @@ export const mutualMixin = {
     handleRowStyle(key) {
       const style = {
         Title: "color: #409eff; cursor: pointer",
-        ActivityName: "color: #409eff; cursor: pointer",
+        ActivityName: this.activeName == 1 || this.activeName == 8 ? "color: #409eff; cursor: pointer" : "",
       };
-      return style[key] && (this.activeName == 1 || this.activeName == 8) ? style[key] : "";
+      return style[key] ? style[key] : "";
     },
     /* 表格行的点击事件 */
     handleRowClick(row, key) {