|
@@ -206,7 +206,7 @@
|
|
|
// @ is an alias to /src
|
|
|
import bilateralBarChart from "@/components/bilateralBarChart";
|
|
|
|
|
|
-import { list, listcsv, heightlightApi } from "@/api/index";
|
|
|
+import { list, listcsv,heightlightApi } from "@/api/index";
|
|
|
import config from "@/config/index";
|
|
|
let milestone = [];
|
|
|
export default {
|
|
@@ -298,7 +298,7 @@ export default {
|
|
|
else return "<el-icon><document-add /></el-icon>";
|
|
|
},
|
|
|
clickRow(row) {
|
|
|
- if (row.heightlight === "否") return;
|
|
|
+ if (!row.heightlight || row.heightlight === "否") return;
|
|
|
this.$router.push({
|
|
|
path: "/heightlight",
|
|
|
query: { id: row.ca_id, t: row.tv_id },
|
|
@@ -404,7 +404,7 @@ export default {
|
|
|
},
|
|
|
},
|
|
|
beforeUnmount: function() {
|
|
|
- milestone = null;
|
|
|
+ // milestone = null;
|
|
|
},
|
|
|
components: { bilateralBarChart },
|
|
|
};
|