Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
bdc
/
bdcsjsb-web
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
6ca0b7a5
authored
2023-05-11 16:20:46 +0800
by
renchao@pashanhoo.com
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
style:上报配置化
1 parent
a31ef48f
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
239 deletions
src/permission.js
src/router/index.js
src/views/loginjg/index.vue
src/permission.js
View file @
6ca0b7a
/*
* @Description:
* @Autor: renchao
* @LastEditTime: 2023-0
4-12 11:15:57
* @LastEditTime: 2023-0
5-11 16:19:21
*/
import
Vue
from
'vue'
import
router
from
"./router"
;
...
...
@@ -20,7 +20,7 @@ router.beforeEach(async (to, from, next) => {
let
hasAddDict
=
store
.
state
.
dict
.
addDict
;
let
hasUser
=
store
.
state
.
user
.
hasUser
;
let
hasAddRoute
=
store
.
state
.
permission
.
addRoutes
;
if
(
to
.
path
==
"/sb"
||
to
.
path
==
"/jg"
||
to
.
path
==
"/sb1"
)
{
if
(
to
.
path
==
"/sb"
)
{
localStorage
.
removeItem
(
"token"
);
next
();
}
else
{
...
...
@@ -49,21 +49,21 @@ router.beforeEach(async (to, from, next) => {
{
path
:
"*"
,
redirect
:
"/404"
,
hidden
:
true
},
]);
const
routeTo
=
Cookies
.
get
(
"routerTo"
);
if
(
routeTo
&&
routeTo
!==
"/"
&&
routeTo
!==
"/sb"
&&
routeTo
!==
"/jg"
)
{
if
(
routeTo
&&
routeTo
!==
"/"
&&
routeTo
!==
"/sb"
)
{
next
({
...
to
,
replace
:
true
});
}
else
{
next
()
;
next
()
}
}
}
else
{
next
(
`/
${
Vue
.
prototype
.
BASE_API
.
LOGIN
}
`
);
next
(
'/sb'
)
}
}
NProgress
.
done
()
;
NProgress
.
done
()
});
router
.
afterEach
((
to
)
=>
{
// 解决刷新页面报404问题
Cookies
.
set
(
"routerTo"
,
to
.
fullPath
);
NProgress
.
done
();
});
})
...
...
src/router/index.js
View file @
6ca0b7a
...
...
@@ -20,11 +20,6 @@ export const constantRoutes = [
},
//登录
{
path
:
"/jg"
,
name
:
"loginjg"
,
component
:
()
=>
import
(
"@/views/loginjg/index.vue"
),
},
{
path
:
"/sb"
,
name
:
"loginsb"
,
component
:
()
=>
import
(
"@/views/loginsb/index.vue"
),
...
...
@@ -32,7 +27,7 @@ export const constantRoutes = [
{
path
:
'/'
,
redirect
:
to
=>
{
return
{
path
:
`/
${
Vue
.
prototype
.
BASE_API
.
LOGIN
}
`
}
return
{
path
:
'/sb'
}
},
},
// 监管首页
...
...
src/views/loginjg/index.vue
deleted
100644 → 0
View file @
a31ef48
<
template
>
<div
class=
"bg"
>
<div
class=
"login-logo"
></div>
<div
class=
"login-inner-bg login"
>
<h2>
{{
BASE_API
.
TITLE
}}
</h2>
<div
class=
"user_style"
>
<h3>
欢迎登录
</h3>
<el-form
:model=
"user"
:rules=
"rules"
ref=
"user"
id=
"loginform"
class=
"demo-ruleForm"
>
<el-form-item
prop=
"account"
>
<el-input
class=
"username"
v-model=
"user.account"
placeholder=
"请输入用户名"
></el-input>
</el-form-item>
<el-form-item
prop=
"password"
>
<el-input
type=
"password"
class=
"password"
@
keyup
.
enter
.
native=
"login('user')"
v-model=
"user.password"
placeholder=
"请输入密码"
></el-input>
</el-form-item>
<el-form-item
class=
"login-btn"
>
<el-button
type=
"primary"
style=
"width: 100%"
@
click=
"login('user')"
>
登录
</el-button>
</el-form-item>
</el-form>
</div>
</div>
</div>
</
template
>
<
script
>
import
{
loginIn
}
from
"@/api/login.js"
;
export
default
{
name
:
"jgLogin"
,
data
()
{
return
{
user
:
{
account
:
""
,
password
:
""
,
checkStatus
:
false
,
},
rules
:
{
account
:
[{
required
:
true
,
message
:
"请填写帐号"
,
trigger
:
"blur"
}],
password
:
[{
required
:
true
,
message
:
"请填写密码"
,
trigger
:
"blur"
}],
}
}
},
methods
:
{
//记住用户名
checkUserName
:
function
(
flag
)
{
this
.
user
.
checkStatus
=
flag
;
if
(
this
.
user
.
checkStatus
)
{
localStorage
.
setItem
(
"accountId"
,
this
.
user
.
account
);
let
name
=
localStorage
.
getItem
(
"accountId"
);
if
(
name
===
""
)
{
return
;
}
else
{
this
.
user
.
account
=
name
;
}
}
else
{
this
.
user
.
account
=
localStorage
.
getItem
(
"accountId"
);
}
},
login
(
user
)
{
var
self
=
this
this
.
$refs
[
user
].
validate
(
async
(
valid
)
=>
{
if
(
valid
)
{
let
res
=
await
loginIn
(
self
.
user
.
account
,
self
.
user
.
password
)
if
(
res
.
status
==
1
)
{
localStorage
.
setItem
(
"token"
,
`Bearer
${
res
.
content
}
`
);
//登录成功后需判断有无重定向,没有重定向则跳转首页
this
.
$router
.
replace
(
this
.
$route
.
query
.
redirect
||
"/home"
);
}
else
{
this
.
$message
.
error
(
res
.
message
);
}
}
})
}
}
}
</
script
>
<
style
scoped
lang=
"scss"
>
.username
,
.password
{
position
:
relative
;
&:before
{
content
:
""
;
display
:
block
;
width
:
16px
;
height
:
16px
;
position
:
absolute
;
left
:
10px
;
top
:
7px
;
background-size
:
100%
100%
;
}
/
deep
/
.el-input__inner
{
text-indent
:
24px
;
border
:
1px
solid
rgba
(
11
,
161
,
248
,
0.4
);
background-color
:
rgba
(
6
,
135
,
205
,
0.3
)
!important
;
}
}
.username
::before
{
background-image
:
url(../../image/username.png)
;
}
.password
::before
{
background-image
:
url(../../image/password.png)
;
}
.bg
{
width
:
100%
;
height
:
100%
;
min-width
:
1440px
;
min-height
:
560px
;
background
:
url(../../image/loginBoxBg.png)
no-repeat
;
background-size
:
100%
100%
;
overflow
:
hidden
;
position
:
relative
;
.login-logo
{
background
:
url(../../image/loginLogo.png)
no-repeat
;
background-size
:
100%
100%
;
width
:
580px
;
height
:
540px
;
position
:
absolute
;
top
:
25%
;
left
:
19%
;
}
}
.login-inner-bg
{
background
:
url(../../image/loginBg.png)
no-repeat
;
width
:
20.6%
;
height
:
43%
;
min-width
:
360px
;
min-height
:
380px
;
top
:
30%
;
right
:
18%
;
position
:
absolute
;
background-size
:
100%
100%
;
box-sizing
:
border-box
;
padding
:
56px
;
h2
{
width
:
100%
;
font-size
:
36px
;
font-weight
:
700
;
color
:
#fff
;
text-align
:
center
;
white-space
:
nowrap
;
position
:
absolute
;
right
:
0
;
top
:
-70px
;
background-image
:
linear-gradient
(
180deg
,
rgba
(
99
,
163
,
255
,
1
)
0
,
rgba
(
99
,
163
,
255
,
1
)
0
,
rgba
(
182
,
220
,
255
,
1
)
49.731445%
,
rgba
(
114
,
190
,
255
,
1
)
100%
,
rgba
(
114
,
190
,
255
,
1
)
100%
);
overflow-wrap
:
break-word
;
color
:
rgba
(
255
,
255
,
255
,
1
);
font-size
:
36px
;
font-family
:
AlimamaShuHeiTi-Bold
;
-webkit-background-clip
:
text
;
-webkit-text-fill-color
:
transparent
;
}
}
.login
{
.user_style
{
h3
{
color
:
#fff
;
font-size
:
22px
;
font-weight
:
normal
;
text-align
:
center
;
margin
:
16px
auto
34px
;
font-weight
:
400
;
}
}
.btn
{
width
:
100%
;
height
:
6vh
;
background-color
:
#00c2de
;
border-radius
:
5px
;
font-size
:
1.4vw
;
color
:
#ffffff
;
}
.btn
:hover
{
cursor
:
pointer
;
background-color
:
#2d8cf0
;
}
}
.login
#loginform
{
.el-form-item
{
margin-bottom
:
24px
!important
;
}
.login-btn
{
margin-top
:
40px
!important
;
}
.el-button
{
font-size
:
18px
;
background
:
#0d8cc0
!important
;
color
:
#ffffff
!important
;
cursor
:
pointer
!important
;
}
.el-input__inner
{
width
:
100%
!important
;
}
.el-checkbox__label
{
color
:
#fff
;
}
}
.inputUser
.ivu-input
{
padding
:
6px
24px
!important
;
border
:
1px
solid
#9f9f9f
!important
;
}
tr
.hover-row
>
td
.el-table__cell
{
background-color
:
transparent
!important
;
}
</
style
>
Please
register
or
sign in
to post a comment