From dde7d54074db587277530651e02bd3af6b61b221 Mon Sep 17 00:00:00 2001
From: whycq <10027870+whycq@user.noreply.gitee.com>
Date: 星期四, 21 七月 2022 17:01:08 +0800
Subject: [PATCH] #

---
 pages/login/login.vue |   61 ++++++++++++++++++++++++------
 1 files changed, 49 insertions(+), 12 deletions(-)

diff --git a/pages/login/login.vue b/pages/login/login.vue
index eea9683..40909ff 100644
--- a/pages/login/login.vue
+++ b/pages/login/login.vue
@@ -48,20 +48,21 @@
 		<view>
 			<uni-popup ref="popup" type="right">
 				<view class="config">
-					<view>
-						<text>ip鍦板潃</text>
-						<input type="text" placeholder="192.168.1.1">
+					<view class="config-title"><text >閰嶇疆</text></view>
+					<view class="config-item">
+						<text>ip鍦板潃锛�</text>
+						<input v-model="IP" type="text" placeholder="192.168.1.1" placeholder-style="font-size:16rpx;text-indent: 10rpx;">
+					</view>
+					<view class="config-item">
+						<text>绔彛鍙凤細</text>
+						<input v-model="PORT" type="text" placeholder="8080" placeholder-style="font-size:16rpx;text-indent: 10rpx;">
+					</view>
+					<view class="config-item">
+						<text>椤圭洰锛�</text>
+						<input v-model="PJO" type="text" placeholder="jkwms" placeholder-style="font-size:16rpx;text-indent: 10rpx;">
 					</view>
 					<view>
-						<text>绔彛鍙�</text>
-						<input type="text" placeholder="8080">
-					</view>
-					<view>
-						<text>椤圭洰</text>
-						<input type="text" placeholder="jkwms">
-					</view>
-					<view>
-						<button>纭</button>
+						<button @click="configConfirm">纭</button>
 					</view>
 				</view>
 			</uni-popup>
@@ -128,6 +129,7 @@
 				rember:true,
 				IP:'',
 				PORT:'8080',// 榛樿绔彛鍙�
+				PJO:'jkwms'
             };
         },
 		mounted() {
@@ -192,6 +194,15 @@
 			// 閰嶇疆 URL PORT 椤圭洰(jkwms)
 			config() {
 				this.$refs.popup.open("center")
+			},
+			// 纭閰嶇疆
+			configConfirm() {
+				this.baseIP = this.IP
+				uni.setStorageSync('UIP',this.baseIP)
+				this.basePORT = this.PORT
+				uni.setStorageSync('UPORT',this.basePORT)
+				
+				this.$refs.popup.close()
 			},
 			longpressImg() { // 闀挎寜鍥剧墖
 				this.$refs.serverPort.open()
@@ -336,6 +347,32 @@
 		height: 500rpx;
 		background-color: #fff;
 	}
+	.config-title {
+		height: 100rpx;
+		font-size: 32rpx;
+		text-align: center;
+		line-height: 100rpx;
+	}
+	.config-item {
+		height: 100rpx;
+	}
+	.config-item text {
+		display: inline-block;
+		float: left;
+		text-indent: 1em;
+	}
+	.config-item input {
+		display: inline-block;
+		float: right;
+		margin-right: 50rpx;
+		width: 300rpx;
+		height: 50rpx;
+		border: 1px solid #aaaaaa;
+		border-radius: 10rpx;
+		font-size: 16rpx;
+		text-indent: 10rpx;
+		
+	}
     .login-paddingtop {
         padding-top: 50upx;
     }

--
Gitblit v1.9.1