|
@@ -24,6 +24,14 @@
|
|
|
3: icon3,
|
|
|
}
|
|
|
const portalLinkOptions = ref(tool.dictList('portal_link'))
|
|
|
+ let timer = setInterval(() => {
|
|
|
+ if (portalLinkOptions.value.length === 0) {
|
|
|
+ portalLinkOptions.value = tool.dictList('portal_link')
|
|
|
+ } else {
|
|
|
+ clearInterval(timer)
|
|
|
+ }
|
|
|
+ }, 500)
|
|
|
+
|
|
|
const toLink = (item) => {
|
|
|
window.open(item.value)
|
|
|
}
|