|
@@ -324,9 +324,6 @@ export default {
|
|
|
}
|
|
|
},
|
|
|
async lableKeysHandler(item) {
|
|
|
- const res = await Home.tagAddHistory({
|
|
|
- TagId: item.TagId,
|
|
|
- });
|
|
|
let actId = [];
|
|
|
this.$set(item, "isAct", !item.isAct);
|
|
|
this.lableIsRows.forEach((item) => {
|
|
@@ -337,6 +334,10 @@ export default {
|
|
|
this.page_no = 1;
|
|
|
this.actIdLable = actId.join(",");
|
|
|
this.getNewList();
|
|
|
+ if (!item.isAct) return;
|
|
|
+ const res = await Home.tagAddHistory({
|
|
|
+ TagId: item.TagId,
|
|
|
+ });
|
|
|
},
|
|
|
// 或者标签内容
|
|
|
async homeTagListCustom() {
|