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
2215d6f0
authored
Jul 21, 2021
by
panjiangyi
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
工作流列表
parent
76d31530
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
86 additions
and
11 deletions
chat.vue
components/workflow.vue
chat.vue
View file @
2215d6f0
...
@@ -15,19 +15,20 @@
...
@@ -15,19 +15,20 @@
/>
/>
</el-tab-pane>
</el-tab-pane>
<el-tab-pane
<el-tab-pane
class=
"h-100"
:label=
"`成员$
{chatMembers.length}人`"
:label=
"`成员$
{chatMembers.length}人`"
name="two"
name="two"
>
>
<ChatMembers
/>
<ChatMembers
/>
</el-tab-pane>
</el-tab-pane>
<el-tab-pane
label=
"工作流"
name=
"three"
>
<el-tab-pane
class=
"h-100"
label=
"工作流"
name=
"three"
>
<workflow
<workflow
:model_name=
"currentChat.business_data.model_name"
:model_name=
"currentChat.business_data.model_name"
:id=
"currentChat.business_data.obj_id"
:id=
"currentChat.business_data.obj_id"
:name=
"currentChat.business_data.detail_name"
:name=
"currentChat.business_data.detail_name"
/>
/>
</el-tab-pane>
</el-tab-pane>
<el-tab-pane
label=
"备注"
name=
"four"
>
<el-tab-pane
class=
"h-100"
label=
"备注"
name=
"four"
>
<remarkList
<remarkList
:modelName=
"currentChat.business_data.model_name"
:modelName=
"currentChat.business_data.model_name"
:associateId=
"currentChat.business_data.obj_id"
:associateId=
"currentChat.business_data.obj_id"
...
...
components/workflow.vue
View file @
2215d6f0
<
template
>
<
template
>
<div>
<div
class=
"h-100 pos-rel workflows"
>
<div
v-for=
"item in mockData"
:key=
"item.id"
>
<div
class=
"workflow-header"
>
<span
class=
"name"
>
{{
item
.
name
}}
</span>
<div
class=
"cell"
>
名称
</div>
<span
class=
"state"
>
{{
item
.
state
}}
</span>
<div
class=
"cell"
>
备注
</div>
<div
class=
"cell"
>
状态
</div>
<div
class=
"cell"
>
操作
</div>
</div>
<el-scrollbar
class=
"workflow-scrollbar adjust-el-scroll-right-bar"
>
<div
class=
"workflow pos-rel table"
v-for=
"item in mockData"
:key=
"item.id"
>
<span
class=
"cell workflow-name"
>
{{
item
.
processName
}}
</span>
<span
class=
"cell workflow-remark"
>
{{
item
.
state
}}
</span>
<span
class=
"cell status"
>
{{
getStatus
(
item
.
status
)
}}
</span>
<span
class=
"cell"
>
<el-button
v-if=
"item.status === workFlowstatus.未启动"
class=
"get-out"
type=
"text"
@
click=
"start(item)"
>
启动
</el-button
>
<el-button
v-else
class=
"get-out"
type=
"text"
@
click=
"goToDetail(item)"
>
查看详情
</el-button
>
</span>
</div>
</el-scrollbar>
<div
class=
"detal-btns"
>
<el-button>
查看详情
</el-button>
</div>
</div>
</div>
</div>
</
template
>
</
template
>
...
@@ -12,9 +50,9 @@ import { Component, Prop, Vue } from "vue-property-decorator";
...
@@ -12,9 +50,9 @@ import { Component, Prop, Vue } from "vue-property-decorator";
import
Chat
from
"../xim/index"
;
import
Chat
from
"../xim/index"
;
enum
WorkFlowStatus
{
enum
WorkFlowStatus
{
idle
=
0
,
"未启动"
=
0
,
processing
=
1
,
"已启动"
=
1
,
done
=
2
,
"已完成"
=
2
,
}
}
const
sdk
=
Chat
.
getSdk
;
const
sdk
=
Chat
.
getSdk
;
@
Component
({
components
:
{}
})
@
Component
({
components
:
{}
})
...
@@ -37,8 +75,9 @@ export default class WorkFlow extends Vue {
...
@@ -37,8 +75,9 @@ export default class WorkFlow extends Vue {
})
})
private
readonly
name
!
:
string
;
private
readonly
name
!
:
string
;
private
workFlowstatus
=
WorkFlowStatus
;
private
getStatus
(
status
:
WorkFlowStatus
)
{
private
getStatus
(
status
:
WorkFlowStatus
)
{
return
WorkFlowStatus
[
status
];
}
}
private
mockData
=
[
private
mockData
=
[
...
@@ -208,6 +247,41 @@ export default class WorkFlow extends Vue {
...
@@ -208,6 +247,41 @@ export default class WorkFlow extends Vue {
// const workflow = await sdk().model(this.model_name).workflow2().queryProcessByAssociateId(+this.id);
// const workflow = await sdk().model(this.model_name).workflow2().queryProcessByAssociateId(+this.id);
// console.log("workflow", workflow);
// console.log("workflow", workflow);
}
}
public
start
(
workflow
:
any
)
{
console
.
log
(
"start"
,
workflow
);
}
public
goToDetail
(
workflow
:
any
)
{
console
.
log
(
"goToDetail"
,
workflow
);
}
}
}
</
script
>
</
script
>
<
style
lang=
"less"
scoped
></
style
>
<
style
lang=
"less"
scoped
>
.workflows
{
padding
:
10px
30px
;
padding-bottom
:
0
;
background
:
#fff
;
.workflow
{
margin
:
10px
0
;
padding
:
10px
0
;
&:hover
{
background-color
:
#f5f7fa
;
}
}
.cell
{
display
:
inline-block
;
width
:
25%
;
}
.workflow-name
{
word-break
:
break-word
;
white-space
:
pre-line
;
}
.get-out
{
padding
:
0
;
}
}
.workflow-scrollbar
{
height
:
calc
(
100%
-
15px
);
}
</
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