Explorar el Código

08.15修改问题

zhuohongkui hace 1 año
padre
commit
9418999bd0
Se han modificado 4 ficheros con 66 adiciones y 54 borrados
  1. 2 2
      App.vue
  2. 20 17
      pages.json
  3. 43 34
      pages/deal/deal.vue
  4. 1 1
      utils/http.js

+ 2 - 2
App.vue

@@ -9,13 +9,13 @@
 					getApp().globalData.config=menu
 				uni.setTabBarItem({
 				  index: 0,
-				  text: menu.simple_menu,
+				  text: menu.acc_menu,
 				  iconPath: BASE_URL+menu.simple_logo,
 				  selectedIconPath: BASE_URL+menu.simple_logo2
 				})
 				uni.setTabBarItem({
 				  index: 1,
-				  text: menu.acc_menu,
+				  text: menu.simple_menu,
 				  iconPath: BASE_URL+menu.acc_logo,
 				  selectedIconPath: BASE_URL+menu.acc_logo2
 				})

+ 20 - 17
pages.json

@@ -1,6 +1,18 @@
 {
 	"pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
 		{
+			"path" : "pages/deal/deal",
+			"style" :                                                                                    
+			{
+				// "navigationBarTitleText": "账号交易",
+				"enablePullDownRefresh": true,
+				"navigationStyle": "custom"
+				
+			}
+			
+		},
+		
+		{
 			"path": "pages/index/index",
 			"style": {
 				// "navigationBarTitleText": "简图速览",
@@ -8,17 +20,7 @@
 				
 			}
 		}
-	    ,{
-            "path" : "pages/deal/deal",
-            "style" :                                                                                    
-            {
-                // "navigationBarTitleText": "账号交易",
-                "enablePullDownRefresh": true,
-				"navigationStyle": "custom"
-				
-            }
-            
-        }
+	    
         ,{
             "path" : "pages/skip/skip",
             "style" :                                                                                    
@@ -65,12 +67,7 @@
 		"borderStyle": "white",
 		"backgroundColor": "#fff",
 		"fontSize": "16px",
-		"list": [{
-				"pagePath": "pages/index/index",
-				"text": "简图速览"
-				// "selectedIconPath": "/static/icon/indexS@2x.png",
-				// "iconPath": "/static/icon/index@2x.png"
-			},
+		"list": [
 			{
 				"pagePath": "pages/deal/deal",
 				"text": "账号交易"
@@ -78,6 +75,12 @@
 				// "iconPath": "/static/icon/profile@2x.png"
 			},
 			{
+				"pagePath": "pages/index/index",
+				"text": "简图速览"
+				// "selectedIconPath": "/static/icon/indexS@2x.png",
+				// "iconPath": "/static/icon/index@2x.png"
+			},
+			{
 				"pagePath": "pages/skip/skip",
 				"text": "快捷跳转"
 				// "selectedIconPath": "/static/icon/profileS@2x.png",

+ 43 - 34
pages/deal/deal.vue

@@ -255,6 +255,7 @@
 			</view>
 		</view>
 	</u-overlay>
+	<view class="ICP">ICP备案号:苏ICP备2023025782号</view>
 </template>
 
 <script setup>
@@ -274,40 +275,40 @@
 		getplatformeditor().then(res => {
 			mark_notice.value = res.data.mark_notice
 		})
-		uni.hideTabBar()
-		getplatformmeun().then(res=>{
-			text1.value=res.data.acc_notice
-			let menu=res.data
-				getApp().globalData.config=menu
-			uni.setTabBarItem({
-			  index: 0,
-			  text: menu.simple_menu,
-			  iconPath: BASE_URL+menu.simple_logo,
-			  selectedIconPath: BASE_URL+menu.simple_logo2
-			})
-			uni.setTabBarItem({
-			  index: 1,
-			  text: menu.acc_menu,
-			  iconPath: BASE_URL+menu.acc_logo,
-			  selectedIconPath: BASE_URL+menu.acc_logo2
-			})
-			uni.setTabBarItem({
-			  index: 2,
-			  text: menu.jump_menu,
-			  iconPath: BASE_URL+menu.jump_logo,
-			  selectedIconPath: BASE_URL+menu.jump_logo2
-			})
-			uni.setTabBarItem({
-			  index: 3,
-			  text: menu.information_menu,
-			  iconPath: BASE_URL+menu.information_logo,
-			  selectedIconPath: BASE_URL+menu.information_logo2
-			})
-			uni.showTabBar()
-			uni.setNavigationBarTitle({
-				title: res.data.name
-			});
-		})
+		// uni.hideTabBar()
+		// getplatformmeun().then(res=>{
+		// 	text1.value=res.data.acc_notice
+		// 	let menu=res.data
+		// 		getApp().globalData.config=menu
+		// 	uni.setTabBarItem({
+		// 	  index: 0,
+		// 	  text: menu.simple_menu,
+		// 	  iconPath: BASE_URL+menu.simple_logo,
+		// 	  selectedIconPath: BASE_URL+menu.simple_logo2
+		// 	})
+		// 	uni.setTabBarItem({
+		// 	  index: 1,
+		// 	  text: menu.acc_menu,
+		// 	  iconPath: BASE_URL+menu.acc_logo,
+		// 	  selectedIconPath: BASE_URL+menu.acc_logo2
+		// 	})
+		// 	uni.setTabBarItem({
+		// 	  index: 2,
+		// 	  text: menu.jump_menu,
+		// 	  iconPath: BASE_URL+menu.jump_logo,
+		// 	  selectedIconPath: BASE_URL+menu.jump_logo2
+		// 	})
+		// 	uni.setTabBarItem({
+		// 	  index: 3,
+		// 	  text: menu.information_menu,
+		// 	  iconPath: BASE_URL+menu.information_logo,
+		// 	  selectedIconPath: BASE_URL+menu.information_logo2
+		// 	})
+		// 	uni.showTabBar()
+		// 	uni.setNavigationBarTitle({
+		// 		title: res.data.name
+		// 	});
+		// })
 	getBanner()
 	getSelLabel().then(res=>{
 		labelList.value=res.data
@@ -849,4 +850,12 @@ border-radius: 30rpx;
 			}
 		}
 	}
+	.ICP{
+		height: 40rpx;
+		font-size: 20rpx;
+		width: 100%;
+		text-align: center;
+		color: #999999;
+		line-height: 30rpx;
+	}
 </style>

+ 1 - 1
utils/http.js

@@ -1,6 +1,6 @@
 // 全局请求路径,也就是后端的请求基准路径
 export const BASE_URL = 'https://banmayouxi.oss-cn-beijing.aliyuncs.com'//正式
-export const BASE_URL1 = 'https://bm.hdlkeji.com'//正式
+export const BASE_URL1 = 'http://banma8188.com'//正式
 // 同时发送异步代码的次数,防止一次点击中有多次请求,用于处理
 let ajaxTimes=0;
 // 封装请求方法,并向外暴露该方法