Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
P
pica.cloud.web-education-admin
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
成员
成员
收起侧边栏
Close sidebar
动态
分支图
统计图
提交
打开侧边栏
com.pica.cloud.education.frontend
pica.cloud.web-education-admin
提交
218b4b1b
提交
218b4b1b
编写于
3月 14, 2019
作者:
yi.li
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
录入列表样式调整1
上级
da0283e6
变更
3
隐藏空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
42 行增加
和
14 行删除
+42
-14
element-reset.css
src/style/followup/element-reset.css
+6
-0
followup-common.scss
src/style/followup/followup-common.scss
+3
-0
record-list.vue
src/views/followup/record-manage/record-list.vue
+33
-14
未找到文件。
src/style/followup/element-reset.css
浏览文件 @
218b4b1b
...
@@ -15,3 +15,9 @@
...
@@ -15,3 +15,9 @@
.el-select
.el-input__inner
:focus
{
.el-select
.el-input__inner
:focus
{
border-color
:
#449284
;
border-color
:
#449284
;
}
}
.el-button--text
{
color
:
#606266
;
}
.el-button--text
:focus
,
.el-button--text
:hover
{
color
:
#449284
;
}
src/style/followup/followup-common.scss
浏览文件 @
218b4b1b
...
@@ -33,5 +33,8 @@ $picaGreen: #449284; //主色调
...
@@ -33,5 +33,8 @@ $picaGreen: #449284; //主色调
padding
:
30px
0
30px
0
;
padding
:
30px
0
30px
0
;
}
}
.btn-right-class
{
margin-right
:
10px
;
}
}
}
src/views/followup/record-manage/record-list.vue
浏览文件 @
218b4b1b
...
@@ -7,10 +7,10 @@
...
@@ -7,10 +7,10 @@
<div
class=
"search-input"
>
<div
class=
"search-input"
>
<el-form
ref=
"serchForm"
:model=
"searchData"
:inline=
"true"
label-suffix=
":"
label-width=
"125px"
>
<el-form
ref=
"serchForm"
:model=
"searchData"
:inline=
"true"
label-suffix=
":"
label-width=
"125px"
>
<el-form-item
label=
"随访计划名称"
>
<el-form-item
label=
"随访计划名称"
>
<el-input
v-model=
"searchData.planName"
placeholder=
"请输入关键词"
style=
"width: 250px"
></el-input>
<el-input
v-model=
"searchData.planName"
placeholder=
"请输入关键词"
style=
"width: 250px"
clearable
></el-input>
</el-form-item>
</el-form-item>
<el-form-item
label=
"随访时间范围"
>
<el-form-item
label=
"随访时间范围"
>
<el-select
v-model=
"searchData.timeRange"
placeholder=
"请选择时间范围"
style=
"width: 250px"
>
<el-select
v-model=
"searchData.timeRange"
placeholder=
"请选择时间范围"
style=
"width: 250px"
clearable
>
<el-option
<el-option
v-for=
"(item,index) in timeRangeList"
v-for=
"(item,index) in timeRangeList"
:key=
"index"
:key=
"index"
...
@@ -20,10 +20,10 @@
...
@@ -20,10 +20,10 @@
</el-select>
</el-select>
</el-form-item>
</el-form-item>
<el-form-item
label=
"姓名"
>
<el-form-item
label=
"姓名"
>
<el-input
v-model=
"searchData.name"
placeholder=
"
"
></el-input>
<el-input
v-model=
"searchData.name"
placeholder=
"
请输入姓名"
clearable
></el-input>
</el-form-item>
</el-form-item>
<el-form-item
label=
"手机号"
>
<el-form-item
label=
"手机号"
>
<el-input
v-model=
"searchData.phoneNumber"
placeholder=
"请输入手机号"
></el-input>
<el-input
v-model=
"searchData.phoneNumber"
placeholder=
"请输入手机号"
clearable
></el-input>
</el-form-item>
</el-form-item>
</el-form>
</el-form>
</div>
</div>
...
@@ -32,7 +32,7 @@
...
@@ -32,7 +32,7 @@
<el-button
class=
"button-white"
plain
@
click=
"reseat"
>
重置
</el-button>
<el-button
class=
"button-white"
plain
@
click=
"reseat"
>
重置
</el-button>
</div>
</div>
</div>
</div>
<div
class=
"t
e
ble-content"
>
<div
class=
"t
a
ble-content"
>
<el-radio-group
v-model=
"activeName"
>
<el-radio-group
v-model=
"activeName"
>
<el-radio-button
label=
"all"
>
全部(
{{
allNum
}}
)
</el-radio-button>
<el-radio-button
label=
"all"
>
全部(
{{
allNum
}}
)
</el-radio-button>
<el-radio-button
label=
"finished"
>
已完成(
{{
finishedNum
}}
)
</el-radio-button>
<el-radio-button
label=
"finished"
>
已完成(
{{
finishedNum
}}
)
</el-radio-button>
...
@@ -49,13 +49,24 @@
...
@@ -49,13 +49,24 @@
</el-table-column>
</el-table-column>
<el-table-column
prop=
"createdName"
label=
"随访状态"
min-width=
"100"
align=
"center"
></el-table-column>
<el-table-column
prop=
"createdName"
label=
"随访状态"
min-width=
"100"
align=
"center"
></el-table-column>
<el-table-column
label=
"操作"
fixed=
"right"
align=
"center"
min-width=
"200"
>
<el-table-column
label=
"操作"
fixed=
"right"
align=
"center"
min-width=
"200"
>
<
template
slot-scope=
"scope"
>
<
template
slot-scope=
"scope"
>
<el-button
type=
"primary"
size=
"small"
@
click=
"editRow(scope.row)"
>
随访录入
</el-button>
<el-button
class=
"btn-right-class"
type=
"text"
size=
"small"
@
click=
"editRow(scope.row)"
>
随访录入
</el-button>
|
<el-button
type=
"primary"
size=
"small"
@
click=
"changeStatusRow(scope.row)"
>
| 变更随访状态
</el-button>
<el-button
class=
"btn-right-class"
type=
"text"
size=
"small"
@
click=
"changeStatusRow(scope.row)"
>
变更随访状态
</el-button>
|
<el-button
type=
"primary"
size=
"small"
@
click=
"sendRow(scope.row)"
>
|
发送患教
</el-button>
<el-button
type=
"text"
size=
"small"
@
click=
"sendRow(scope.row)"
>
发送患教
</el-button>
</
template
>
</
template
>
</el-table-column>
</el-table-column>
</el-table>
</el-table>
<el-pagination
background
v-if=
"allData.length"
@
size-change=
"handleSizeChangePre"
@
current-change=
"handleCurrentChangePre"
layout=
"total, sizes, prev, pager, next, jumper"
:current-page=
"paginationSet.pageNum"
:page-sizes=
"paginationSet.pageSizes"
:page-size=
"paginationSet.pageSize"
:total=
"paginationSet.total"
>
</el-pagination>
</div>
</div>
</div>
</div>
</div>
</div>
...
@@ -88,9 +99,17 @@
...
@@ -88,9 +99,17 @@
allNum
:
300
,
allNum
:
300
,
finishedNum
:
100
,
finishedNum
:
100
,
unfinishNum
:
200
,
unfinishNum
:
200
,
allData
:
[],
allData
:
[{
name
:
'云晓雀'
}],
finishedData
:
[],
finishedData
:
[],
unfinishData
:
[],
unfinishData
:
[],
paginationSet
:
{
pageNum
:
1
,
pageSize
:
10
,
total
:
null
,
pageSizes
:
[
10
,
20
,
50
,
100
]
}
}
}
},
},
methods
:
{
methods
:
{
...
@@ -104,6 +123,8 @@
...
@@ -104,6 +123,8 @@
editRow
(){},
editRow
(){},
changeStatusRow
(){},
changeStatusRow
(){},
sendRow
(){},
sendRow
(){},
handleSizeChangePre
(){},
handleCurrentChangePre
(){},
},
},
}
}
</
script
>
</
script
>
...
@@ -113,15 +134,13 @@
...
@@ -113,15 +134,13 @@
$input
:
205px
;
$input
:
205px
;
$searchDiv
:
160px
;
$searchDiv
:
160px
;
@import
'../../../style/followup/followup-common'
;
@import
'../../../style/followup/followup-common'
;
@import
'../../../style/followup/element-reset.css'
;
.record-list-wrapper
{
.record-list-wrapper
{
.record-list-content
{
.record-list-content
{
.search-input
{
.search-input
{
max-width
:
none
;
max-width
:
none
;
flex
:
1
;
flex
:
1
;
}
}
.teble-content
{
padding
:
20px
0
;
}
}
}
}
}
</
style
>
</
style
>
写
预览
Markdown
格式
0%
请重试
or
附加一个文件
附加文件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录