任一存 1 yıl önce
ebeveyn
işleme
b01ffec73e

+ 1 - 3
README.md

@@ -7,8 +7,6 @@
 appId: wx0bc995dace29b2ba
 
 ## 待办
-埋点
-
 对接unity
 
 真正的登录功能
@@ -17,7 +15,7 @@ appId: wx0bc995dace29b2ba
 https://open.weixin.qq.com/connect/qrconnect?appid=wxaf343d333792a454&redirect_uri=https%3A%2F%2Fsit-wuxicishan.4dage.com%2FPC%2F%23%2Ftab-1&response_type=code&scope=snsapi_login&state=STATE#wechat_redirect
 
 ## 对接unity
-https://app.4dage.com/projects/wxcs/web/index.html?platform=h5&name={userName}&scene=${sceneCode}
+http://app.4dage.com/projects/wxcs/pc/web/index.html?platform=h5&name={userName}&scene=${sceneCode}
 
 ## sceneCode
 * 0: 慈善云学校

+ 11 - 4
src/components/RelicSearch.vue

@@ -80,13 +80,14 @@ const keyword = ref('')
 
 const areaList = ref([
   '全部',
+  '江阴市',
+  '宜兴市',
+  '梁溪区',
   '锡山区',
   '惠山区',
   '滨湖区',
-  '梁溪区',
-  '宜兴市',
-  '江阴市',
   '新吴区',
+  '经开区'
 ])
 const activeAreaIdx = ref(0)
 
@@ -175,7 +176,13 @@ watchEffect(() => {
   }
   >ul.relic-list{
     flex: 1 0 1px;
-    max-width: 1650px;
+    width: 1650px;
+    @media only screen and (max-width: 1650px) {
+      width: 1140px;
+    }
+    @media only screen and (max-width: 1150px) {
+      width: 600px;
+    }
     overflow: auto;
     margin-bottom: 50px;
     >li.relic-item{

+ 1 - 1
src/views/CharityHall.vue

@@ -22,7 +22,7 @@ store.dispatch('recordPageVisitIfNeeded', {
   pageId: 5,
 })
 
-const url = ref(`https://app.4dage.com/projects/wxcs/web/index.html?platform=h5&name=${store.state.userInfo.userName}&scene=1`)
+const url = ref(`http://app.4dage.com/projects/wxcs/pc/web/index.html?platform=h5&name=${store.state.userInfo.userName}&scene=1`)
 
 </script>
 

+ 1 - 1
src/views/CityOfXishan.vue

@@ -23,7 +23,7 @@ store.dispatch('recordPageVisitIfNeeded', {
 })
 
 const url = computed(() => {
-  let temp = `https://app.4dage.com/projects/wxcs/web/index.html?platform=h5&name=${store.state.userInfo.userName}`
+  let temp = `http://app.4dage.com/projects/wxcs/pc/web/index.html?platform=h5&name=${store.state.userInfo.userName}`
   if (route.query.scene !== undefined) {
     temp += `&scene=${route.query.scene}`
   }

+ 1 - 1
src/views/CloudSchool.vue

@@ -22,7 +22,7 @@ store.dispatch('recordPageVisitIfNeeded', {
   pageId: 7,
 })
 
-const url = ref(`https://app.4dage.com/projects/wxcs/web/index.html?platform=h5&name=${store.state.userInfo.userName}&scene=0`)
+const url = ref(`http://app.4dage.com/projects/wxcs/pc/web/index.html?platform=h5&name=${store.state.userInfo.userName}&scene=0`)
 
 </script>
 

+ 8 - 8
src/views/HomeView.vue

@@ -625,14 +625,14 @@ function onClickHotRelicSceneEntry() {
 
 const isShowAreaList = ref(true)
 const areaList = ref([
+  '江阴市',
+  '宜兴市',
+  '梁溪区',
   '锡山区',
   '惠山区',
   '滨湖区',
-  '梁溪区',
-  '宜兴市',
-  '江阴市',
   '新吴区',
-  '经开区',
+  '经开区'
 ])
 const activeAreaIdx = ref(-1)
 function onClickArea(idx) {
@@ -874,16 +874,16 @@ const iframeUrl = ref('')
       z-index: 0;
     }
     >menu.area-list{
-      display: flex;
-      flex-wrap: wrap;
-      flex-direction: row-reverse;
-      gap: 10px;
       margin-bottom: 2vh;
+      width: 384px;
+      margin-left: auto;
       &.hide{
         opacity: 0;
         pointer-events: none;
       }
       >button{
+        margin-left: 10px;
+        margin-bottom: 10px;
         width: 86px;
         height: 39px;
         border-radius: 53px 53px 53px 53px;

+ 1 - 1
src/views/LoveForest.vue

@@ -22,7 +22,7 @@ store.dispatch('recordPageVisitIfNeeded', {
   pageId: 6,
 })
 
-const url = ref(`https://app.4dage.com/projects/wxcs/web/index.html?platform=h5&name=${store.state.userInfo.userName}&scene=3`)
+const url = ref(`http://app.4dage.com/projects/wxcs/pc/web/index.html?platform=h5&name=${store.state.userInfo.userName}&scene=3`)
 
 </script>
 

+ 1 - 1
src/views/SquareView.vue

@@ -22,7 +22,7 @@ store.dispatch('recordPageVisitIfNeeded', {
   pageId: 3,
 })
 
-const url = ref(`https://app.4dage.com/projects/wxcs/web/index.html?platform=h5&name=${store.state.userInfo.userName}&scene=2`)
+const url = ref(`http://app.4dage.com/projects/wxcs/pc/web/index.html?platform=h5&name=${store.state.userInfo.userName}&scene=2`)
 
 </script>