Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
foreign
/
customer-service
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
a595e7f1
authored
Oct 15, 2021
by
Sixong.Zhu
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
style
parent
178de50f
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
26 additions
and
3 deletions
components/msg-shortcut.vue
components/who-read-list.vue
components/workflow.vue
components/msg-shortcut.vue
View file @
a595e7f1
...
@@ -84,8 +84,20 @@
...
@@ -84,8 +84,20 @@
>
>
</div>
</div>
</div>
</div>
<div
v-if=
"!replyList.length && !replyInputVisible"
class=
"text-center text-hint"
>
暂无快捷回复,
<el-button
type=
"text"
@
click=
"replyInputVisible = true"
>
添加
</el-button
>
</div>
</div>
</div>
</
template
>
</
template
>
<
script
lang=
"ts"
>
<
script
lang=
"ts"
>
import
{
Component
,
Vue
}
from
"vue-property-decorator"
;
import
{
Component
,
Vue
}
from
"vue-property-decorator"
;
import
{
MessageType
}
from
"../model"
;
import
{
MessageType
}
from
"../model"
;
...
...
components/who-read-list.vue
View file @
a595e7f1
...
@@ -35,7 +35,7 @@
...
@@ -35,7 +35,7 @@
<div
class=
"items"
>
<div
class=
"items"
>
<el-scrollbar>
<el-scrollbar>
<div
<div
class=
"member-item"
class=
"member-item
d-flex align-items-center
"
v-for=
"item in items"
v-for=
"item in items"
:key=
"`$
{item.eid}-${tab}`"
:key=
"`$
{item.eid}-${tab}`"
>
>
...
@@ -44,7 +44,11 @@
...
@@ -44,7 +44,11 @@
:src=
"item.avatar"
:src=
"item.avatar"
:size=
"30"
:size=
"30"
/>
/>
<span
class=
"member-name"
>
{{
item
.
name
}}
</span>
<span
class=
"member-name text-truncate"
:title=
"item.name"
>
{{
item
.
name
}}
</span
>
</div>
</div>
</el-scrollbar>
</el-scrollbar>
</div>
</div>
...
...
components/workflow.vue
View file @
a595e7f1
<
template
>
<
template
>
<div
class=
"h-100 pos-rel workflows"
>
<div
class=
"h-100 pos-rel workflows"
>
<div
class=
"workflow-header"
>
<div
class=
"workflow-header"
v-if=
"flowList.length"
>
<div
class=
"cell"
>
名称
</div>
<div
class=
"cell"
>
名称
</div>
<div
class=
"cell"
>
备注
</div>
<div
class=
"cell"
>
备注
</div>
<div
class=
"cell"
>
状态
</div>
<div
class=
"cell"
>
状态
</div>
...
@@ -38,6 +38,9 @@
...
@@ -38,6 +38,9 @@
>
>
</span>
</span>
</div>
</div>
<div
v-if=
"!flowList.length"
class=
"text-center text-hint"
>
暂无数据
</div>
</el-scrollbar>
</el-scrollbar>
<div
class=
"detal-btns"
>
<div
class=
"detal-btns"
>
<el-button>
查看详情
</el-button>
<el-button>
查看详情
</el-button>
...
@@ -154,4 +157,8 @@ export default class WorkFlow extends Vue {
...
@@ -154,4 +157,8 @@ export default class WorkFlow extends Vue {
.workflow-scrollbar
{
.workflow-scrollbar
{
height
:
calc
(
100%
-
15px
);
height
:
calc
(
100%
-
15px
);
}
}
.text-hint
{
margin
:
20px
0
;
}
</
style
>
</
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