Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
liangzhen
/
framework-tools-web
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 eb9b6a48
authored
Apr 09, 2024
by
史敦盼
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改
1 parent
5f5e50c7
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
387 additions
and
2 deletions
src/views/busi-assets-list/index.vue
src/xmlTemplate/index.js
src/views/busi-assets-list/index.vue
View file @
eb9b6a4
...
...
@@ -370,7 +370,7 @@
</el-select> -->
</el-form-item>
<div
class=
"dialog_form_item3 m-b-20 flex-c"
>
<div
class=
"dialog_form_item_title"
>
图标设置:
</div>
<div
class=
"dialog_form_item_title"
>
<span
style=
"color: #F56C6C;"
>
*
</span>
图标设置:
</div>
<div
class=
"flex"
>
<img
:style=
"{
...
...
@@ -718,6 +718,9 @@ export default {
//弹框保存
this
.
$refs
.
form
.
validate
((
valid
)
=>
{
if
(
valid
)
{
if
(
this
.
selectGraphSrc
.
length
==
0
)
{
return
this
.
$message
.
warning
(
'请选择图形'
)
}
// console.log(this.ruleForm);
let
parentAssetName
,
assetCode
,
...
...
@@ -901,7 +904,7 @@ export default {
this
.
addDialog
=
true
this
.
is_add_edit
=
'add'
this
.
disabled1
=
false
//
this.getShangJiJieDianSelect();
this
.
getShangJiJieDianSelect
();
this
.
getZuJianLeiXingSelect
(
null
).
then
((
res
)
=>
{
this
.
zuJianLeiXingSelect
=
res
})
...
...
src/xmlTemplate/index.js
0 → 100644
View file @
eb9b6a4
function
isFirstCol
(
n
)
{
return
(
n
-
1
)
%
3
===
0
}
function
isSecondCol
(
n
)
{
return
n
%
2
===
0
}
// function isThirdCol(n) {
// return n % 3 === 0
// }
function
getItemX
(
index
)
{
if
(
isFirstCol
(
index
))
{
return
16.25
}
else
if
(
isSecondCol
(
index
))
{
return
167.25
}
else
{
return
318.75
}
}
function
getBoxX
(
index
)
{
return
50
+
(
index
%
2
===
0
?
500
:
0
)
}
function
getItemY
(
index
)
{
return
Math
.
ceil
(
index
/
3
)
*
50
}
/**
* @description: 获取每一大块的Y坐标 Math.ceil(index / 2) * 20 代表换行数据后要加的间距
* @param {Number} index 索引(加一过了)
* @param {Array} data
* @return {Number}
* @author: pan
*/
function
getBoxY
(
index
,
data
)
{
// console.log('getHeight', Math.ceil(index / 2) * getHeight(data))
// console.log('(index > 2 ? 20 : 0)', index > 2 ? 20 : 0)
return
Math
.
ceil
(
index
/
2
)
*
getHeight
(
data
)
+
Math
.
ceil
(
index
/
2
)
*
20
}
function
getHeight
(
data
)
{
// 取最大数据量的高度来设置最大高度
let
maxArrayLength
=
0
data
.
forEach
((
v
)
=>
{
if
(
v
.
children
.
length
>
maxArrayLength
)
{
maxArrayLength
=
v
.
children
.
length
}
})
// console.log('maxArrayLength', maxArrayLength)
return
50
+
Math
.
ceil
(
maxArrayLength
/
3
)
*
(
40
+
10
)
}
// 数据成图, 拼接drawio的xml
export
function
handleXmlTemplate
()
{
const
data
=
[
{
assetName
:
'人力资源'
,
children
:
[
{
assetName
:
'组织管理'
,
},
{
assetName
:
'员工管理'
,
},
{
assetName
:
'培训开发'
,
},
{
assetName
:
'薪酬福利管理'
,
},
{
assetName
:
'绩效管理'
,
},
{
assetName
:
'人力资源统计分析'
,
},
{
assetName
:
'企业业务流程管理'
,
},
{
assetName
:
'干部管理'
,
},
{
assetName
:
'人力资源规划计划'
,
},
],
},
{
assetName
:
'人力资源'
,
children
:
[
{
assetName
:
'组织管理'
,
},
{
assetName
:
'员工管理'
,
},
{
assetName
:
'培训开发'
,
},
{
assetName
:
'薪酬福利管理'
,
},
{
assetName
:
'绩效管理'
,
},
{
assetName
:
'人力资源统计分析'
,
},
],
},
{
assetName
:
'人力资源3'
,
children
:
[
{
assetName
:
'组织管理'
,
},
{
assetName
:
'员工管理'
,
},
{
assetName
:
'培训开发'
,
},
{
assetName
:
'薪酬福利管理'
,
},
{
assetName
:
'绩效管理'
,
},
{
assetName
:
'人力资源统计分析'
,
},
{
assetName
:
'企业业务流程管理'
,
},
{
assetName
:
'干部管理'
,
},
{
assetName
:
'人力资源规划计划'
,
},
],
},
{
assetName
:
'人力资源'
,
children
:
[
{
assetName
:
'组织管理'
,
},
{
assetName
:
'员工管理'
,
},
{
assetName
:
'培训开发'
,
},
{
assetName
:
'薪酬福利管理'
,
},
{
assetName
:
'绩效管理'
,
},
{
assetName
:
'人力资源统计分析'
,
},
{
assetName
:
'企业业务流程管理'
,
},
{
assetName
:
'干部管理'
,
},
{
assetName
:
'人力资源规划计划'
,
},
],
},
{
assetName
:
'人力资源'
,
children
:
[
{
assetName
:
'组织管理'
,
},
{
assetName
:
'员工管理'
,
},
{
assetName
:
'培训开发'
,
},
{
assetName
:
'薪酬福利管理'
,
},
{
assetName
:
'绩效管理'
,
},
{
assetName
:
'人力资源统计分析'
,
},
],
},
{
assetName
:
'人力资源3'
,
children
:
[
{
assetName
:
'组织管理'
,
},
{
assetName
:
'员工管理'
,
},
{
assetName
:
'培训开发'
,
},
{
assetName
:
'薪酬福利管理'
,
},
{
assetName
:
'绩效管理'
,
},
{
assetName
:
'人力资源统计分析'
,
},
{
assetName
:
'企业业务流程管理'
,
},
{
assetName
:
'干部管理'
,
},
{
assetName
:
'人力资源规划计划'
,
},
],
},
]
let
template
=
`<mxGraphModel dx="1393" dy="684" grid="1" gridSize="10" guides="1" tooltips="1" connect="1" arrows="1" fold="1" page="1" pageScale="1" pageWidth="827" pageHeight="1169" math="0" shadow="0"><root><mxCell id="0"/><mxCell id="1" parent="0"/>`
for
(
let
index
=
0
;
index
<
data
.
length
;
index
++
)
{
const
element
=
data
[
index
]
template
+=
`<mxCell id="iT7zhlySpOYr2a2o4UYg-
${
index
+
2
}
" value="
&
lt
;
font
style
=&
quot
;
font
-
size
:
24
px
;
&
quot
;
&
gt
;
$
{
element
.
assetName
}
&
lt
;
/font>" style="html=1;outlineConnect=0;whiteSpace=wrap;shape=mxgraph.archimate3.application;appType=actor;archiType=square;fillColor=#a1bf8d;fillColor=#9ef5af;fillColor=#c7ffd2;container=1;collapsible=0;;fillColor=#c7ffd2;attr=
[
{"name":"cn_name","value":null,"id":80,"controlType":0},{"name":"en_name","value":null,"id":81,"controlType":0}
]
;eleId=1;eaLevel=2;verticalAlign=top;" vertex="1" parent="1"
>
<
mxGeometry
x
=
"${getBoxX(index + 1)}"
y
=
"${getBoxY(
index + 1,
data,
)}"
width
=
"470"
height
=
"${getHeight(data)}"
as
=
"geometry"
/>
<
/mxCell>
`
for
(
let
index2
=
0
;
index2
<
data
[
index
].
children
.
length
;
index2
++
)
{
const
element2
=
data
[
index
].
children
[
index2
]
template
+=
`<mxCell id="iT7zhlySpOYr2a2o4UYg-
${
index
}
-
${
index2
}
" value="
${
element2
.
assetName
}
" style="
html
=
1
;
outlineConnect
=
0
;
whiteSpace
=
wrap
;
shape
=
mxgraph
.
archimate3
.
application
;
appType
=
actor
;
archiType
=
square
;
fillColor
=
#
a1bf8d
;
fillColor
=
#
9
ef5af
;
fillColor
=
#
c7ffd2
;;
fillColor
=
#
c7ffd2
;
attr
=
[];
container
=
0
;
movable
=
1
;
resizable
=
1
;
rotatable
=
1
;
deletable
=
1
;
editable
=
1
;
locked
=
0
;
connectable
=
1
;
" vertex="
1
" parent="
iT7zhlySpOYr2a2o4UYg
-
$
{
index
+
2
}
">
<mxGeometry x="
$
{
getItemX
(
index2
+
1
)}
" y="
${
getItemY
(
index2
+
1
,
)}
" width="135" height="40" as="geometry"/>
</mxCell>`
}
}
template
+=
`</root></mxGraphModel>`
return
template
}
// export const template = `
// <mxGraphModel dx="1393" dy="684" grid="1" gridSize="10" guides="1" tooltips="1" connect="1" arrows="1" fold="1" page="1" pageScale="1" pageWidth="827" pageHeight="1169" math="0" shadow="0">
// <root>
// <mxCell id="0"/>
// <mxCell id="1" parent="0"/>
// <mxCell id="iT7zhlySpOYr2a2o4UYg-2" value="<font style="font-size: 24px;">人力资源</font>" style="html=1;outlineConnect=0;whiteSpace=wrap;shape=mxgraph.archimate3.application;appType=actor;archiType=square;fillColor=#a1bf8d;fillColor=#9ef5af;fillColor=#c7ffd2;container=1;collapsible=0;;fillColor=#c7ffd2;attr=[{"name":"cn_name","value":null,"id":80,"controlType":0},{"name":"en_name","value":null,"id":81,"controlType":0}];eleId=1;eaLevel=2;verticalAlign=top;" vertex="1" parent="1">
// <mxGeometry x="50" y="50" width="470" height="200" as="geometry"/>
// </mxCell>
// <mxCell id="iT7zhlySpOYr2a2o4UYg-3" value="员工管理" style="html=1;outlineConnect=0;whiteSpace=wrap;shape=mxgraph.archimate3.application;appType=actor;archiType=square;fillColor=#a1bf8d;fillColor=#9ef5af;fillColor=#c7ffd2;;fillColor=#c7ffd2;attr=[];container=0;movable=1;resizable=1;rotatable=1;deletable=1;editable=1;locked=0;connectable=1;" vertex="1" parent="iT7zhlySpOYr2a2o4UYg-2">
// <mxGeometry x="167.25" y="50" width="135" height="40" as="geometry"/>
// </mxCell>
// <mxCell id="iT7zhlySpOYr2a2o4UYg-4" value="培训开发" style="html=1;outlineConnect=0;whiteSpace=wrap;shape=mxgraph.archimate3.application;appType=actor;archiType=square;fillColor=#a1bf8d;fillColor=#9ef5af;fillColor=#c7ffd2;;fillColor=#c7ffd2;attr=[];container=0;movable=1;resizable=1;rotatable=1;deletable=1;editable=1;locked=0;connectable=1;" vertex="1" parent="iT7zhlySpOYr2a2o4UYg-2">
// <mxGeometry x="318.75" y="50" width="135" height="40" as="geometry"/>
// </mxCell>
// <mxCell id="iT7zhlySpOYr2a2o4UYg-5" value="组织管理" style="html=1;outlineConnect=0;whiteSpace=wrap;shape=mxgraph.archimate3.application;appType=actor;archiType=square;fillColor=#a1bf8d;fillColor=#9ef5af;fillColor=#c7ffd2;;fillColor=#c7ffd2;attr=[];container=0;movable=1;resizable=1;rotatable=1;deletable=1;editable=1;locked=0;connectable=1;" vertex="1" parent="iT7zhlySpOYr2a2o4UYg-2">
// <mxGeometry x="16.25" y="50" width="135" height="40" as="geometry"/>
// </mxCell>
// <mxCell id="iT7zhlySpOYr2a2o4UYg-6" value="薪酬福利管理" style="html=1;outlineConnect=0;whiteSpace=wrap;shape=mxgraph.archimate3.application;appType=actor;archiType=square;fillColor=#a1bf8d;fillColor=#9ef5af;fillColor=#c7ffd2;;fillColor=#c7ffd2;attr=[];container=0;movable=1;resizable=1;rotatable=1;deletable=1;editable=1;locked=0;connectable=1;" vertex="1" parent="iT7zhlySpOYr2a2o4UYg-2">
// <mxGeometry x="16.25" y="100" width="135" height="40" as="geometry"/>
// </mxCell>
// <mxCell id="iT7zhlySpOYr2a2o4UYg-7" value="企业业务流程管理" style="html=1;outlineConnect=0;whiteSpace=wrap;shape=mxgraph.archimate3.application;appType=actor;archiType=square;fillColor=#a1bf8d;fillColor=#9ef5af;fillColor=#c7ffd2;;fillColor=#c7ffd2;attr=[];container=0;movable=1;resizable=1;rotatable=1;deletable=1;editable=1;locked=0;connectable=1;" vertex="1" parent="iT7zhlySpOYr2a2o4UYg-2">
// <mxGeometry x="16.25" y="150" width="135" height="40" as="geometry"/>
// </mxCell>
// <mxCell id="iT7zhlySpOYr2a2o4UYg-8" value="绩效管理" style="html=1;outlineConnect=0;whiteSpace=wrap;shape=mxgraph.archimate3.application;appType=actor;archiType=square;fillColor=#a1bf8d;fillColor=#9ef5af;fillColor=#c7ffd2;;fillColor=#c7ffd2;attr=[];container=0;movable=1;resizable=1;rotatable=1;deletable=1;editable=1;locked=0;connectable=1;" vertex="1" parent="iT7zhlySpOYr2a2o4UYg-2">
// <mxGeometry x="166.75" y="100" width="135" height="40" as="geometry"/>
// </mxCell>
// <mxCell id="iT7zhlySpOYr2a2o4UYg-9" value="干部管理" style="html=1;outlineConnect=0;whiteSpace=wrap;shape=mxgraph.archimate3.application;appType=actor;archiType=square;fillColor=#a1bf8d;fillColor=#9ef5af;fillColor=#c7ffd2;;fillColor=#c7ffd2;attr=[];container=0;movable=1;resizable=1;rotatable=1;deletable=1;editable=1;locked=0;connectable=1;" vertex="1" parent="iT7zhlySpOYr2a2o4UYg-2">
// <mxGeometry x="167.25" y="150" width="135" height="40" as="geometry"/>
// </mxCell>
// <mxCell id="iT7zhlySpOYr2a2o4UYg-10" value="人力资源统计分析" style="html=1;outlineConnect=0;whiteSpace=wrap;shape=mxgraph.archimate3.application;appType=actor;archiType=square;fillColor=#a1bf8d;fillColor=#9ef5af;fillColor=#c7ffd2;;fillColor=#c7ffd2;attr=[];container=0;movable=1;resizable=1;rotatable=1;deletable=1;editable=1;locked=0;connectable=1;" vertex="1" parent="iT7zhlySpOYr2a2o4UYg-2">
// <mxGeometry x="318.75" y="100" width="135" height="40" as="geometry"/>
// </mxCell>
// <mxCell id="iT7zhlySpOYr2a2o4UYg-11" value="人力资源规划计划" style="html=1;outlineConnect=0;whiteSpace=wrap;shape=mxgraph.archimate3.application;appType=actor;archiType=square;fillColor=#a1bf8d;fillColor=#9ef5af;fillColor=#c7ffd2;;fillColor=#c7ffd2;attr=[];container=0;movable=1;resizable=1;rotatable=1;deletable=1;editable=1;locked=0;connectable=1;" vertex="1" parent="iT7zhlySpOYr2a2o4UYg-2">
// <mxGeometry x="318.75" y="150" width="135" height="40" as="geometry"/>
// </mxCell>
// <mxCell id="iT7zhlySpOYr2a2o4UYg-12" value="<span style="font-size: 24px;">生产检修</span>" style="html=1;outlineConnect=0;whiteSpace=wrap;shape=mxgraph.archimate3.application;appType=actor;archiType=square;fillColor=#a1bf8d;fillColor=#9ef5af;fillColor=#c7ffd2;container=1;collapsible=0;;fillColor=#c7ffd2;attr=[{"name":"cn_name","value":null,"id":80,"controlType":0},{"name":"en_name","value":null,"id":81,"controlType":0}];eleId=1;eaLevel=2;verticalAlign=top;" vertex="1" parent="1">
// <mxGeometry x="540.5" y="50" width="470" height="200" as="geometry"/>
// </mxCell>
// <mxCell id="iT7zhlySpOYr2a2o4UYg-13" value="XXX" style="html=1;outlineConnect=0;whiteSpace=wrap;shape=mxgraph.archimate3.application;appType=actor;archiType=square;fillColor=#a1bf8d;fillColor=#9ef5af;fillColor=#c7ffd2;;fillColor=#c7ffd2;attr=[];container=0;movable=1;resizable=1;rotatable=1;deletable=1;editable=1;locked=0;connectable=1;" vertex="1" parent="iT7zhlySpOYr2a2o4UYg-12">
// <mxGeometry x="15.75" y="50" width="135" height="40" as="geometry"/>
// </mxCell>
// <mxCell id="iT7zhlySpOYr2a2o4UYg-14" value="XXX" style="html=1;outlineConnect=0;whiteSpace=wrap;shape=mxgraph.archimate3.application;appType=actor;archiType=square;fillColor=#a1bf8d;fillColor=#9ef5af;fillColor=#c7ffd2;;fillColor=#c7ffd2;attr=[];container=0;movable=1;resizable=1;rotatable=1;deletable=1;editable=1;locked=0;connectable=1;" vertex="1" parent="iT7zhlySpOYr2a2o4UYg-12">
// <mxGeometry x="166.75" y="50" width="135" height="40" as="geometry"/>
// </mxCell>
// <mxCell id="iT7zhlySpOYr2a2o4UYg-15" value="XXX" style="html=1;outlineConnect=0;whiteSpace=wrap;shape=mxgraph.archimate3.application;appType=actor;archiType=square;fillColor=#a1bf8d;fillColor=#9ef5af;fillColor=#c7ffd2;;fillColor=#c7ffd2;attr=[];container=0;movable=1;resizable=1;rotatable=1;deletable=1;editable=1;locked=0;connectable=1;" vertex="1" parent="iT7zhlySpOYr2a2o4UYg-12">
// <mxGeometry x="318.25" y="50" width="135" height="40" as="geometry"/>
// </mxCell>
// <mxCell id="iT7zhlySpOYr2a2o4UYg-16" value="XXX" style="html=1;outlineConnect=0;whiteSpace=wrap;shape=mxgraph.archimate3.application;appType=actor;archiType=square;fillColor=#a1bf8d;fillColor=#9ef5af;fillColor=#c7ffd2;;fillColor=#c7ffd2;attr=[];container=0;movable=1;resizable=1;rotatable=1;deletable=1;editable=1;locked=0;connectable=1;" vertex="1" parent="iT7zhlySpOYr2a2o4UYg-12">
// <mxGeometry x="15.75" y="100" width="135" height="40" as="geometry"/>
// </mxCell>
// <mxCell id="iT7zhlySpOYr2a2o4UYg-17" value="XXX" style="html=1;outlineConnect=0;whiteSpace=wrap;shape=mxgraph.archimate3.application;appType=actor;archiType=square;fillColor=#a1bf8d;fillColor=#9ef5af;fillColor=#c7ffd2;;fillColor=#c7ffd2;attr=[];container=0;movable=1;resizable=1;rotatable=1;deletable=1;editable=1;locked=0;connectable=1;" vertex="1" parent="iT7zhlySpOYr2a2o4UYg-12">
// <mxGeometry x="166.75" y="100" width="135" height="40" as="geometry"/>
// </mxCell>
// <mxCell id="iT7zhlySpOYr2a2o4UYg-18" value="XXX" style="html=1;outlineConnect=0;whiteSpace=wrap;shape=mxgraph.archimate3.application;appType=actor;archiType=square;fillColor=#a1bf8d;fillColor=#9ef5af;fillColor=#c7ffd2;;fillColor=#c7ffd2;attr=[];container=0;movable=1;resizable=1;rotatable=1;deletable=1;editable=1;locked=0;connectable=1;" vertex="1" parent="iT7zhlySpOYr2a2o4UYg-12">
// <mxGeometry x="318.25" y="100" width="135" height="40" as="geometry"/>
// </mxCell>
// <mxCell id="iT7zhlySpOYr2a2o4UYg-19" value="XXX" style="html=1;outlineConnect=0;whiteSpace=wrap;shape=mxgraph.archimate3.application;appType=actor;archiType=square;fillColor=#a1bf8d;fillColor=#9ef5af;fillColor=#c7ffd2;;fillColor=#c7ffd2;attr=[];container=0;movable=1;resizable=1;rotatable=1;deletable=1;editable=1;locked=0;connectable=1;" vertex="1" parent="iT7zhlySpOYr2a2o4UYg-12">
// <mxGeometry x="15.75" y="150" width="135" height="40" as="geometry"/>
// </mxCell>
// <mxCell id="iT7zhlySpOYr2a2o4UYg-20" value="XXX" style="html=1;outlineConnect=0;whiteSpace=wrap;shape=mxgraph.archimate3.application;appType=actor;archiType=square;fillColor=#a1bf8d;fillColor=#9ef5af;fillColor=#c7ffd2;;fillColor=#c7ffd2;attr=[];container=0;movable=1;resizable=1;rotatable=1;deletable=1;editable=1;locked=0;connectable=1;" vertex="1" parent="iT7zhlySpOYr2a2o4UYg-12">
// <mxGeometry x="166.75" y="150" width="135" height="40" as="geometry"/>
// </mxCell>
// <mxCell id="iT7zhlySpOYr2a2o4UYg-21" value="XXX" style="html=1;outlineConnect=0;whiteSpace=wrap;shape=mxgraph.archimate3.application;appType=actor;archiType=square;fillColor=#a1bf8d;fillColor=#9ef5af;fillColor=#c7ffd2;;fillColor=#c7ffd2;attr=[];container=0;movable=1;resizable=1;rotatable=1;deletable=1;editable=1;locked=0;connectable=1;" vertex="1" parent="iT7zhlySpOYr2a2o4UYg-12">
// <mxGeometry x="318.25" y="150" width="135" height="40" as="geometry"/>
// </mxCell>
// <mxCell id="iT7zhlySpOYr2a2o4UYg-22" value="<span style="font-size: 24px;">电网建设</span>" style="html=1;outlineConnect=0;whiteSpace=wrap;shape=mxgraph.archimate3.application;appType=actor;archiType=square;fillColor=#a1bf8d;fillColor=#9ef5af;fillColor=#c7ffd2;container=1;collapsible=0;;fillColor=#c7ffd2;attr=[{"name":"cn_name","value":null,"id":80,"controlType":0},{"name":"en_name","value":null,"id":81,"controlType":0}];eleId=1;eaLevel=2;verticalAlign=top;" vertex="1" parent="1">
// <mxGeometry x="540.5" y="276" width="470" height="200" as="geometry"/>
// </mxCell>
// <mxCell id="iT7zhlySpOYr2a2o4UYg-23" value="XXX" style="html=1;outlineConnect=0;whiteSpace=wrap;shape=mxgraph.archimate3.application;appType=actor;archiType=square;fillColor=#a1bf8d;fillColor=#9ef5af;fillColor=#c7ffd2;;fillColor=#c7ffd2;attr=[];container=0;movable=1;resizable=1;rotatable=1;deletable=1;editable=1;locked=0;connectable=1;" vertex="1" parent="iT7zhlySpOYr2a2o4UYg-22">
// <mxGeometry x="15.75" y="50" width="135" height="40" as="geometry"/>
// </mxCell>
// <mxCell id="iT7zhlySpOYr2a2o4UYg-24" value="XXX" style="html=1;outlineConnect=0;whiteSpace=wrap;shape=mxgraph.archimate3.application;appType=actor;archiType=square;fillColor=#a1bf8d;fillColor=#9ef5af;fillColor=#c7ffd2;;fillColor=#c7ffd2;attr=[];container=0;movable=1;resizable=1;rotatable=1;deletable=1;editable=1;locked=0;connectable=1;" vertex="1" parent="iT7zhlySpOYr2a2o4UYg-22">
// <mxGeometry x="166.75" y="50" width="135" height="40" as="geometry"/>
// </mxCell>
// <mxCell id="iT7zhlySpOYr2a2o4UYg-25" value="XXX" style="html=1;outlineConnect=0;whiteSpace=wrap;shape=mxgraph.archimate3.application;appType=actor;archiType=square;fillColor=#a1bf8d;fillColor=#9ef5af;fillColor=#c7ffd2;;fillColor=#c7ffd2;attr=[];container=0;movable=1;resizable=1;rotatable=1;deletable=1;editable=1;locked=0;connectable=1;" vertex="1" parent="iT7zhlySpOYr2a2o4UYg-22">
// <mxGeometry x="318.25" y="50" width="135" height="40" as="geometry"/>
// </mxCell>
// <mxCell id="iT7zhlySpOYr2a2o4UYg-26" value="XXX" style="html=1;outlineConnect=0;whiteSpace=wrap;shape=mxgraph.archimate3.application;appType=actor;archiType=square;fillColor=#a1bf8d;fillColor=#9ef5af;fillColor=#c7ffd2;;fillColor=#c7ffd2;attr=[];container=0;movable=1;resizable=1;rotatable=1;deletable=1;editable=1;locked=0;connectable=1;" vertex="1" parent="iT7zhlySpOYr2a2o4UYg-22">
// <mxGeometry x="15.75" y="100" width="135" height="40" as="geometry"/>
// </mxCell>
// <mxCell id="iT7zhlySpOYr2a2o4UYg-27" value="XXX" style="html=1;outlineConnect=0;whiteSpace=wrap;shape=mxgraph.archimate3.application;appType=actor;archiType=square;fillColor=#a1bf8d;fillColor=#9ef5af;fillColor=#c7ffd2;;fillColor=#c7ffd2;attr=[];container=0;movable=1;resizable=1;rotatable=1;deletable=1;editable=1;locked=0;connectable=1;" vertex="1" parent="iT7zhlySpOYr2a2o4UYg-22">
// <mxGeometry x="166.75" y="100" width="135" height="40" as="geometry"/>
// </mxCell>
// <mxCell id="iT7zhlySpOYr2a2o4UYg-28" value="XXX" style="html=1;outlineConnect=0;whiteSpace=wrap;shape=mxgraph.archimate3.application;appType=actor;archiType=square;fillColor=#a1bf8d;fillColor=#9ef5af;fillColor=#c7ffd2;;fillColor=#c7ffd2;attr=[];container=0;movable=1;resizable=1;rotatable=1;deletable=1;editable=1;locked=0;connectable=1;" vertex="1" parent="iT7zhlySpOYr2a2o4UYg-22">
// <mxGeometry x="318.25" y="100" width="135" height="40" as="geometry"/>
// </mxCell>
// <mxCell id="iT7zhlySpOYr2a2o4UYg-29" value="XXX" style="html=1;outlineConnect=0;whiteSpace=wrap;shape=mxgraph.archimate3.application;appType=actor;archiType=square;fillColor=#a1bf8d;fillColor=#9ef5af;fillColor=#c7ffd2;;fillColor=#c7ffd2;attr=[];container=0;movable=1;resizable=1;rotatable=1;deletable=1;editable=1;locked=0;connectable=1;" vertex="1" parent="iT7zhlySpOYr2a2o4UYg-22">
// <mxGeometry x="15.75" y="150" width="135" height="40" as="geometry"/>
// </mxCell>
// <mxCell id="iT7zhlySpOYr2a2o4UYg-30" value="XXX" style="html=1;outlineConnect=0;whiteSpace=wrap;shape=mxgraph.archimate3.application;appType=actor;archiType=square;fillColor=#a1bf8d;fillColor=#9ef5af;fillColor=#c7ffd2;;fillColor=#c7ffd2;attr=[];container=0;movable=1;resizable=1;rotatable=1;deletable=1;editable=1;locked=0;connectable=1;" vertex="1" parent="iT7zhlySpOYr2a2o4UYg-22">
// <mxGeometry x="166.75" y="150" width="135" height="40" as="geometry"/>
// </mxCell>
// <mxCell id="iT7zhlySpOYr2a2o4UYg-31" value="XXX" style="html=1;outlineConnect=0;whiteSpace=wrap;shape=mxgraph.archimate3.application;appType=actor;archiType=square;fillColor=#a1bf8d;fillColor=#9ef5af;fillColor=#c7ffd2;;fillColor=#c7ffd2;attr=[];container=0;movable=1;resizable=1;rotatable=1;deletable=1;editable=1;locked=0;connectable=1;" vertex="1" parent="iT7zhlySpOYr2a2o4UYg-22">
// <mxGeometry x="318.25" y="150" width="135" height="40" as="geometry"/>
// </mxCell>
// <mxCell id="iT7zhlySpOYr2a2o4UYg-32" value="<span style="font-size: 24px;">规划计划</span>" style="html=1;outlineConnect=0;whiteSpace=wrap;shape=mxgraph.archimate3.application;appType=actor;archiType=square;fillColor=#a1bf8d;fillColor=#9ef5af;fillColor=#c7ffd2;container=1;collapsible=0;;fillColor=#c7ffd2;attr=[{"name":"cn_name","value":null,"id":80,"controlType":0},{"name":"en_name","value":null,"id":81,"controlType":0}];eleId=1;eaLevel=2;verticalAlign=top;" vertex="1" parent="1">
// <mxGeometry x="50" y="276" width="470" height="200" as="geometry"/>
// </mxCell>
// <mxCell id="iT7zhlySpOYr2a2o4UYg-33" value="XXX" style="html=1;outlineConnect=0;whiteSpace=wrap;shape=mxgraph.archimate3.application;appType=actor;archiType=square;fillColor=#a1bf8d;fillColor=#9ef5af;fillColor=#c7ffd2;;fillColor=#c7ffd2;attr=[];container=0;movable=1;resizable=1;rotatable=1;deletable=1;editable=1;locked=0;connectable=1;" vertex="1" parent="iT7zhlySpOYr2a2o4UYg-32">
// <mxGeometry x="15.75" y="50" width="135" height="40" as="geometry"/>
// </mxCell>
// <mxCell id="iT7zhlySpOYr2a2o4UYg-34" value="XXX" style="html=1;outlineConnect=0;whiteSpace=wrap;shape=mxgraph.archimate3.application;appType=actor;archiType=square;fillColor=#a1bf8d;fillColor=#9ef5af;fillColor=#c7ffd2;;fillColor=#c7ffd2;attr=[];container=0;movable=1;resizable=1;rotatable=1;deletable=1;editable=1;locked=0;connectable=1;" vertex="1" parent="iT7zhlySpOYr2a2o4UYg-32">
// <mxGeometry x="166.75" y="50" width="135" height="40" as="geometry"/>
// </mxCell>
// <mxCell id="iT7zhlySpOYr2a2o4UYg-35" value="XXX" style="html=1;outlineConnect=0;whiteSpace=wrap;shape=mxgraph.archimate3.application;appType=actor;archiType=square;fillColor=#a1bf8d;fillColor=#9ef5af;fillColor=#c7ffd2;;fillColor=#c7ffd2;attr=[];container=0;movable=1;resizable=1;rotatable=1;deletable=1;editable=1;locked=0;connectable=1;" vertex="1" parent="iT7zhlySpOYr2a2o4UYg-32">
// <mxGeometry x="318.25" y="50" width="135" height="40" as="geometry"/>
// </mxCell>
// <mxCell id="iT7zhlySpOYr2a2o4UYg-36" value="XXX" style="html=1;outlineConnect=0;whiteSpace=wrap;shape=mxgraph.archimate3.application;appType=actor;archiType=square;fillColor=#a1bf8d;fillColor=#9ef5af;fillColor=#c7ffd2;;fillColor=#c7ffd2;attr=[];container=0;movable=1;resizable=1;rotatable=1;deletable=1;editable=1;locked=0;connectable=1;" vertex="1" parent="iT7zhlySpOYr2a2o4UYg-32">
// <mxGeometry x="15.75" y="100" width="135" height="40" as="geometry"/>
// </mxCell>
// <mxCell id="iT7zhlySpOYr2a2o4UYg-37" value="XXX" style="html=1;outlineConnect=0;whiteSpace=wrap;shape=mxgraph.archimate3.application;appType=actor;archiType=square;fillColor=#a1bf8d;fillColor=#9ef5af;fillColor=#c7ffd2;;fillColor=#c7ffd2;attr=[];container=0;movable=1;resizable=1;rotatable=1;deletable=1;editable=1;locked=0;connectable=1;" vertex="1" parent="iT7zhlySpOYr2a2o4UYg-32">
// <mxGeometry x="166.75" y="100" width="135" height="40" as="geometry"/>
// </mxCell>
// <mxCell id="iT7zhlySpOYr2a2o4UYg-38" value="XXX" style="html=1;outlineConnect=0;whiteSpace=wrap;shape=mxgraph.archimate3.application;appType=actor;archiType=square;fillColor=#a1bf8d;fillColor=#9ef5af;fillColor=#c7ffd2;;fillColor=#c7ffd2;attr=[];container=0;movable=1;resizable=1;rotatable=1;deletable=1;editable=1;locked=0;connectable=1;" vertex="1" parent="iT7zhlySpOYr2a2o4UYg-32">
// <mxGeometry x="318.25" y="100" width="135" height="40" as="geometry"/>
// </mxCell>
// <mxCell id="iT7zhlySpOYr2a2o4UYg-39" value="XXX" style="html=1;outlineConnect=0;whiteSpace=wrap;shape=mxgraph.archimate3.application;appType=actor;archiType=square;fillColor=#a1bf8d;fillColor=#9ef5af;fillColor=#c7ffd2;;fillColor=#c7ffd2;attr=[];container=0;movable=1;resizable=1;rotatable=1;deletable=1;editable=1;locked=0;connectable=1;" vertex="1" parent="iT7zhlySpOYr2a2o4UYg-32">
// <mxGeometry x="15.75" y="150" width="135" height="40" as="geometry"/>
// </mxCell>
// <mxCell id="iT7zhlySpOYr2a2o4UYg-40" value="XXX" style="html=1;outlineConnect=0;whiteSpace=wrap;shape=mxgraph.archimate3.application;appType=actor;archiType=square;fillColor=#a1bf8d;fillColor=#9ef5af;fillColor=#c7ffd2;;fillColor=#c7ffd2;attr=[];container=0;movable=1;resizable=1;rotatable=1;deletable=1;editable=1;locked=0;connectable=1;" vertex="1" parent="iT7zhlySpOYr2a2o4UYg-32">
// <mxGeometry x="166.75" y="150" width="135" height="40" as="geometry"/>
// </mxCell>
// <mxCell id="iT7zhlySpOYr2a2o4UYg-41" value="XXX" style="html=1;outlineConnect=0;whiteSpace=wrap;shape=mxgraph.archimate3.application;appType=actor;archiType=square;fillColor=#a1bf8d;fillColor=#9ef5af;fillColor=#c7ffd2;;fillColor=#c7ffd2;attr=[];container=0;movable=1;resizable=1;rotatable=1;deletable=1;editable=1;locked=0;connectable=1;" vertex="1" parent="iT7zhlySpOYr2a2o4UYg-32">
// <mxGeometry x="318.25" y="150" width="135" height="40" as="geometry"/>
// </mxCell>
// </root>
// </mxGraphModel>
// `
Write
Preview
Markdown
is supported
Attach a file
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 post a comment