|
|
@@ -253,8 +253,14 @@ const logoFileNameList = [
|
|
|
'中证数据有限责任公司.png',
|
|
|
'朱雀基金管理有限公司.png',
|
|
|
]
|
|
|
+
|
|
|
+const activeCardIdxList = ref([])
|
|
|
+const activeCardIdxListRealTime = ref([])
|
|
|
const cardList = ref([])
|
|
|
+
|
|
|
function setCardList() {
|
|
|
+ activeCardIdxList.value = []
|
|
|
+ activeCardIdxListRealTime.value = []
|
|
|
cardList.value = []
|
|
|
nextTick(() => {
|
|
|
for (let index = 0; index < 8; index++) {
|
|
|
@@ -275,8 +281,6 @@ function setCardList() {
|
|
|
}
|
|
|
setCardList()
|
|
|
|
|
|
-const activeCardIdxList = ref([])
|
|
|
-const activeCardIdxListRealTime = ref([])
|
|
|
function onClickCard(card, cardIdx) {
|
|
|
if (activeCardIdxList.value.includes(cardIdx)) {
|
|
|
return
|