Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
expense
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
contractServiceExpense-Develop
expense
Commits
01905882
Commit
01905882
authored
Jul 31, 2020
by
lihu541
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
列表调整
parent
3f070174
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
103 additions
and
59 deletions
+103
-59
src/assets/css/base.css
+8
-3
src/assets/css/contract.css
+0
-1
src/components/common/Search.vue
+1
-1
src/components/common/header/ListHeader.vue
+9
-10
src/router/index.js
+1
-0
src/views/gp/list/ContractPatientList.vue
+79
-39
vue.config.js
+5
-5
No files found.
src/assets/css/base.css
View file @
01905882
...
...
@@ -58,10 +58,15 @@ input::-webkit-input-placeholder { color: #BDCADA; }
::-webkit-scrollbar-thumb
{
border-radius
:
0px
;
-webkit-box-shadow
:
inset
0
0
6px
rgba
(
0
,
0
,
0
,
1
);}
/*基本布局*/
.container
{
background
:
-webkit-linear-gradient
(
top
,
#272e52
,
#171c30
);
height
:
100%
;
.container
{
width
:
100%
;
max-width
:
1280px
;
height
:
600px
;
margin
:
0
auto
;
background
:
-webkit-linear-gradient
(
top
,
#272E52
,
#171C30
);
position
:
relative
;
}
.header
{
height
:
56px
;
background
:
#2e375c
;
...
...
src/assets/css/contract.css
View file @
01905882
...
...
@@ -164,7 +164,6 @@
/*居民就诊分析*/
.outer
{
display
:
flex
;
width
:
100%
;
height
:
100%
;
background
:
#272E52
;
align-items
:
center
;
/* 垂直居中 */
justify-content
:
center
;
/* 水平居中 */
}
.container
{
width
:
100%
;
max-width
:
1280px
;
height
:
600px
;
margin
:
0
auto
;
background
:
-webkit-linear-gradient
(
top
,
#272E52
,
#171C30
);
position
:
relative
;}
.header
{
height
:
56px
;
background
:
#2e375c
;
margin-bottom
:
20px
;}
.con-main
{
height
:
500px
;}
.naver
{
width
:
70px
;
float
:
left
;
height
:
56px
;
background
:
#35406b
;
text-align
:
center
;
padding-top
:
20px
;}
...
...
src/components/common/Search.vue
View file @
01905882
<
template
>
<div
id=
"search"
>
<el-autocomplete
class=
"inline-input"
v-model=
"state"
:fetch-suggestions=
"querySearch"
placeholder=
"请输入
内容
"
<el-autocomplete
class=
"inline-input"
v-model=
"state"
:fetch-suggestions=
"querySearch"
placeholder=
"请输入
患者姓名
"
:trigger-on-focus=
"true"
@
select=
"handleSelect"
>
<i
slot=
"prefix"
class=
"el-input__icon el-icon-search"
></i>
</el-autocomplete>
...
...
src/components/common/header/ListHeader.vue
View file @
01905882
...
...
@@ -19,10 +19,10 @@
<button
class=
"head_but"
style=
"background: #44517d"
@
click=
"goBack"
>
<img
src=
"~assets/img/header/icon-white-back.png"
>
返回
</button>
<button
class=
"head_but"
>
<button
class=
"head_but"
@
click=
"goDownloadList"
>
<img
src=
"~assets/img/header/export.png"
>
导出
</button>
<button
class=
"head_but"
>
<button
class=
"head_but"
@
click=
"goFilter"
>
<img
src=
"~assets/img/header/icon-filter.png"
>
筛选
</button>
</div>
...
...
@@ -58,16 +58,15 @@
goBack
(){
window
.
history
.
go
(
-
1
)
},
cxsjChange
()
{
goDownloadList
()
{
this
.
$parent
.
downloadList
();
// this.$emit('downloadList');
},
openCame
()
{
if
(
false
)
{
}
else
{
this
.
$message
.
error
(
'移动APP打开扫一扫'
);
}
goFilter
()
{
this
.
$parent
.
showFilter
();
// this.$emit('showFilter');
},
getHeadRightInfo
()
{
this
.
userName
=
JSON
.
parse
(
sessionStorage
.
getItem
(
'userinfo'
)).
userName
;
this
.
cxsj
=
this
.
$store
.
getters
.
getCxsj
;
...
...
src/router/index.js
View file @
01905882
...
...
@@ -32,6 +32,7 @@ export default new Router({
path
:
'/gpHome'
,
name
:
'gpHome'
,
component
:
()
=>
import
(
'views/gp/GpHome.vue'
),
// component: resolve => require(['@/views/gp/GpHome.vue'], resolve),
children
:
[
{
// 家医签约管理
path
:
'gpContract'
,
...
...
src/views/gp/list/ContractPatientList.vue
View file @
01905882
This diff is collapsed.
Click to expand it.
vue.config.js
View file @
01905882
...
...
@@ -3,7 +3,7 @@ module.exports = {
outputDir
:
"./dist"
,
lintOnSave
:
false
,
assetsDir
:
''
,
publicPath
:
'
.
/'
,
publicPath
:
'/'
,
configureWebpack
:{
resolve
:
{
alias
:
{
...
...
@@ -14,13 +14,13 @@ module.exports = {
}
},
output
:{
filename
:
'
./
js/[name].js'
,
chunkFilename
:
'
./
js/[name].js'
filename
:
'js/[name].js'
,
chunkFilename
:
'js/[name].js'
},
plugins
:[
new
MiniCssExtractPlugin
({
filename
:
'
./
css/[name].css'
,
chunkFilename
:
'
./
css/[name].css'
filename
:
'css/[name].css'
,
chunkFilename
:
'css/[name].css'
})
]
},
...
...
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