From 06fc3eebef4e55e96b95ff0349e02de1f6f22771 Mon Sep 17 00:00:00 2001 From: whycq <10027870+whycq@user.noreply.gitee.com> Date: 星期一, 25 七月 2022 08:10:48 +0800 Subject: [PATCH] # --- pages/login/login.vue | 69 +++++++++++++++++++++++++++------- 1 files changed, 55 insertions(+), 14 deletions(-) diff --git a/pages/login/login.vue b/pages/login/login.vue index eea9683..0049f00 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> - <text>绔彛鍙�</text> - <input type="text" placeholder="8080"> + <view class="config-item"> + <text>绔彛鍙凤細</text> + <input v-model="PORT" type="text" placeholder="8080" placeholder-style="font-size:16rpx;text-indent: 10rpx;"> </view> - <view> - <text>椤圭洰</text> - <input type="text" placeholder="jkwms"> + <view class="config-item"> + <text>椤圭洰锛�</text> + <input v-model="PROJECT" type="text" placeholder="jkwms" placeholder-style="font-size:16rpx;text-indent: 10rpx;"> </view> - <view> - <button>纭</button> + <view class="flex justify-around"> + <button class="cu-btn bg-blue lg" @click="configConfirm">纭</button> </view> </view> </uni-popup> @@ -126,8 +127,9 @@ userName:'', password:'', rember:true, - IP:'', + IP:'10.20.192.200', PORT:'8080',// 榛樿绔彛鍙� + PROJECT:'' }; }, mounted() { @@ -144,7 +146,6 @@ that.userName = ''; that.password = ''; } - const UIP = uni.getStorageSync('UIP'); if (UIP) { that.IP = UIP; @@ -160,6 +161,8 @@ } else { that.PORT = '8080'; } + const PROJ = uni.getStorageSync('UPROJ'); + this.baseUrl = PROJ }, onLoad:function(){ // #ifdef APP-PLUS @@ -192,6 +195,17 @@ // 閰嶇疆 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.baseUrl = this.PROJECT + uni.setStorageSync('UPROJ',this.baseUrl) + + this.$refs.popup.close() }, longpressImg() { // 闀挎寜鍥剧墖 this.$refs.serverPort.open() @@ -254,8 +268,9 @@ duration: 1000 }); },6000) + console.log(this.baseUrl) uni.request({ - url: this.baseHttp + this.baseIP + ':' +this.basePORT + this.baseUrl + '/login.action', + url: this.baseHttp + this.baseIP + ':' +this.basePORT +"/" +this.baseUrl + '/login.action', data: { username:this.userName, password:md5.hex_md5(this.password) @@ -336,6 +351,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