Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
CRM
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
CRM
Commits
b495d97a
Commit
b495d97a
authored
Mar 05, 2025
by
lei
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
代码格式美化
parent
ac0d908a
Changes
6
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
1042 additions
and
1146 deletions
+1042
-1146
.prettierrc
.prettierrc
+9
-0
index.vue
src/views/InforStatistics/index.vue
+638
-645
home.vue
src/views/home.vue
+20
-20
login.vue
src/views/login.vue
+120
-86
management - 副本.vue
src/views/manageClass/management - 副本.vue
+0
-0
management.vue
src/views/manageClass/management.vue
+255
-395
No files found.
.prettierrc
0 → 100644
View file @
b495d97a
{
"printWidth": 120,
"tabWidth": 2,
"singleQuote": true,
"semi": false,
"bracketSpacing": true,
"trailingComma": "none",
"jsxSingleQuote": true
}
src/views/InforStatistics/index.vue
View file @
b495d97a
This diff is collapsed.
Click to expand it.
src/views/home.vue
View file @
b495d97a
...
@@ -3,7 +3,7 @@
...
@@ -3,7 +3,7 @@
<div
class=
"dashboard-editor-container"
>
<div
class=
"dashboard-editor-container"
>
<github-corner
class=
"github-corner"
/>
<github-corner
class=
"github-corner"
/>
<panel-group
@
handleSetLineChartData=
"handleSetLineChartData"
/>
<panel-group
@
handleSetLineChartData=
"handleSetLineChartData"
/>
<el-row
style=
"background:
#fff;padding:16px 16px 0;margin-bottom:32px;
"
>
<el-row
style=
"background:
#fff; padding: 16px 16px 0; margin-bottom: 32px
"
>
<line-chart
:chart-data=
"lineChartData"
/>
<line-chart
:chart-data=
"lineChartData"
/>
</el-row>
</el-row>
<el-row
:gutter=
"32"
>
<el-row
:gutter=
"32"
>
...
@@ -78,7 +78,7 @@ export default {
...
@@ -78,7 +78,7 @@ export default {
</
script
>
</
script
>
<
style
rel=
"stylesheet/scss"
lang=
"scss"
scoped
>
<
style
rel=
"stylesheet/scss"
lang=
"scss"
scoped
>
.dashboard-editor-container
{
.dashboard-editor-container
{
padding
:
32px
;
padding
:
32px
;
background-color
:
rgb
(
240
,
242
,
245
);
background-color
:
rgb
(
240
,
242
,
245
);
position
:
relative
;
position
:
relative
;
...
@@ -95,11 +95,11 @@ export default {
...
@@ -95,11 +95,11 @@ export default {
padding
:
16px
16px
0
;
padding
:
16px
16px
0
;
margin-bottom
:
32px
;
margin-bottom
:
32px
;
}
}
}
}
@media
(
max-width
:
1024px
)
{
@media
(
max-width
:
1024px
)
{
.chart-wrapper
{
.chart-wrapper
{
padding
:
8px
;
padding
:
8px
;
}
}
}
}
</
style
>
</
style
>
src/views/login.vue
View file @
b495d97a
<
template
>
<
template
>
<div
class=
"login"
:style=
"'background-image:url('
+ Background +
');'"
>
<div
class=
"login"
:style=
"'background-image:url('
+ Background +
');'"
>
<h2
class=
"title"
>
<h2
class=
"title"
>
<img
src=
"../assets/images/loginlogo.png"
alt=
""
style=
"margin-right: 10px;"
>
<img
src=
"../assets/images/loginlogo.png"
alt=
""
style=
"margin-right: 10px"
/
>
晶合CRM
晶合CRM
</h2>
</h2>
<el-form
ref=
"loginForm"
:model=
"loginForm"
:rules=
"loginRules"
label-position=
"left"
label-width=
"0px"
class=
"login-form"
>
<el-form
<div
class=
"loginTitle"
>
ref=
"loginForm"
用户登录
:model=
"loginForm"
</div>
:rules=
"loginRules"
label-position=
"left"
label-width=
"0px"
class=
"login-form"
>
<div
class=
"loginTitle"
>
用户登录
</div>
<el-form-item
prop=
"username"
>
<el-form-item
prop=
"username"
>
<el-input
v-model=
"loginForm.username"
type=
"text"
auto-complete=
"off"
placeholder=
"请输入账号"
>
<el-input
v-model=
"loginForm.username"
type=
"text"
auto-complete=
"off"
placeholder=
"请输入账号"
>
<svg-icon
slot=
"prefix"
icon-class=
"user"
class=
"el-input__icon input-icon"
/>
<svg-icon
slot=
"prefix"
icon-class=
"user"
class=
"el-input__icon input-icon"
/>
</el-input>
</el-input>
</el-form-item>
</el-form-item>
<el-form-item
prop=
"password"
>
<el-form-item
prop=
"password"
>
<el-input
v-model=
"loginForm.password"
type=
"password"
auto-complete=
"off"
placeholder=
"请输入密码"
@
keyup.enter.native=
"handleLogin"
>
<el-input
v-model=
"loginForm.password"
type=
"password"
auto-complete=
"off"
placeholder=
"请输入密码"
@
keyup.enter.native=
"handleLogin"
>
<svg-icon
slot=
"prefix"
icon-class=
"password"
class=
"el-input__icon input-icon"
/>
<svg-icon
slot=
"prefix"
icon-class=
"password"
class=
"el-input__icon input-icon"
/>
</el-input>
</el-input>
</el-form-item>
</el-form-item>
<el-form-item
prop=
"code"
>
<el-form-item
prop=
"code"
>
<el-input
v-model=
"loginForm.code"
auto-complete=
"off"
placeholder=
"请输入验证码"
style=
"width: 63%"
@
keyup.enter.native=
"handleLogin"
>
<el-input
v-model=
"loginForm.code"
auto-complete=
"off"
placeholder=
"请输入验证码"
style=
"width: 63%"
@
keyup.enter.native=
"handleLogin"
>
<svg-icon
slot=
"prefix"
icon-class=
"validCode"
class=
"el-input__icon input-icon"
/>
<svg-icon
slot=
"prefix"
icon-class=
"validCode"
class=
"el-input__icon input-icon"
/>
</el-input>
</el-input>
<div
class=
"login-code"
>
<div
class=
"login-code"
>
<img
:src=
"codeUrl"
@
click=
"getCode"
>
<img
:src=
"codeUrl"
@
click=
"getCode"
/
>
</div>
</div>
</el-form-item>
</el-form-item>
<!--
<el-checkbox
v-model=
"loginForm.rememberMe"
style=
"margin:0 0 25px 0;"
>
<!--
<el-checkbox
v-model=
"loginForm.rememberMe"
style=
"margin:0 0 25px 0;"
>
记住我
记住我
</el-checkbox>
-->
</el-checkbox>
-->
<el-form-item
style=
"width:100%;"
>
<el-form-item
style=
"width: 100%"
>
<el-button
:loading=
"loading"
size=
"medium"
type=
"primary"
style=
"width:100%;"
@
click.native.prevent=
"handleLogin"
>
<el-button
:loading=
"loading"
size=
"medium"
type=
"primary"
style=
"width: 100%"
@
click.native.prevent=
"handleLogin"
>
<span
v-if=
"!loading"
>
登 录
</span>
<span
v-if=
"!loading"
>
登 录
</span>
<span
v-else
>
登 录 中...
</span>
<span
v-else
>
登 录 中...
</span>
</el-button>
</el-button>
...
@@ -76,7 +99,7 @@ export default {
...
@@ -76,7 +99,7 @@ export default {
},
},
watch
:
{
watch
:
{
$route
:
{
$route
:
{
handler
:
function
(
route
)
{
handler
:
function
(
route
)
{
const
data
=
route
.
query
const
data
=
route
.
query
if
(
data
&&
data
.
redirect
)
{
if
(
data
&&
data
.
redirect
)
{
this
.
redirect
=
data
.
redirect
this
.
redirect
=
data
.
redirect
...
@@ -99,14 +122,14 @@ export default {
...
@@ -99,14 +122,14 @@ export default {
},
},
methods
:
{
methods
:
{
getCode
()
{
getCode
()
{
getCodeImg
().
then
(
res
=>
{
getCodeImg
().
then
(
(
res
)
=>
{
this
.
codeUrl
=
res
.
img
this
.
codeUrl
=
res
.
img
this
.
loginForm
.
uuid
=
res
.
uuid
this
.
loginForm
.
uuid
=
res
.
uuid
})
})
},
},
getCookie
()
{
getCookie
()
{
const
username
=
Cookies
.
get
(
'
username
'
)
const
username
=
Cookies
.
get
(
'
username
'
)
console
.
log
(
username
,
"
usernameusernameusername
"
)
console
.
log
(
username
,
'
usernameusernameusername
'
)
let
password
=
Cookies
.
get
(
'
password
'
)
let
password
=
Cookies
.
get
(
'
password
'
)
const
rememberMe
=
Cookies
.
get
(
'
rememberMe
'
)
const
rememberMe
=
Cookies
.
get
(
'
rememberMe
'
)
// 保存cookie里面的加密后的密码
// 保存cookie里面的加密后的密码
...
@@ -120,7 +143,7 @@ export default {
...
@@ -120,7 +143,7 @@ export default {
}
}
},
},
handleLogin
()
{
handleLogin
()
{
this
.
$refs
.
loginForm
.
validate
(
valid
=>
{
this
.
$refs
.
loginForm
.
validate
(
(
valid
)
=>
{
const
user
=
{
const
user
=
{
username
:
this
.
loginForm
.
username
,
username
:
this
.
loginForm
.
username
,
password
:
this
.
loginForm
.
password
,
password
:
this
.
loginForm
.
password
,
...
@@ -134,18 +157,27 @@ export default {
...
@@ -134,18 +157,27 @@ export default {
if
(
valid
)
{
if
(
valid
)
{
this
.
loading
=
true
this
.
loading
=
true
if
(
user
.
rememberMe
)
{
if
(
user
.
rememberMe
)
{
Cookies
.
set
(
'
username
'
,
user
.
username
,
{
expires
:
Config
.
passCookieExpires
})
Cookies
.
set
(
'
username
'
,
user
.
username
,
{
Cookies
.
set
(
'
password
'
,
user
.
password
,
{
expires
:
Config
.
passCookieExpires
})
expires
:
Config
.
passCookieExpires
Cookies
.
set
(
'
rememberMe
'
,
user
.
rememberMe
,
{
expires
:
Config
.
passCookieExpires
})
})
Cookies
.
set
(
'
password
'
,
user
.
password
,
{
expires
:
Config
.
passCookieExpires
})
Cookies
.
set
(
'
rememberMe
'
,
user
.
rememberMe
,
{
expires
:
Config
.
passCookieExpires
})
}
else
{
}
else
{
Cookies
.
remove
(
'
username
'
)
Cookies
.
remove
(
'
username
'
)
Cookies
.
remove
(
'
password
'
)
Cookies
.
remove
(
'
password
'
)
Cookies
.
remove
(
'
rememberMe
'
)
Cookies
.
remove
(
'
rememberMe
'
)
}
}
this
.
$store
.
dispatch
(
'
Login
'
,
user
).
then
(()
=>
{
this
.
$store
.
dispatch
(
'
Login
'
,
user
)
.
then
(()
=>
{
this
.
loading
=
false
this
.
loading
=
false
this
.
$router
.
push
({
path
:
this
.
redirect
||
'
/
'
})
this
.
$router
.
push
({
path
:
this
.
redirect
||
'
/
'
})
}).
catch
(()
=>
{
})
.
catch
(()
=>
{
this
.
loading
=
false
this
.
loading
=
false
this
.
getCode
()
this
.
getCode
()
})
})
...
@@ -172,14 +204,14 @@ export default {
...
@@ -172,14 +204,14 @@ export default {
</
script
>
</
script
>
<
style
rel=
"stylesheet/scss"
lang=
"scss"
>
<
style
rel=
"stylesheet/scss"
lang=
"scss"
>
.login
{
.login
{
display
:
flex
;
display
:
flex
;
flex-direction
:
column
;
flex-direction
:
column
;
align-items
:
center
;
align-items
:
center
;
height
:
100%
;
height
:
100%
;
background-size
:
cover
;
background-size
:
cover
;
}
}
.title
{
.title
{
width
:
100%
;
width
:
100%
;
height
:
30%
;
height
:
30%
;
display
:
flex
;
display
:
flex
;
...
@@ -190,15 +222,15 @@ export default {
...
@@ -190,15 +222,15 @@ export default {
font-size
:
35px
;
font-size
:
35px
;
font-weight
:
bold
;
font-weight
:
bold
;
text-shadow
:
0px
1px
1px
#555
;
text-shadow
:
0px
1px
1px
#555
;
}
}
.login-form
{
.login-form
{
border-radius
:
6px
;
border-radius
:
6px
;
background
:
#ffffff
;
background
:
#ffffff
;
width
:
400px
;
width
:
400px
;
height
:
360px
;
height
:
360px
;
padding
:
25px
25px
5px
25px
;
padding
:
25px
25px
5px
25px
;
.loginTitle
{
.loginTitle
{
width
:
103px
;
width
:
103px
;
height
:
25px
;
height
:
25px
;
text-align
:
center
;
text-align
:
center
;
...
@@ -215,23 +247,25 @@ export default {
...
@@ -215,23 +247,25 @@ export default {
height
:
45px
;
height
:
45px
;
}
}
}
}
.input-icon
{
.input-icon
{
height
:
45px
;
width
:
20px
;
margin-left
:
2px
;
height
:
45px
;
}
width
:
20px
;
margin-left
:
2px
;
}
}
.login-tip
{
}
.login-tip
{
font-size
:
13px
;
font-size
:
13px
;
text-align
:
center
;
text-align
:
center
;
color
:
#bfbfbf
;
color
:
#bfbfbf
;
}
}
.login-code
{
.login-code
{
width
:
33%
;
width
:
33%
;
display
:
inline-block
;
display
:
inline-block
;
height
:
38px
;
height
:
38px
;
float
:
right
;
float
:
right
;
img
{
img
{
cursor
:
pointer
;
cursor
:
pointer
;
vertical-align
:middle
vertical-align
:
middle
;
}
}
}
}
</
style
>
</
style
>
src/views/manageClass/management - 副本.vue
View file @
b495d97a
This diff is collapsed.
Click to expand it.
src/views/manageClass/management.vue
View file @
b495d97a
This diff is collapsed.
Click to expand it.
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