Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
P
pica-admin-consultation
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
Close sidebar
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
com.pica.cloud.education.frontend
pica-admin-consultation
提交
909f9823
提交
909f9823
编写于
7月 28, 2021
作者:
jing.rong
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
save
上级
722f9e2c
变更
3
隐藏空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
183 行增加
和
2 行删除
+183
-2
package-lock.json
package-lock.json
+3
-1
router.js
src/router/router.js
+7
-1
workbench.vue
src/views/IM/diagnosis-admin/workbench.vue
+173
-0
未找到文件。
package-lock.json
浏览文件 @
909f9823
...
...
@@ -1270,6 +1270,7 @@
"resolved"
:
"http://192.168.110.93:4873/boom/-/boom-2.10.1.tgz"
,
"integrity"
:
"sha1-OciRjO/1eZ+D+UkqhI9iWt0Mdm8="
,
"dev"
:
true
,
"optional"
:
true
,
"requires"
:
{
"hoek"
:
"2.x.x"
}
...
...
@@ -3621,7 +3622,8 @@
"version"
:
"2.16.3"
,
"resolved"
:
"http://192.168.110.93:4873/hoek/-/hoek-2.16.3.tgz"
,
"integrity"
:
"sha1-ILt0A9POo5jpHcRxCo/xuCdKJe0="
,
"dev"
:
true
"dev"
:
true
,
"optional"
:
true
},
"home-or-tmp"
:
{
"version"
:
"2.0.0"
,
...
...
src/router/router.js
浏览文件 @
909f9823
...
...
@@ -10,6 +10,8 @@ const diagnosisEditor = r => require.ensure([], () => r(require('../views/IM/dia
const
diagnosisListNew
=
r
=>
require
.
ensure
([],
()
=>
r
(
require
(
'../views/IM/diagnosis-admin/diagnosis-list-new.vue'
)),
'diagnosisListNew'
)
const
downList
=
r
=>
require
.
ensure
([],
()
=>
r
(
require
(
'../views/IM/diagnosis-admin/down-list.vue'
)),
'downList'
)
const
operation
=
r
=>
require
.
ensure
([],
()
=>
r
(
require
(
'../views/IM/diagnosis-admin/operation.vue'
)),
'downList'
)
const
workbench
=
r
=>
require
.
ensure
([],
()
=>
r
(
require
(
'../views/IM/diagnosis-admin/workbench.vue'
)),
'workbench'
)
export
default
[{
path
:
'/'
,
component
:
App
,
...
...
@@ -48,6 +50,10 @@ export default [{
},{
path
:
'/operation'
,
component
:
operation
}
},
{
path
:
'/workbench'
,
component
:
workbench
}
]
}]
src/views/IM/diagnosis-admin/workbench.vue
0 → 100644
浏览文件 @
909f9823
<
template
>
<div
class=
"diagnosis-list-content"
>
<div
class=
"select-content screenSet"
>
<div
class=
"title"
>
我的工作台
</div>
</div>
<div
class=
"select-content screenSet"
>
<!-- 时间 -->
<el-row
type=
"flex"
justify=
"center"
>
<div
id=
"picker"
>
<div
class=
"block"
>
<el-date-picker
v-model=
"value1"
type=
"date"
:clearable=
'false'
ref=
"picker"
placeholder=
"选择日期"
>
</el-date-picker>
<i
class=
"el-icon-arrow-down"
@
click=
"onfn"
></i>
</div>
</div>
</el-row>
<!-- tab栏 -->
<div
class=
"box"
v-if=
"isdon ==='1'"
>
<el-radio-group
v-model=
"tabPosition"
style=
"margin-bottom: 30px;"
>
<el-radio-button
label=
"all"
>
全部(0)
</el-radio-button>
<el-radio-button
label=
"abnormal"
>
异常(0)
</el-radio-button>
<el-radio-button
label=
"consultation"
>
问诊中(0)
</el-radio-button>
<el-radio-button
label=
"Notstarted"
>
未开始(0)
</el-radio-button>
<el-radio-button
label=
"Hasended"
>
已结束(0)
</el-radio-button>
<el-radio-button
label=
"Cancelled"
>
已取消(0)
</el-radio-button>
</el-radio-group>
</div>
<div
class=
"lfet"
v-else
>
<el-row
:gutter=
"20"
>
<el-col
:span=
"6"
><div
class=
"grid-content bg-purple"
>
<span>
总问诊数
</span>
<span>
0单
</span>
</div></el-col>
<el-col
:span=
"6"
><div
class=
"grid-content bg-purple"
>
<span>
已问诊数
</span>
<span>
0单
</span>
</div></el-col>
<el-col
:span=
"6"
><div
class=
"grid-content bg-purple"
>
<span>
问诊中
</span>
<span>
0单
</span>
</div>
</el-col>
<el-col
:span=
"6"
><div
class=
"grid-content bg-purple"
>
<span>
未问诊
</span>
<span>
0单
</span>
</div>
</el-col>
</el-row>
<div
><i
class=
"el-icon-s-custom"
>
运营A成员(6单)
</i></div>
<div
><i
class=
"el-icon-s-custom"
>
运营B成员(2单)
</i></div>
</div>
<!--
<el-empty
description=
"描述文字"
></el-empty>
-->
<!-- 分页 -->
<el-row
type=
"flex"
justify=
"end"
>
<el-pagination
background
@
size-change=
"handleSizeChange"
@
current-change=
"handleCurrentChange"
:current-page=
"currentPage4"
:page-sizes=
"[100, 200, 300, 400]"
:page-size=
"100"
layout=
"prev, pager, next, sizes, jumper"
:total=
"400"
>
</el-pagination>
</el-row>
</div>
</div>
</
template
>
<
script
>
export
default
{
data
(){
return
{
tabPosition
:
"all"
,
value1
:
Date
.
now
(),
currentPage4
:
0
,
// 判断是否是管理员
isdon
:
'2'
,
name
:
''
}
},
methods
:{
handleSizeChange
(){
},
handleCurrentChange
(){
},
onfn
(){
this
.
$refs
.
picker
.
focus
()
}
},
mounted
(){
console
.
log
(
this
.
$refs
.
picker
.
value
);
}
}
</
script
>
<
style
lang=
'scss'
scoped
>
#picker
{
::v-deep
{
.el-input--prefix
{
padding-left
:
0px
;
.el-input__inner
{
background
:
turquoise
!
important
;
}
}
}
}
</
style
>
<
style
lang=
"scss"
scoped
>
.diagnosis-list-content
{
.select-content
{
margin-bottom
:
10px
;
padding
:
10px
;
background
:
#fff
;
overflow
:
hidden
!
important
;
.title
{
height
:
50px
;
display
:
flex
;
justify-content
:
flex-start
;
align-items
:
center
;
}
.box
{
border-bottom
:
1px
solid
#ccc
;
.el-radio-group
{
margin-bottom
:
-1px
!
important
;
}
}
}
}
.el-row
{
margin-bottom
:
20px
;
&
:last-child
{
margin-bottom
:
0
;
}
}
.el-col
{
border-radius
:
4px
;
}
.bg-purple-dark
{
background
:
#99a9bf
;
}
.bg-purple
{
background
:
#d3dce6
;
}
.bg-purple-light
{
background
:
#e5e9f2
;
}
.grid-content
{
border-radius
:
4px
;
min-height
:
45px
;
display
:
flex
;
justify-content
:
space-evenly
;
align-items
:
center
;
font-size
:
16px
;
}
.row-bg
{
padding
:
10px
0
;
background-color
:
#f9fafc
;
}
</
style
>
node
\ No newline at end of file
写
预览
Markdown
格式
0%
请重试
or
附加一个文件
附加文件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录