From 1dcb81f481a4dc8b4ad2c430ce13975f069f5a1c Mon Sep 17 00:00:00 2001 From: Tuzki <1720599558@qq.com> Date: Wed, 11 Sep 2024 20:43:10 +0800 Subject: [PATCH] =?UTF-8?q?=E9=85=8D=E7=BD=AE=E6=9B=B4=E6=96=B0=E5=92=8C?= =?UTF-8?q?=E9=A1=B5=E9=9D=A2=E4=BC=98=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 更新了API和页面请求的URL配置,以指向新的服务器地址。 - 优化了首页和部分子页面的布局和交互,增强了用户体验。- 修正了个人中心页面的订单按钮布局和景区、酒店订单的路由。 - 优化了瀑布流组件的显示逻辑,确保内容加载和布局的稳定性。 -进行了各类列表展示的优化,提升了页面加载速度和性能。此次更新涉及多个页面和组件的调整,旨在提升系统的整体性能和用户交互体验。 --- common/config.js | 4 +- .../components/wxParseTemplate1.vue | 5 +- pages/index/index.vue | 145 ++-- pages/personcenter/personcenter.1vue | 618 ------------------ pages/personcenter/personcenter.vue | 68 +- pages/zhoubian/zhoubian/zhoubian.vue | 6 +- static/animg/personCenter/hotelDd.png | Bin 0 -> 2374 bytes static/animg/personCenter/senceDd.png | Bin 0 -> 2645 bytes subPageA/food/fooddetial/fooddetial.vue | 2 +- .../travelroutelist/travelroutelist.vue | 2 +- 10 files changed, 93 insertions(+), 757 deletions(-) delete mode 100644 pages/personcenter/personcenter.1vue create mode 100755 static/animg/personCenter/hotelDd.png create mode 100755 static/animg/personCenter/senceDd.png diff --git a/common/config.js b/common/config.js index 3dce3cc..8ec1744 100644 --- a/common/config.js +++ b/common/config.js @@ -1,9 +1,9 @@ // const REAUEST_ROOTPATH = "https://hdyjy.jiangongtong.cn/"; // const REAUEST_ROOTPATH = "https://app.xawl.gov.cn/"; // const ROOTPATH = "https://app.xawl.gov.cn/"; -const REAUEST_ROOTPATH = "http://192.168.110.113:8083"; +const REAUEST_ROOTPATH = "http://192.168.130.205:8083"; // const REAUEST_ROOTPATH = "http://192.168.0.181:8083/"; -const ROOTPATH = "http://192.168.110.113:8083"; +const ROOTPATH = "http://192.168.130.205:8083"; //票务根 const PWPATH = "http://192.168.130.157:48080/app-api"; //手绘图项目名称 diff --git a/components/gaoyia-parse/components/wxParseTemplate1.vue b/components/gaoyia-parse/components/wxParseTemplate1.vue index fa8053f..2bac4e0 100644 --- a/components/gaoyia-parse/components/wxParseTemplate1.vue +++ b/components/gaoyia-parse/components/wxParseTemplate1.vue @@ -42,7 +42,7 @@ - + {{ node }} @@ -71,6 +71,9 @@ wxParseAudio, wxParseTable }, + mounted() { + console.log(this.node,'node----') + }, methods: { wxParseATap(attr,e) { const { diff --git a/pages/index/index.vue b/pages/index/index.vue index ce19e4d..701d17e 100644 --- a/pages/index/index.vue +++ b/pages/index/index.vue @@ -88,40 +88,35 @@ - + - - - + + + 大美鹿泉 - + - - - - - - - - + + + + + + {{ item.sname }} - + - + 酒店 @@ -142,89 +137,32 @@ - + 鹿泉味道 - - - - - - - - - {{ item.title }} - {{ item.content }} - - - - - - - - - 非遗 - + - + + {{ item.title }} + + - - - - 旅游线路 - - - - - - - {{ lineOneList.lname }} - - - - - - - {{ item.lname }} - {{ item.lspecial }} - - - - - - + - - - - 特产 - - - - - - - - {{ item.title }} - {{ item.content }} - - - - + @@ -239,7 +177,7 @@ export default { data() { return { currIndex: 0, - slideNav: ["热门推荐", "怎么玩", "吃什么", "住哪里", "去哪买"], + slideNav: ["怎么玩", "吃什么", "住哪里"], trueVcal: true, falseDots: false, @@ -414,7 +352,8 @@ export default { this.image3 = this.images[0]; //景区 var scenicList = initData.scenicList; - var scLength = scenicList.length > 4 ? 4 : scenicList.length; + // var scLength = scenicList.length > 4 ? 4 : scenicList.length; + var scLength = scenicList.length; var scdata = []; for (let i = 0; i < scLength; i++) { scenicList[i].slogo = this.$config.ROOTPATH + scenicList[i].slogo; @@ -423,7 +362,8 @@ export default { this.scenicList = scdata; //美食 var foodList = initData.foodList; - var foodLength = foodList.length > 4 ? 4 : foodList.length; + // var foodLength = foodList.length > 4 ? 4 : foodList.length; + var foodLength = foodList.length; for (var i = 0; i < foodLength; i++) { var item = { logo: this.$config.ROOTPATH + foodList[i].logo, @@ -436,7 +376,8 @@ export default { } //线路 var lineList = initData.lineList; - var lineLength = lineList.length > 4 ? 4 : lineList.length; + // var lineLength = lineList.length > 4 ? 4 : lineList.length; + var lineLength = lineList.length; var list = []; for (var i = 0; i < lineLength; i++) { lineList[i].llogo = this.$config.ROOTPATH + lineList[i].llogo; @@ -455,7 +396,8 @@ export default { //酒店 debugger var hotelList = initData.hotelList; - var hotelLength = hotelList.length > 4 ? 4 : hotelList.length; + // var hotelLength = hotelList.length > 4 ? 4 : hotelList.length; + var hotelLength = hotelList.length; var list1 = []; for (var i = 0; i < hotelLength; i++) { hotelList[i].hlogo = this.$config.ROOTPATH + hotelList[i].hlogo; @@ -465,7 +407,8 @@ export default { //特产 var specialtyList = initData.specialtyList; - var specialltyLength = specialtyList.length > 4 ? 4 : specialtyList.length; + // var specialltyLength = specialtyList.length > 4 ? 4 : specialtyList.length; + var specialltyLength = specialtyList.length; var list2 = []; for (var i = 0; i < specialltyLength; i++) { specialtyList[i].slogo = this.$config.ROOTPATH + specialtyList[i].slogo; @@ -475,7 +418,8 @@ export default { this.specialtyList = list2; //非遗 var feiyiList = initData.feiyiList; - var feiyiLength = feiyiList.length > 4 ? 4 : feiyiList.length; + // var feiyiLength = feiyiList.length > 4 ? 4 : feiyiList.length; + var feiyiLength = feiyiList.length; var list3 = []; for (var i = 0; i < feiyiLength; i++) { feiyiList[i].logo = this.$config.ROOTPATH + feiyiList[i].logo; @@ -859,7 +803,7 @@ export default { margin-top: 20rpx; .m-slide-item { - width: 20%; + width: 33%; font-family: Source Han Sans SC; font-weight: 400; font-size: 30rpx; @@ -868,17 +812,18 @@ export default { transition: all ease-in-out 0.2s; z-index: 1; background-repeat: no-repeat; - background-size: 50%; - background-position: 0 15px; + background-size: 25%; + background-position: 50% 15px; padding-bottom: 10px; + text-align: center; } .curr { scale: 1.1; background-image: url("@/static/animg/index/active-nav-bg.png"); background-repeat: no-repeat; - background-size: 50%; - background-position: 10px 15px; + background-size: 30%; + background-position: 50% 15px; padding-bottom: 10px; } } diff --git a/pages/personcenter/personcenter.1vue b/pages/personcenter/personcenter.1vue deleted file mode 100644 index 27d13dd..0000000 --- a/pages/personcenter/personcenter.1vue +++ /dev/null @@ -1,618 +0,0 @@ - - - - - - - - - - - - - - - - - - - - Hi - - {{ nickname }} - - 退出 - - - - - - - - - 我的应用 - - - - 我的评价 - - - - - 我的订单 - - - - 在线投诉 - - - - 留言投诉 - - - - - 关于我们 - - - - 系统更新 - - - - 注销账号 - - - - - - - - - - - diff --git a/pages/personcenter/personcenter.vue b/pages/personcenter/personcenter.vue index b839776..ad1a71e 100644 --- a/pages/personcenter/personcenter.vue +++ b/pages/personcenter/personcenter.vue @@ -34,12 +34,20 @@ - - - 我的订单 - 立即查看 + + + + 景区订单 + + + + + + + 酒店订单 + + - @@ -327,49 +335,47 @@ export default { } .order-btn-box { - border-radius: 20rpx; - border: 1px solid #0983FF; - background-color: #F0F6FC; position: relative; display: flex; justify-content: space-between; align-items: center; - padding: 20rpx 40rpx; margin: 20rpx; - &::after { - content: ""; - width: 270rpx; + .left { + display: flex; + justify-content: flex-end; + align-items: center; + width: 48%; height: 128rpx; - position: absolute; - right: 100rpx; - top: -25rpx; - background-image: url('http://192.168.130.205:8083/upload/image/2024/mapIcon/daolan/ddbg.png'); - background-repeat: no-repeat; - background-position: top; - background-size: contain; - } + position: relative; - .left { + image { + width: 100%; + height: 100%; + position: absolute; + left: 0; + top: 0; + } .top { font-family: Source Han Sans SC; font-weight: 500; font-size: 32rpx; - color: #0983FF; + color: #113961; + z-index: 9; } - .feet { - font-family: Source Han Sans SC; - font-weight: 400; - font-size: 20rpx; - color: #FFFFFF; - padding: 5rpx 10rpx; - background: linear-gradient(-90deg, #0983FF, #57ABFF); - border-radius: 16rpx; - text-align: center; + .right { + margin-right: 40rpx; + margin-left: 20rpx; } } + .rights{ + .top{ + color: #612C11; + } + } + } .m-my-menu-list { diff --git a/pages/zhoubian/zhoubian/zhoubian.vue b/pages/zhoubian/zhoubian/zhoubian.vue index c3ce3ab..7e75b29 100644 --- a/pages/zhoubian/zhoubian/zhoubian.vue +++ b/pages/zhoubian/zhoubian/zhoubian.vue @@ -40,7 +40,7 @@ 酒店 - + @@ -776,7 +776,7 @@ map { right: 15px; width: 55px; z-index: 5; - bottom: 35%; + bottom: 55%; } .rightChoose_2 { diff --git a/static/animg/personCenter/hotelDd.png b/static/animg/personCenter/hotelDd.png new file mode 100755 index 0000000000000000000000000000000000000000..514795de9dbdd2e0b9f7c5d65dc5eb5e399e56dc GIT binary patch literal 2374 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 + 查看详细 - + diff --git a/subPageA/travelroute/travelroutelist/travelroutelist.vue b/subPageA/travelroute/travelroutelist/travelroutelist.vue index 85f5ed9..3fe9dfa 100644 --- a/subPageA/travelroute/travelroutelist/travelroutelist.vue +++ b/subPageA/travelroute/travelroutelist/travelroutelist.vue @@ -41,7 +41,7 @@
6?Lh!w=h;&JmF~96Roc<+Ww8~kX zhn2NDL>TU2R;yG`#CoUG$tq`cmemke)|ysp>AZ4`r4?F^UdIB+R%c;d)~b!w(h;UH z|IUEZ8l`dp zY4u)}J)&a}7C9jeDymJRj|VQ+pMw4)z*bYQLJFd-2bF8}z!mTta2yr_gMX)p;h=6D zSsANu1*(-n0d9