From e40ee62d3e9b71ffe3432d32a53a00c4097b5708 Mon Sep 17 00:00:00 2001
From: liuyg <376836862@qq.com>
Date: Fri, 31 Dec 2021 09:03:28 +0800
Subject: [PATCH] +3d 2.5d
---
src/components/arcNavBar/index.vue | 12 +++++++++---
1 files changed, 9 insertions(+), 3 deletions(-)
diff --git a/src/components/arcNavBar/index.vue b/src/components/arcNavBar/index.vue
index 470a231..8ec562e 100644
--- a/src/components/arcNavBar/index.vue
+++ b/src/components/arcNavBar/index.vue
@@ -175,6 +175,7 @@
var imgArr = result.tpurl.split(',')
var tabOne = res.data.data[0].jx.split(',')
+ var tabTwo = res.data.data[0].sh.split(',')
this.$store.commit('SET_POPUPBGURL', imgArr[0])
this.$store.commit('SET_POPUPQRURL', result.codeurl)
@@ -190,7 +191,12 @@
} else {
this.$store.commit('SET_TEACHLIST', [])
}
- this.$store.commit('SET_LIVELIST', [])
+
+ if (res.data.data[0].sh != '') {
+ this.$store.commit('SET_LIVELIST', tabTwo)
+ } else {
+ this.$store.commit('SET_LIVELIST', [])
+ }
this.newPopup(result)
this.viewer.flyToPosition(
@@ -224,8 +230,8 @@
width: 322px;
height: auto;
border-radius: 8px;
- top: 16%;
- left: 5%;
+ top: 140px;
+ left: 140px;
background-color: transparent;
z-index: 999;
font-size: 14px;
--
Gitblit v1.9.3