shaogen1995 2 years ago
parent
commit
8ccc405f35

+ 1 - 1
H5场景/public/static/js/Hot.js

@@ -1644,7 +1644,7 @@ window.initHot = function (model) {
         var hots = hotGroup.children.filter(hot => hot.info.actionType.openHot);
         hots = hots.sort((a, b) => { return a.order - b.order });
         window.myHotList = hots
-        console.log(123, window.myHotList);
+        // console.log('12399999999999999999', window.myHotList);
         hots.forEach((hot) => {
             var li = document.createElement('li');
             var span = document.createElement('span');

+ 1 - 0
H5场景/public/static/js/Hot_new.js

@@ -1761,6 +1761,7 @@ window.initHot = function(model){
         var hots = hotGroup.children.filter(hot=>hot.info.actionType.openHot);
         hots = hots.sort((a,b)=>{return a.order - b.order});
         window.myHotList = hots
+        // console.log('12399999999999999999', window.myHotList);
         hots.forEach((hot)=>{
             var li = document.createElement('li');
             var span = document.createElement('span');

+ 1 - 0
H5场景/src/views/gui/compomemt/hotspot.vue

@@ -53,6 +53,7 @@ export default {
   },
   //生命周期 - 创建完成(可以访问当前this实例)
   created() {
+    // console.log('-------------',window.myHotList );
     this.data = window.myHotList || [];
   },
   //生命周期 - 挂载完成(可以访问DOM元素)

+ 5 - 3
H5场景/src/views/gui/guide.vue

@@ -26,7 +26,7 @@ export default {
 </script>
 <style lang="less" scoped>
 #status {
-  background-color: rgba(0,0,0,.8);
+  background-color: rgba(0, 0, 0, 0.8);
   color: #fff;
 }
 #progressBar {
@@ -35,10 +35,12 @@ export default {
   height: 100%;
   display: flex;
   align-items: center;
-  background-color: rgba(0,0,0,.8);
+  background-color: rgba(0, 0, 0, 0.8);
 }
 #playHead {
   background-color: transparent;
 }
-
+#thumb-container {
+  padding: 0 !important;
+}
 </style>