Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
A
agcs2.0-web
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
liang
agcs2.0-web
Commits
051d7d77
Commit
051d7d77
authored
Nov 29, 2022
by
miaojiale
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
运营管理 start 质控报表
parent
0b4be06c
Changes
9
Show whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
366 additions
and
10 deletions
+366
-10
index.vue
src/components/CustomsTable/index.vue
+10
-0
index.vue
src/views/followupquery/index.vue
+0
-10
index.vue
src/views/qualitycontrol-report/index.vue
+14
-0
AcademicTrend.vue
...systems/operation-management/components/AcademicTrend.vue
+14
-0
HealthPopularization.vue
.../operation-management/components/HealthPopularization.vue
+14
-0
NewsMeeting.vue
...s/systems/operation-management/components/NewsMeeting.vue
+214
-0
NoticeAnnouncement.vue
...ms/operation-management/components/NoticeAnnouncement.vue
+14
-0
scientificResearch.vue
...ms/operation-management/components/scientificResearch.vue
+14
-0
index.vue
src/views/systems/operation-management/index.vue
+72
-0
No files found.
src/components/CustomsTable/index.vue
View file @
051d7d77
...
@@ -184,4 +184,14 @@ export default {
...
@@ -184,4 +184,14 @@ export default {
background-repeat
:
no-repeat
;
background-repeat
:
no-repeat
;
background-size
:
cover
;
background-size
:
cover
;
}
}
::v-deep
{
.el-table
{
thead
{
.newHeader
{
height
:
60px
;
background
:
#f6f6f6
;
}
}
}
}
</
style
>
</
style
>
src/views/followupquery/index.vue
View file @
051d7d77
...
@@ -273,14 +273,4 @@ export default {
...
@@ -273,14 +273,4 @@ export default {
padding
:
0
24px
;
padding
:
0
24px
;
}
}
}
}
::v-deep
{
.el-table
{
thead
{
.newHeader
{
height
:
60px
;
background
:
#f6f6f6
;
}
}
}
}
</
style
>
</
style
>
src/views/qualitycontrol-report/index.vue
0 → 100644
View file @
051d7d77
<
template
>
<div>
质控报表
</div>
</
template
>
<
script
>
export
default
{
data
()
{
return
{}
},
methods
:
{},
mounted
()
{},
watch
:
{},
}
</
script
>
<
style
lang=
"scss"
scoped
></
style
>
src/views/systems/operation-management/components/AcademicTrend.vue
0 → 100644
View file @
051d7d77
<
template
>
<div>
学说那个太
</div>
</
template
>
<
script
>
export
default
{
data
()
{
return
{}
},
methods
:
{},
mounted
()
{},
watch
:
{},
}
</
script
>
<
style
lang=
"scss"
scoped
></
style
>
src/views/systems/operation-management/components/HealthPopularization.vue
0 → 100644
View file @
051d7d77
<
template
>
<div>
健康科普
</div>
</
template
>
<
script
>
export
default
{
data
()
{
return
{}
},
methods
:
{},
mounted
()
{},
watch
:
{},
}
</
script
>
<
style
lang=
"scss"
scoped
></
style
>
src/views/systems/operation-management/components/NewsMeeting.vue
0 → 100644
View file @
051d7d77
<
template
>
<div
id=
"medicalunion-management"
>
<div
class=
"top-btn"
>
<el-button
type=
"primary"
class=
"btn"
@
click=
"addMedical"
>
添加
</el-button>
</div>
<div
class=
"bot-table"
>
<customs-table
ref=
"table"
:table-data=
"tableData"
:columns=
"columns"
:header-class=
"'newHeader'"
:list-loading=
"listLoading"
:current-page=
"pageIndex"
:total-count=
"total"
:page-sizes=
"pageSizes"
:page-size=
"pageSize"
@
pageSizeChange=
"handleSizeChange"
@
currentPageChange=
"handleCurrentChange"
/>
</div>
<el-dialog
:visible.sync=
"addVisible"
width=
"520px"
:show-close=
"true"
>
<div
class=
"title"
>
添加医联体
</div>
<el-form
:model=
"form"
:label-position=
"'right'"
label-width=
"110px"
label-suffix=
":"
>
<el-form-item
v-for=
"(item, index) in formList"
:key=
"index"
:label=
"item.label"
>
<el-input
v-if=
"item.type == 'input'"
v-model=
"form[item.prop]"
autocomplete=
"off"
:placeholder=
"'请填写' + item.label"
></el-input>
<el-select
v-if=
"item.type == 'select'"
v-model=
"form[item.prop]"
:placeholder=
"'请选择' + item.label"
>
<el-option
v-for=
"e in item.selectGroup"
:key=
"e.value"
:label=
"e.label"
:value=
"e.value"
></el-option>
</el-select>
</el-form-item>
</el-form>
<span
slot=
"footer"
class=
"dialog-footer"
>
<el-button
type=
"primary"
@
click=
"addVisible = false"
>
保存
</el-button>
</span>
</el-dialog>
</div>
</
template
>
<
script
>
import
CustomsTable
from
"
@/components/CustomsTable
"
import
paginationMixin
from
"
@/components/TabComponents/mixin
"
export
default
{
components
:
{
CustomsTable
,
},
mixins
:
[
paginationMixin
],
data
()
{
return
{
addVisible
:
false
,
listLoading
:
false
,
columns
:
[
{
label
:
"
标题
"
,
minWidth
:
120
,
value
:
"
groupName
"
,
},
{
label
:
"
医联体编号
"
,
minWidth
:
120
,
value
:
"
name
"
,
},
{
label
:
"
省
"
,
minWidth
:
120
,
value
:
"
sex
"
,
},
{
label
:
"
市
"
,
minWidth
:
120
,
value
:
"
idCard
"
,
},
{
label
:
"
操作
"
,
width
:
220
,
fixed
:
"
right
"
,
operType
:
"
button
"
,
operations
:
[
{
func
:
this
.
editMedical
,
formatter
(
row
)
{
return
{
label
:
"
编辑
"
,
type
:
"
text
"
,
}
},
},
{
func
:
this
.
rowOpration
,
style
:
{
color
:
"
#FA6400
"
,
},
formatter
(
row
)
{
return
{
label
:
"
删除
"
,
type
:
"
text
"
,
}
},
},
],
},
],
tableData
:
[
{
groupName
:
"
第一个
"
,
},
],
formList
:
[
{
type
:
"
input
"
,
label
:
"
医联体名称
"
,
prop
:
"
medicalName
"
,
},
{
type
:
"
input
"
,
label
:
"
医联体编号
"
,
prop
:
"
medicalId
"
,
},
{
type
:
"
select
"
,
label
:
"
省
"
,
prop
:
"
province
"
,
selectGroup
:
[{
label
:
"
北京市
"
,
value
:
"
001
"
}],
},
{
type
:
"
select
"
,
label
:
"
市
"
,
prop
:
"
city
"
,
selectGroup
:
[{
label
:
"
北京市
"
,
value
:
"
001
"
}],
},
],
form
:
{},
}
},
watch
:
{},
mounted
()
{},
methods
:
{
// 添加医联体
addMedical
()
{
this
.
addVisible
=
true
},
// 编辑医联体
editMedical
(
data
)
{
console
.
log
(
data
)
this
.
form
=
{
medicalName
:
"
黑乎乎
"
,
medicalId
:
"
123
"
,
province
:
"
001
"
,
city
:
"
001
"
,
}
this
.
addVisible
=
true
},
},
}
</
script
>
<
style
lang=
"scss"
scoped
>
#medicalunion-management
{
padding
:
20px
;
.top-btn
{
.btn
{
width
:
80px
;
height
:
32px
;
background
:
#4e68ff
;
border-radius
:
4px
;
}
}
.bot-table
{
margin-top
:
20px
;
}
.title
{
text-align
:
center
;
height
:
26px
;
font-size
:
22px
;
font-family
:
AlibabaPuHuiTiM
;
color
:
rgba
(
0
,
0
,
0
,
0
.8
);
line-height
:
26px
;
margin-bottom
:
30px
;
}
}
::v-deep
.el-dialog__body
{
padding
:
0
40px
;
border-top
:
none
;
}
::v-deep
.el-dialog__footer
{
border-top
:
none
;
text-align
:
center
;
.el-button
{
width
:
100px
;
height
:
32px
;
background
:
#4e68ff
;
}
}
</
style
>
src/views/systems/operation-management/components/NoticeAnnouncement.vue
0 → 100644
View file @
051d7d77
<
template
>
<div>
通知公告
</div>
</
template
>
<
script
>
export
default
{
data
()
{
return
{}
},
methods
:
{},
mounted
()
{},
watch
:
{},
}
</
script
>
<
style
lang=
"scss"
scoped
></
style
>
src/views/systems/operation-management/components/scientificResearch.vue
0 → 100644
View file @
051d7d77
<
template
>
<div>
科学研究
</div>
</
template
>
<
script
>
export
default
{
data
()
{
return
{}
},
methods
:
{},
mounted
()
{},
watch
:
{},
}
</
script
>
<
style
lang=
"scss"
scoped
></
style
>
src/views/systems/operation-management/index.vue
0 → 100644
View file @
051d7d77
<
template
>
<div
id=
"operation-management"
>
<el-tabs
v-model=
"curOperation"
@
tab-click=
"handleClick"
>
<el-tab-pane
v-for=
"(item, index) in operationList"
:key=
"index"
:label=
"item.name"
:name=
"item.name"
>
<component
:is=
"item.component"
></component>
</el-tab-pane>
</el-tabs>
</div>
</
template
>
<
script
>
import
NewsMeeting
from
"
@/views/systems/operation-management/components/NewsMeeting.vue
"
import
NoticeAnnouncement
from
"
@/views/systems/operation-management/components/NoticeAnnouncement.vue
"
import
AcademicTrend
from
"
@/views/systems/operation-management/components/AcademicTrend.vue
"
import
HealthPopularization
from
"
@/views/systems/operation-management/components/HealthPopularization.vue
"
import
scientificResearch
from
"
@/views/systems/operation-management/components/scientificResearch.vue
"
export
default
{
components
:
{
NewsMeeting
,
NoticeAnnouncement
,
AcademicTrend
,
HealthPopularization
,
scientificResearch
,
},
data
()
{
return
{
curOperation
:
"
新闻会议
"
,
operationList
:
[
{
name
:
"
新闻会议
"
,
component
:
"
NewsMeeting
"
,
},
{
name
:
"
通知公告
"
,
component
:
"
NoticeAnnouncement
"
,
},
{
name
:
"
学术动态
"
,
component
:
"
AcademicTrend
"
,
},
{
name
:
"
健康科普
"
,
component
:
"
HealthPopularization
"
,
},
{
name
:
"
科学研究
"
,
component
:
"
scientificResearch
"
,
},
],
}
},
watch
:
{},
mounted
()
{},
methods
:
{
handleClick
(
tab
,
event
)
{
console
.
log
(
tab
,
event
)
},
},
}
</
script
>
<
style
lang=
"scss"
scoped
>
#operation-management
{
padding
:
20px
;
.
el-tabs__nav-wrap
:
:
after
{
background-color
:
#fff
;
}
}
</
style
>
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