diff --git a/pages/index/index.wxml b/pages/index/index.wxml
index b67b8b1..7670cae 100644
--- a/pages/index/index.wxml
+++ b/pages/index/index.wxml
@@ -41,7 +41,7 @@
-->
-
@@ -52,9 +52,9 @@
-
-
+
+
+
diff --git a/pages/index/index.wxss b/pages/index/index.wxss
index d572713..b33327d 100644
--- a/pages/index/index.wxss
+++ b/pages/index/index.wxss
@@ -74,7 +74,7 @@ page {
background-image: url("https://static.ticket.sz-trip.com/uploads/20250526/150bd1f9312967bd7d9bedc6dbb8dd48.png");
background-size: 100% auto;
background-repeat: repeat-y;
- padding-top: 63rpx;
+ /* padding-top: 63rpx; */
}
.top-icons {
@@ -99,8 +99,8 @@ page {
margin-right: 0;
}
.top-icon-item image {
- width: 100rpx;
- height: 100rpx;
+ width: 80rpx;
+ height: 80rpx;
display: block;
transition: all 0.2s;
/* margin: 0 auto; */
@@ -108,7 +108,7 @@ page {
}
/* 金刚区滚动效果 */
.top-icon-item.active{
- height: 160rpx !important;
+ height: 170rpx !important;
margin-bottom: 0;
}
.top-icon-item.active image{
diff --git a/pages/pbService/aiHelpYou/index.js b/pages/pbService/aiHelpYou/index.js
index 0937865..3626d93 100644
--- a/pages/pbService/aiHelpYou/index.js
+++ b/pages/pbService/aiHelpYou/index.js
@@ -18,17 +18,17 @@ Page({
* 生命周期函数--监听页面加载
*/
onLoad: function (options) {
- let weburl = 'https://m.cloud.sz-trip.com/aiPlay'
+ let weburl = 'https://test.m.cloud.sz-trip.com/aiPlay?noShowHeaderBack=true'
let token = wx.getStorageSync('jstrip_token')
if (token) {
- weburl += '?token='+token
+ weburl += '&token='+token
}
let _this = this
try {
let lonAndLat = (wx.getStorageSync('lonAndLat'))
if (lonAndLat && JSON.parse(lonAndLat)) {
lonAndLat = JSON.parse(lonAndLat)
- if (Object.keys(webParam).length>0 || token) {
+ if (token) {
weburl+=`&lon=${lonAndLat.lon}&lat=${lonAndLat.lat}`
} else {
weburl+=`?lon=${lonAndLat.lon}&lat=${lonAndLat.lat}`
@@ -41,7 +41,7 @@ Page({
success: (res) => {
let lonAndLat = JSON.stringify({lat: res.latitude,lon: res.longitude})
wx.setStorageSync('lonAndLat', lonAndLat)
- if (Object.keys(webParam).length>0 || token) {
+ if (token) {
weburl+=`&lon=${lonAndLat.lon}&lat=${lonAndLat.lat}`
} else {
weburl+=`?lon=${lonAndLat.lon}&lat=${lonAndLat.lat}`