tremble 4 年之前
父節點
當前提交
834cceab70

+ 2 - 2
web/public/static/js/myShow.js

@@ -1,7 +1,7 @@
 var g_ProjectName=window.location.pathname.substring(window.location.pathname.indexOf("/")+1,window.location.pathname.lastIndexOf("/"));
-// var g_Prefix="http://8.135.106.227:8009/";
+var g_Prefix="http://8.135.106.227:8009/";
 // https://super.4dage.com/
-var g_Prefix=window.location.origin+'/';
+// var g_Prefix=window.location.origin+'/';
 
 var s = window.location.href.split('/');
 s.pop();

二進制
web/src/assets/video/video.mp4


二進制
web/src/assets/video/welcome.mp4


+ 1 - 1
web/src/views/gui/newguide.vue

@@ -14,7 +14,7 @@
           :key="i"
         >
           <div :class="{'slActive':guideActive === i,hoverCls:hoverIdx===i}">
-            <img @click="gotoLight(item)" @mouseleave="hoverOutHandle(item,i)" @mouseenter="hoverHandle(item,i)" :src="item.thumbnail_signed_src" :alt="item.name" />
+            <img @click="gotoLight(item)" @mouseleave="hoverOutHandle(item,i)" @mouseenter="hoverHandle(item,i)" :src="`http://8.135.106.227:8009/`+item.locations?item.locations[0].thumbnail_signed_src : item.thumbnail_signed_src" :alt="item.name" />
             <span :title="item.name">{{item.name}}</span>
           </div>
         </swiper-slide>

+ 3 - 2
web/src/views/uploadflie/index.vue

@@ -102,8 +102,8 @@ export default {
     async save(){
       if (!this.desc) {
         return this.$showAlert({
-                    tips:'请填写史料说明'
-                })
+            tips:'请填写史料说明'
+        })
       }
       let params = {
           "code": this.fileCode,
@@ -121,6 +121,7 @@ export default {
         this.$showAlert({
             tips:'提交成功'
         })
+        console.log(111111);
         this.$bus.$emit('toggleUploadFile',false)
       }
     },