Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
sensorConsult
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
zhanglw
sensorConsult
Commits
50dadf42
Commit
50dadf42
authored
Jul 08, 2023
by
zhanglw
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
登录注册相关页面
parent
bd781487
Changes
7
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
861 additions
and
3 deletions
+861
-3
login_title.png
src/assets/home_images/login_title.png
+0
-0
z_phone.svg
src/assets/icons/svg/z_phone.svg
+1
-0
routers.js
src/router/routers.js
+9
-1
titleMenus.vue
src/views/homepage/components/titleMenus.vue
+6
-0
registerInfo.vue
src/views/homepage/console/registerInfo.vue
+409
-0
index.vue
src/views/homepage/index.vue
+1
-2
login.vue
src/views/homepage/login.vue
+435
-0
No files found.
src/assets/home_images/login_title.png
0 → 100644
View file @
50dadf42
57 KB
src/assets/icons/svg/z_phone.svg
0 → 100644
View file @
50dadf42
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg
t=
"1688794848340"
class=
"icon"
viewBox=
"0 0 1024 1024"
version=
"1.1"
xmlns=
"http://www.w3.org/2000/svg"
p-id=
"2352"
xmlns:xlink=
"http://www.w3.org/1999/xlink"
width=
"32"
height=
"32"
><path
d=
"M820.409449 797.228346q0 25.19685-10.07874 46.866142t-27.716535 38.299213-41.322835 26.204724-50.897638 9.574803l-357.795276 0q-27.212598 0-50.897638-9.574803t-41.322835-26.204724-27.716535-38.299213-10.07874-46.866142l0-675.275591q0-25.19685 10.07874-47.370079t27.716535-38.80315 41.322835-26.204724 50.897638-9.574803l357.795276 0q27.212598 0 50.897638 9.574803t41.322835 26.204724 27.716535 38.80315 10.07874 47.370079l0 675.275591zM738.771654 170.330709l-455.559055 0 0 577.511811 455.559055 0 0-577.511811zM510.992126 776.062992q-21.165354 0-36.787402 15.11811t-15.622047 37.291339q0 21.165354 15.622047 36.787402t36.787402 15.622047q22.173228 0 37.291339-15.622047t15.11811-36.787402q0-22.173228-15.11811-37.291339t-37.291339-15.11811zM591.622047 84.661417q0-8.062992-5.03937-12.598425t-11.086614-4.535433l-128 0q-5.03937 0-10.582677 4.535433t-5.543307 12.598425 5.03937 12.598425 11.086614 4.535433l128 0q6.047244 0 11.086614-4.535433t5.03937-12.598425z"
p-id=
"2353"
></path></svg>
\ No newline at end of file
src/router/routers.js
View file @
50dadf42
...
...
@@ -7,7 +7,7 @@ Vue.use(Router)
export
const
constantRouterMap
=
[
{
path
:
'
/login
'
,
meta
:
{
title
:
'
登录
'
,
noCache
:
true
},
component
:
(
resolve
)
=>
require
([
'
@/views/login
'
],
resolve
),
component
:
(
resolve
)
=>
require
([
'
@/views/
homepage/
login
'
],
resolve
),
hidden
:
true
},
{
path
:
'
/backlogin
'
,
...
...
@@ -164,6 +164,14 @@ export const constantRouterMap = [
},
hidden
:
true
},
{
path
:
'
/console/registerInfo
'
,
meta
:
{
title
:
'
用户注册信息
'
,
noCache
:
true
},
component
:
(
resolve
)
=>
{
return
require
([
'
@/views/homepage/console/registerInfo
'
],
resolve
)
},
hidden
:
true
},
{
path
:
'
/console/userInfo
'
,
meta
:
{
title
:
'
个人中心-用户信息
'
,
noCache
:
true
},
...
...
src/views/homepage/components/titleMenus.vue
View file @
50dadf42
...
...
@@ -7,6 +7,12 @@
</
template
>
<
script
>
export
default
{
props
:
{
menuIndex
:
{
type
:
String
,
default
:
'
0
'
}
},
data
()
{
return
{
menus
:
[
...
...
src/views/homepage/console/registerInfo.vue
0 → 100644
View file @
50dadf42
This diff is collapsed.
Click to expand it.
src/views/homepage/index.vue
View file @
50dadf42
...
...
@@ -4,7 +4,7 @@
<div
class=
"head-box-top"
>
<div
class=
"top-call"
/>
<div
class=
"top-call"
><img
src=
"@/assets/home_images/gemho_logo.png"
alt=
"gemho-logo"
></div>
<div
class=
"top-call"
><title-menus
ref=
"titleMenus"
/></div>
<div
class=
"top-call"
><title-menus
ref=
"titleMenus"
menu-index=
"0"
/></div>
<div
class=
"top-call"
><user-login
ref=
"userLogin"
/></div>
<div
class=
"top-call"
><language-setting
ref=
"languageSetting"
/></div>
</div>
...
...
@@ -168,7 +168,6 @@ import languageSetting from './components/languageSetting'
import
searchPanel
from
'
./components/searchPanel
'
import
homeFooter
from
'
./components/homeFooter
'
import
inquiryView
from
'
./components/inquiryView
'
import
NProgress
from
'
nprogress
'
export
default
{
components
:
{
floatBtn
,
titleMenus
,
userLogin
,
languageSetting
,
searchPanel
,
homeFooter
,
inquiryView
},
...
...
src/views/homepage/login.vue
0 → 100644
View file @
50dadf42
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