Commit 5ef96d0f by 史敦盼

中台修改

1 parent f26a533c
...@@ -374,6 +374,52 @@ export default { ...@@ -374,6 +374,52 @@ export default {
that.getQryStatDetPage('REL_MID_SERVICE_NUM', 6, 6) that.getQryStatDetPage('REL_MID_SERVICE_NUM', 6, 6)
}, },
}, },
{
title: '支撑的业务活动',
subTitle: '检修计划编制服务',
columns: [
{
label: "业务域",
prop: "业务域",
showOverflowTooltip: true,
align: "center",
fixed: "left",
minWidth: 140
},
{
label: "业务对象名称",
prop: "业务对象名称",
minWidth: 140,
showOverflowTooltip: true,
align: "center",
},
{
label: "业务对象编码",
prop: "业务对象编码",
minWidth: 120,
showOverflowTooltip: true,
align: "center",
},
{
label: "业务流程名称",
prop: "业务流程名称",
minWidth: 120,
showOverflowTooltip: true,
align: "center",
},
{
label: "业务职能",
prop: "业务职能",
minWidth: 120,
showOverflowTooltip: true,
align: "center",
},
],
tableBtnList: [],
getList() {
that.getQryStatDetPage('SUPPPORT_BUS_ACTNUM', 1, '业务架构')
},
},
// 业务信息 // 业务信息
{ {
title: '关联的业务对象数量', title: '关联的业务对象数量',
...@@ -482,6 +528,9 @@ export default { ...@@ -482,6 +528,9 @@ export default {
minWidth: 120, minWidth: 120,
showOverflowTooltip: true, showOverflowTooltip: true,
align: "center", align: "center",
render: (h, params) => {
return h("span", {}, this.handleName(params.parentAssetNames, 1) || '--');
},
}, },
{ {
label: "系统应用", label: "系统应用",
...@@ -489,6 +538,9 @@ export default { ...@@ -489,6 +538,9 @@ export default {
minWidth: 120, minWidth: 120,
showOverflowTooltip: true, showOverflowTooltip: true,
align: "center", align: "center",
render: (h, params) => {
return h("span", {}, this.handleName(params.parentAssetNames, 2) || '--');
},
}, },
], ],
getList() { getList() {
......
...@@ -289,6 +289,8 @@ export default { ...@@ -289,6 +289,8 @@ export default {
prop: "suppportBusActNum", prop: "suppportBusActNum",
minWidth: 120, minWidth: 120,
align: "center", align: "center",
T: 'a',
style: { color: '#0b8680', cursor: 'pointer' },
click: (row) => { click: (row) => {
this.$emit('dialog', '支撑的业务活动', row) this.$emit('dialog', '支撑的业务活动', row)
}, },
...@@ -491,6 +493,7 @@ export default { ...@@ -491,6 +493,7 @@ export default {
comCenterServeQryAll().then(res => { comCenterServeQryAll().then(res => {
if(res.code === 200) { if(res.code === 200) {
this.treeData = res.data this.treeData = res.data
this.getQryAssetsPage()
} }
}) })
} else { } else {
...@@ -588,11 +591,12 @@ export default { ...@@ -588,11 +591,12 @@ export default {
const assetsDTOS = this.dialogData.map(v => { const assetsDTOS = this.dialogData.map(v => {
return { return {
inventoryId: v.inventoryId || inventoryId, inventoryId,
abilityCode: v.abilityCode || abilityCode, abilityCode,
abilityName: v.abilityName || abilityName, abilityName,
assetId: v.assetId || '', assetId: v.assetId || v.inventoryId,
assetName: v.assetName, assetName: v.assetName || v.abilityName,
assetCode: v.assetCode || v.abilityCode,
archiType: this.getArchiType(this.operationArchiType), archiType: this.getArchiType(this.operationArchiType),
archiTypeId: this.operationArchiType, archiTypeId: this.operationArchiType,
eleName: v.eleName || '', eleName: v.eleName || '',
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!