|
@@ -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) {
|