cloud-web/src/components/ef/data_E.js

55 lines
1.1 KiB
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

var dataE = {
name: '流程E力导图',
nodeList: [
{
id: 'nodeA',
name: '流程D-节点A',
type: 'task',
ico: 'el-icon-user-solid',
state: 'success'
},
{
id: 'nodeB',
type: 'task',
name: '流程D-节点B',
ico: 'el-icon-goods',
state: 'error'
},
{
id: 'nodeC',
name: '流程D-节点C',
type: 'task',
ico: 'el-icon-present',
state: 'warning'
}, {
id: 'nodeD',
name: '流程D-节点D',
type: 'task',
ico: 'el-icon-present',
state: 'running'
}
],
lineList: [{
from: 'nodeA',
to: 'nodeB'
}, {
from: 'nodeA',
to: 'nodeC',
label: 'hello'
}, {
from: 'nodeB',
to: 'nodeD'
}, {
from: 'nodeC',
to: 'nodeD'
}, {
from: 'nodeC',
to: 'nodeC'
}
]
}
export function getDataE() {
return dataE
}