合買源碼搭建出租
Q【1148916888】
實現思路
( 1 ) 設置鎖屏密碼
( 2 ) 密碼存localStorage (本項目已經封裝h5的sessionStorage和localStorage)
( 3 ) vuex設置 SET_LOCK state.isLock = true (為true是鎖屏狀態)
( 4 ) 在路由裏面判斷vuex裏面的isLock(為true鎖屏狀態不能讓用戶後退url和自行修改url跳轉頁面否則可以)
(1)設置鎖屏密碼
handleSetLock() {
this.$refs[‘form‘].validate(valid => {
if (valid) {
this.$store.commit(‘SET_LOCK_PASSWD‘, this.form.passwd)
}
})
},
1
2
3
4
5
6
7
8
( 2 ) 密碼存localStorage setStore是自己封裝的方法
SET_LOCK_PASSWD: (state, lockPasswd) => {
state.lockPasswd = lockPasswd
setStore({
name: ‘lockPasswd‘,
content: state.lockPasswd,
type: ‘session‘
})
},
1
2
3
4
5
6
7
8
( 3 ) vuex設置 SET_LOCK state.isLock = true 同時存在store裏面
SET_LOCK: (state, action) => {
setStore({
name: ‘isLock‘,
content: state.isLock,
type: ‘session‘
})
},
1
2
3
4
5
6
7
8
( 4 ) 在路由裏面判斷vuex裏面的isLock
if (store.getters.isLock && to.path !== lockPage) {
next({
path: lockPage
})
NProgress.done()
1
2
3
4
5
源碼地址
前端學習交流群493671066,美女多多。老司機快上車,來不及解釋了。
作者相關Vue文章
基於Vue2.0實現後臺系統權限控制
前端文檔匯總
VUE2.0增刪改查附編輯添加model(彈框)組件共用
合買源碼搭建出租