|
@@ -66,13 +66,13 @@
|
|
|
<span v-if="cocoFlowList[0] && cocoFlowList[0].length" style="color: #00000066;">最近使用</span>
|
|
|
<div class="ulTCopyTxt"
|
|
|
v-for="(i,ind) in cocoFlowList[0]"
|
|
|
- @click="openNewWindow(i.url)" :key="ind+'ab'">
|
|
|
+ @click.stop="openNewWindow(i.url)" :key="ind+'ab'">
|
|
|
<div class="ulTCopyConT">{{ i.name }}</div>
|
|
|
</div>
|
|
|
<span v-if="cocoFlowList[0] && cocoFlowList[1].length" style="color: #00000066;">我的收藏</span>
|
|
|
|
|
|
<div class="ulTCopyTxt"
|
|
|
- v-for="(i,ind) in cocoFlowList[1]" @click="openNewWindow(i.url)" :key="ind+'a'">
|
|
|
+ v-for="(i,ind) in cocoFlowList[1]" @click.stop="openNewWindow(i.url)" :key="ind+'a'">
|
|
|
<div class="ulTCopyConT">{{ i.name }}</div>
|
|
|
</div>
|
|
|
</div>
|
|
@@ -270,6 +270,8 @@ import { API_CONFIG } from "@/common/apiConfig";
|
|
|
},
|
|
|
// 点击二级导航
|
|
|
async levTwo(val,index,aInd){
|
|
|
+ console.log('val,index,aInd',val,index,aInd);
|
|
|
+
|
|
|
|
|
|
this.activeL = ''
|
|
|
this.activeL = aInd +1
|