Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
B
bims
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
孙海亮
bims
Commits
84bcda83
Commit
84bcda83
authored
Mar 03, 2022
by
yanglilong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
a
parent
cd0f16f3
Changes
8
Show whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
46 additions
and
3 deletions
+46
-3
index.html
public/index.html
+1
-1
home_bg.jpg
src/assets/image/home_bg.jpg
+0
-0
index.js
src/router/index.js
+3
-0
home.js
src/router/modules/home.js
+8
-0
menu.js
src/router/modules/menu.js
+5
-0
login.vue
src/views/author/login.vue
+1
-1
index.vue
src/views/home/index.vue
+27
-0
add.vue
src/views/pre-auth/add.vue
+1
-1
No files found.
public/index.html
View file @
84bcda83
...
@@ -8,7 +8,7 @@
...
@@ -8,7 +8,7 @@
<title><
%=
webpackConfig
.
name
%
></title>
<title><
%=
webpackConfig
.
name
%
></title>
<script
<script
type=
"text/javascript"
type=
"text/javascript"
src=
"//at.alicdn.com/t/font_3020450_
3jdbh13fsoi
.js"
src=
"//at.alicdn.com/t/font_3020450_
zp10lll5k4g
.js"
></script>
></script>
</head>
</head>
<body>
<body>
...
...
src/assets/image/home_bg.jpg
0 → 100644
View file @
84bcda83
73.7 KB
src/router/index.js
View file @
84bcda83
...
@@ -6,6 +6,8 @@ Vue.use(VueRouter);
...
@@ -6,6 +6,8 @@ Vue.use(VueRouter);
import
Layout
from
"
../views/layout/index.vue
"
;
import
Layout
from
"
../views/layout/index.vue
"
;
// 登录模块
// 登录模块
import
author
from
"
./modules/author
"
;
import
author
from
"
./modules/author
"
;
//主页面
import
home
from
"
./modules/home
"
;
// 客户管理
// 客户管理
import
customer
from
"
./modules/customer
"
;
import
customer
from
"
./modules/customer
"
;
// 福利信息管理
// 福利信息管理
...
@@ -30,6 +32,7 @@ const routes = [
...
@@ -30,6 +32,7 @@ const routes = [
path
:
"
/
"
,
path
:
"
/
"
,
redirect
:
"
/login
"
,
redirect
:
"
/login
"
,
},
},
home
,
customer
,
customer
,
welfare
,
welfare
,
preAuth
,
preAuth
,
...
...
src/router/modules/home.js
0 → 100644
View file @
84bcda83
//报表路由表,分包名称:home
export
default
{
path
:
"
/home
"
,
name
:
"
Home
"
,
component
:
()
=>
{
return
import
(
/* webpackChunkName: "home" */
"
@/views/home
"
);
},
};
src/router/modules/menu.js
View file @
84bcda83
export
default
[
export
default
[
{
icon
:
"
ssihome
"
,
path
:
"
/home
"
,
title
:
"
主页面
"
},
{
{
icon
:
"
ssiuser
"
,
icon
:
"
ssiuser
"
,
path
:
"
1
"
,
path
:
"
1
"
,
...
...
src/views/author/login.vue
View file @
84bcda83
...
@@ -84,7 +84,7 @@ export default {
...
@@ -84,7 +84,7 @@ export default {
this
.
$apis
.
LOGIN
(
this
.
form
).
then
((
res
)
=>
{
this
.
$apis
.
LOGIN
(
this
.
form
).
then
((
res
)
=>
{
if
(
res
.
returnCode
===
"
0000
"
)
{
if
(
res
.
returnCode
===
"
0000
"
)
{
this
.
$store
.
commit
(
"
common/setUserInfo
"
,
res
.
content
);
this
.
$store
.
commit
(
"
common/setUserInfo
"
,
res
.
content
);
const
path
=
this
.
$route
.
query
&&
this
.
$route
.
query
.
redirect
||
"
/
customer
"
;
const
path
=
this
.
$route
.
query
&&
this
.
$route
.
query
.
redirect
||
"
/
home
"
;
this
.
$router
.
replace
(
path
);
this
.
$router
.
replace
(
path
);
}
else
{
}
else
{
this
.
$message
.
error
(
res
.
returnMsg
||
"
出现错误
"
);
this
.
$message
.
error
(
res
.
returnMsg
||
"
出现错误
"
);
...
...
src/views/home/index.vue
0 → 100644
View file @
84bcda83
<
template
>
<div
class=
"white_bg burt-container"
>
<img
src=
"../../assets/image/home_bg.jpg"
alt=
""
>
</div>
</
template
>
<
script
>
export
default
{
data
(){
return
{
}
}
}
</
script
>
<
style
lang=
"less"
scoped
>
.burt-container{
height: calc(100vh - 116px);
padding: 0;
img{
width: 100%;
height: 100%;
object-fit: contain;
}
}
</
style
>
\ No newline at end of file
src/views/pre-auth/add.vue
View file @
84bcda83
...
@@ -8,7 +8,7 @@
...
@@ -8,7 +8,7 @@
placeholder=
"病历号"
:filter-option=
"false"
placeholder=
"病历号"
:filter-option=
"false"
@
search=
"getPatienList"
@
search=
"getPatienList"
@
change=
"patienListChange"
>
@
change=
"patienListChange"
>
<a-select-option
v-for=
"item in patientList"
:key=
"item.id"
:value=
"item.mrnNo"
>
{{
item
.
patientName
}}
</a-select-option>
<a-select-option
v-for=
"item in patientList"
:key=
"item.id"
:value=
"item.mrnNo"
>
{{
item
.
mrnNo
}}
</a-select-option>
</a-select>
</a-select>
</a-form-model-item>
</a-form-model-item>
</a-col>
</a-col>
...
...
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