Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Y
yanshouyi-Minipro
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
xinzhedeai
yanshouyi-Minipro
Commits
d4b9d450
Commit
d4b9d450
authored
Jan 08, 2025
by
xinzhedeai
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
自动更新 登录校验 手机号11位 home校验
parent
1294246c
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
102 additions
and
29 deletions
+102
-29
App.vue
App.vue
+43
-1
login.js
api/login.js
+7
-0
blueSearch.vue
pages/home/blueSearch.vue
+21
-21
home.vue
pages/home/home.vue
+6
-0
login.vue
pages/user/login.vue
+25
-7
No files found.
App.vue
View file @
d4b9d450
...
...
@@ -4,6 +4,9 @@
}
from
'
vuex
'
export
default
{
onLaunch
:
function
()
{
// #ifdef MP-WEIXIN
updateApp
()
// #endif
},
onShow
:
function
()
{
console
.
log
(
'
App Show
'
)
...
...
@@ -18,10 +21,49 @@
...
mapMutations
([
'
setUniverifyErrorMsg
'
,
'
setUniverifyLogin
'
])
}
}
// #ifdef MP-WEIXIN
function
updateApp
()
{
const
updateManager
=
uni
.
getUpdateManager
();
updateManager
.
onCheckForUpdate
(
function
(
res
)
{
// 请求完新版本信息的回调
console
.
log
(
res
.
hasUpdate
);
});
updateManager
.
onUpdateReady
(
function
(
res
)
{
uni
.
showModal
({
title
:
'
更新提示
'
,
content
:
'
新版本已经准备好,是否重启应用?
'
,
showCancel
:
false
,
success
(
res
)
{
if
(
res
.
confirm
)
{
updateManager
.
onUpdateReady
((
res
)
=>
{
// 新版本下载完成的回调,强制当前小程序应用上新版本并重启
updateManager
.
applyUpdate
()
})
updateManager
.
onUpdateFailed
((
res
)
=>
{
// 新版本下载失败的回调
uni
.
showModal
({
content
:
'
下载失败,请您删除当前小程序,重新搜索打开
'
,
showCancel
:
false
,
confirmText
:
'
知道了
'
,
})
})
}
else
if
(
res
.
cancel
)
{
console
.
log
(
'
用户点击取消,不更新
'
);
}
}
});
});
}
// #endif
</
script
>
<
style
lang=
"scss"
>
@import
'@/uni_modules/uni-scss/index.scss'
;
// *{
// font-family: Source Han Sans SC;
// }
...
...
api/login.js
View file @
d4b9d450
...
...
@@ -14,3 +14,10 @@ export function getPhoneNumber(params) { // 登录获取token
data
:
params
.
data
})
}
export
function
getExistedUser
(
params
)
{
// 登录获取token
return
request
({
url
:
'
/weixin/getUser
'
,
method
:
'
get
'
,
data
:
params
.
data
})
}
\ No newline at end of file
pages/home/blueSearch.vue
View file @
d4b9d450
...
...
@@ -84,7 +84,7 @@
},
onLoad
(
options
)
{},
methods
:
{
//
gobackDeal(){
gobackDeal
(){
// console.log('XXXXXXXXX****8泛会上一页')
// if(this.$store.state.blueConnectLoading){
// showCustomModal({
...
...
@@ -101,10 +101,10 @@
// })
// return true
// }
//
uni.reLaunch({
//
url: '/pages/home/home',
//
});
//
},
uni
.
reLaunch
({
url
:
'
/pages/home/home
'
,
});
},
openBluetoothAdapter
()
{
this
.
pageLoadText
=
''
this
.
misScanding
=
false
;
...
...
pages/home/home.vue
View file @
d4b9d450
...
...
@@ -76,6 +76,9 @@
import
{
getExportData
,
}
from
'
../../api/home.js
'
import
{
getDict
}
from
'
../../api/blueToothMeasure.js
'
import
{
BASEURL
}
from
"
../../common/config.js
"
;
import
{
mapState
}
from
"
vuex
"
;
...
...
@@ -92,6 +95,9 @@
*/
onLoad
:
function
(
options
)
{
uni
.
hideLoading
()
getDict
({
type
:
'
zhuangyao_type
'
})
},
onShow
()
{
uni
.
hideLoading
()
...
...
pages/user/login.vue
View file @
d4b9d450
...
...
@@ -7,7 +7,7 @@
</view>
<view
class=
'content'
v-if=
"!hasToken"
>
<view
class=
"title"
>
手机号
</view>
<input
class=
"uni-input"
focus
placeholder=
"请输入手机号"
v-model=
"phone"
/>
<input
class=
"uni-input"
focus
placeholder=
"请输入手机号"
maxlength=
"11"
v-model=
"phone"
/>
<button
class=
"tel-btn"
open-type=
"getPhoneNumber"
@
getphonenumber=
"getPhoneNumber"
>
<uni-icons
type=
"phone"
size=
"18"
></uni-icons>
...
...
@@ -31,7 +31,8 @@
}
from
'
../../common/util.js
'
import
{
login
,
getPhoneNumber
getPhoneNumber
,
getExistedUser
}
from
'
../../api/login.js
'
export
default
{
onLoad
()
{
...
...
@@ -63,7 +64,8 @@
}
},
mounted
()
{
this
.
hasToken
=
!!
storager
.
get
(
'
token
'
)
// this.hasToken = !!storager.get('token')
this
.
getExistedUser
()
// 判断是否为第一次登陆
},
methods
:
{
async
getPhoneNumber
(
e
)
{
...
...
@@ -129,6 +131,7 @@
});
},
async
getToken
(
code
,
userInfo
)
{
popuper
.
hideLoading
()
let
res
=
await
login
({
data
:
{
"
code
"
:
code
,
...
...
@@ -138,15 +141,30 @@
},
})
console
.
log
(
'
res
'
,
res
)
popuper
.
hideLoading
()
if
(
res
)
{
storager
.
set
(
'
token
'
,
res
.
token
)
console
.
log
(
'
获取token
'
,
res
.
token
)
pager
.
relaunchTo
(
'
/pages/home/home
'
)
}
},
async
getExistedUser
()
{
const
loginRes
=
await
this
.
getWxCode
()
if
(
!
loginRes
.
code
)
{
showCustomToast
({
title
:
'
code未获取
'
})
return
}
let
res
=
await
getExistedUser
({
data
:
{
"
code
"
:
loginRes
.
code
,
},
})
console
.
log
(
'
res
'
,
res
)
if
(
res
)
{
this
.
hasToken
=
!!
res
.
boolean
}
}
}
}
</
script
>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment