From f01d077604d4cb07a556c32881301ef87a79a7c6 Mon Sep 17 00:00:00 2001 From: whycq <10027870+whycq@user.noreply.gitee.com> Date: 星期一, 18 九月 2023 09:17:59 +0800 Subject: [PATCH] # --- pages/login/login.vue | 22 +++++++++++----------- 1 files changed, 11 insertions(+), 11 deletions(-) diff --git a/pages/login/login.vue b/pages/login/login.vue index 78e9ddc..4e0725a 100644 --- a/pages/login/login.vue +++ b/pages/login/login.vue @@ -66,15 +66,15 @@ <view class="title">閰嶇疆</view> <view class="popup-item"> <view class="popup-item-left">IP:</view> - <view class="popup-item-right"><input type="text" v-model="url.ip"></view> + <view class="popup-item-right"><input type="text" v-model="Lurl.ip"></view> </view> <view class="popup-item"> <view class="popup-item-left">绔彛:</view> - <view class="popup-item-right"><input type="text" v-model="url.port"></view> + <view class="popup-item-right"><input type="text" v-model="Lurl.port"></view> </view> <view class="popup-item"> <view class="popup-item-left">椤圭洰:</view> - <view class="popup-item-right"><input type="text" v-model="url.project"></view> + <view class="popup-item-right"><input type="text" v-model="Lurl.project"></view> </view> <view class="btn"> <view class="btn-left" @click="close">鍙栨秷</view> @@ -110,7 +110,7 @@ showPassword: false, value: '', remberPassword: true, - url: { + Lurl: { ip: '', port: '', project: '' @@ -131,13 +131,13 @@ }, onLoad() { this.user = uni.getStorageSync('user') - this.url = uni.getStorageSync('url') + this.Lurl = uni.getStorageSync('Lurl') this.baseUrl = uni.getStorageSync('baseUrl') if (!this.user) { this.user = {userName: '',password: ''} } - if (!this.url) { - this.url = {ip: '',port: '',project: ''} + if (!this.Lurl) { + this.Lurl = {ip: '',port: '',project: ''} } }, onShow () { @@ -165,9 +165,9 @@ }, // 淇濆瓨ip settingConfirm() { - this.baseUrl = "http://" + this.url.ip + ':' + this.url.port + '/' + this.url.project + this.baseUrl = "http://" + this.Lurl.ip + ':' + this.Lurl.port + '/' + this.Lurl.project uni.setStorageSync('baseUrl', this.baseUrl); - uni.setStorageSync('url', this.url); + uni.setStorageSync('Lurl', this.Lurl); this.$refs.inputDialog.close() }, onLogin() { @@ -252,9 +252,9 @@ return } - let url = that.baseUrl + '/appVersion/checkUpdate/' + that.version + '/' + type + let Lurl = that.baseUrl + '/appVersion/checkUpdate/' + that.version + '/' + type uni.request({ - url: url, + url: Lurl, method: 'GET', success(res) { console.log(res); -- Gitblit v1.9.1