BUG修改

This commit is contained in:
a0049873 2022-06-15 20:45:10 +08:00
parent 2218e034bd
commit 4087d54c40
1 changed files with 3 additions and 1 deletions

View File

@ -2,7 +2,7 @@
* @Author: hisense.liangjunhua * @Author: hisense.liangjunhua
* @Date: 2022-06-08 16:06:10 * @Date: 2022-06-08 16:06:10
* @LastEditors: hisense.liangjunhua * @LastEditors: hisense.liangjunhua
* @LastEditTime: 2022-06-15 18:26:36 * @LastEditTime: 2022-06-15 20:44:47
* @Description: 关联组件 * @Description: 关联组件
--> -->
<template> <template>
@ -32,6 +32,7 @@
}) })
const flag = ref(true) const flag = ref(true)
const goToView = (url) => { const goToView = (url) => {
console.log(url)
if (url) { if (url) {
console.log(url) console.log(url)
window.open(url, '_blank') window.open(url, '_blank')
@ -79,6 +80,7 @@
data.value.push({ data.value.push({
title: item.name, title: item.name,
text: item.desc, text: item.desc,
url: item.url,
icon: 'icon1', icon: 'icon1',
id: index, id: index,
}) })