Commit 5ef96d0f by 史敦盼

中台修改

1 parent f26a533c
......@@ -374,6 +374,52 @@ export default {
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: '关联的业务对象数量',
......@@ -482,6 +528,9 @@ export default {
minWidth: 120,
showOverflowTooltip: true,
align: "center",
render: (h, params) => {
return h("span", {}, this.handleName(params.parentAssetNames, 1) || '--');
},
},
{
label: "系统应用",
......@@ -489,6 +538,9 @@ export default {
minWidth: 120,
showOverflowTooltip: true,
align: "center",
render: (h, params) => {
return h("span", {}, this.handleName(params.parentAssetNames, 2) || '--');
},
},
],
getList() {
......
......@@ -289,6 +289,8 @@ export default {
prop: "suppportBusActNum",
minWidth: 120,
align: "center",
T: 'a',
style: { color: '#0b8680', cursor: 'pointer' },
click: (row) => {
this.$emit('dialog', '支撑的业务活动', row)
},
......@@ -491,6 +493,7 @@ export default {
comCenterServeQryAll().then(res => {
if(res.code === 200) {
this.treeData = res.data
this.getQryAssetsPage()
}
})
} else {
......@@ -588,11 +591,12 @@ export default {
const assetsDTOS = this.dialogData.map(v => {
return {
inventoryId: v.inventoryId || inventoryId,
abilityCode: v.abilityCode || abilityCode,
abilityName: v.abilityName || abilityName,
assetId: v.assetId || '',
assetName: v.assetName,
inventoryId,
abilityCode,
abilityName,
assetId: v.assetId || v.inventoryId,
assetName: v.assetName || v.abilityName,
assetCode: v.assetCode || v.abilityCode,
archiType: this.getArchiType(this.operationArchiType),
archiTypeId: this.operationArchiType,
eleName: v.eleName || '',
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!