2019-11-29 15:00:26 +08:00
|
|
|
|
<template>
|
2019-12-10 17:00:28 +08:00
|
|
|
|
<div class="project">
|
2022-01-11 10:19:26 +08:00
|
|
|
|
<topologyL5 v-if="reloadFacade" ref="facade" :obj="currentProject" :topologyIndexF="topologyIndexF" targetTab.sync="panel" @changeTopologyIndexF="changeTopologyIndexF"/>
|
2020-08-04 21:53:06 +08:00
|
|
|
|
|
2020-08-02 22:43:53 +08:00
|
|
|
|
<transition name="el-zoom-in-bottom">
|
2020-09-25 15:33:02 +08:00
|
|
|
|
<bottom-box v-if="bottomBox.showSubList"
|
|
|
|
|
|
:sub-resize-show="bottomBox.subResizeShow"
|
|
|
|
|
|
:is-full-screen="bottomBox.isFullScreen"
|
2020-12-08 21:53:37 +08:00
|
|
|
|
:from="$CONSTANTS.fromRoute.endpoint"
|
2020-09-25 15:33:02 +08:00
|
|
|
|
:target-tab.sync="bottomBox.targetTab"
|
|
|
|
|
|
:detail="bottomBox.endpointDetail"
|
|
|
|
|
|
:obj="endpoint"
|
|
|
|
|
|
:detail-list="bottomBox.alertList"
|
|
|
|
|
|
:asset-detail="bottomBox.assetDetail"
|
|
|
|
|
|
@closeSubList="bottomBox.showSubList = false"
|
|
|
|
|
|
@fullScreen="fullScreen"
|
|
|
|
|
|
@exitFullScreen="exitFullScreen"
|
2020-11-10 14:11:29 +08:00
|
|
|
|
@listResize="listResize"></bottom-box>
|
2020-08-02 22:43:53 +08:00
|
|
|
|
</transition>
|
2020-07-28 19:42:25 +08:00
|
|
|
|
<transition name="right-box">
|
2020-11-10 14:11:29 +08:00
|
|
|
|
<add-endpoint-box v-if="rightBox.addEndpoint.show" :current-project="currentProject"
|
|
|
|
|
|
:current-module="currentModule" @close="closeAddEndpointRightBox"
|
|
|
|
|
|
ref="addEndpointBox"></add-endpoint-box>
|
2020-07-28 19:42:25 +08:00
|
|
|
|
</transition>
|
|
|
|
|
|
<transition name="right-box">
|
2020-11-10 14:11:29 +08:00
|
|
|
|
<edit-endpoint-box v-if="rightBox.editEndpoint.show" :project="currentProject" :module="currentModule"
|
|
|
|
|
|
:endpoint="endpoint" @close="closeEditEndpointRightBox"
|
|
|
|
|
|
ref="editEndpointBox"></edit-endpoint-box>
|
2020-07-28 19:42:25 +08:00
|
|
|
|
</transition>
|
2019-12-10 17:00:28 +08:00
|
|
|
|
</div>
|
2019-11-29 15:00:26 +08:00
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
|
|
<script>
|
2021-04-13 10:03:49 +08:00
|
|
|
|
import bus from '@/libs/bus'
|
2021-03-19 18:52:19 +08:00
|
|
|
|
import topologyL5 from '@/components/common/project/topologyL5'
|
2020-11-10 14:11:29 +08:00
|
|
|
|
|
2021-03-19 18:52:19 +08:00
|
|
|
|
export default {
|
|
|
|
|
|
name: 'project2',
|
|
|
|
|
|
components: {
|
2021-04-27 17:38:58 +08:00
|
|
|
|
topologyL5
|
2021-03-19 18:52:19 +08:00
|
|
|
|
},
|
|
|
|
|
|
data () {
|
|
|
|
|
|
return {
|
|
|
|
|
|
rightBox: {
|
|
|
|
|
|
module: { show: false },
|
|
|
|
|
|
addEndpoint: { show: false },
|
|
|
|
|
|
editEndpoint: { show: false }
|
|
|
|
|
|
},
|
|
|
|
|
|
/* 二级页面相关 */
|
|
|
|
|
|
bottomBox: {
|
|
|
|
|
|
endpoint: {}, // asset详情
|
|
|
|
|
|
endpointDetail: null,
|
|
|
|
|
|
mainResizeShow: true, // dom高度改变时部分内容是否展示
|
|
|
|
|
|
subResizeShow: true,
|
|
|
|
|
|
isFullScreen: false, // 是否是全屏,用来控制拖动条是否展示,
|
|
|
|
|
|
showSubList: false,
|
|
|
|
|
|
targetTab: ''
|
|
|
|
|
|
},
|
2020-07-28 19:42:25 +08:00
|
|
|
|
|
2021-03-19 18:52:19 +08:00
|
|
|
|
mainTableHeight: this.$tableHeight.normal, // 主列表table高度
|
|
|
|
|
|
ready: false,
|
2020-07-24 19:22:52 +08:00
|
|
|
|
|
2021-03-19 18:52:19 +08:00
|
|
|
|
/* 工具参数 */
|
|
|
|
|
|
tools: {
|
|
|
|
|
|
loading: false, // 是否显示table加载动画
|
|
|
|
|
|
toTopBtnTop: this.$tableHeight.toTopBtnTop, // to-top按钮的top属性
|
|
|
|
|
|
tableHover: false, // 控制滚动条和top按钮同时出现
|
|
|
|
|
|
showTopBtn: false, // 显示To top按钮
|
|
|
|
|
|
showCustomTableTitle: false, // 自定义列弹框是否显示
|
|
|
|
|
|
customTableTitle: [] // 自定义列工具的数据
|
|
|
|
|
|
},
|
|
|
|
|
|
batchDeleteObjs: [],
|
2020-07-28 19:42:25 +08:00
|
|
|
|
|
2021-03-19 18:52:19 +08:00
|
|
|
|
tableId: 'projectTable', // 需要分页的table的id,用于记录每页数量
|
|
|
|
|
|
userData: [],
|
2020-07-24 19:22:52 +08:00
|
|
|
|
|
2021-03-19 18:52:19 +08:00
|
|
|
|
endpoint: {
|
|
|
|
|
|
id: '',
|
|
|
|
|
|
host: '',
|
|
|
|
|
|
port: '',
|
|
|
|
|
|
param: '',
|
|
|
|
|
|
path: '',
|
|
|
|
|
|
asset: {},
|
|
|
|
|
|
project: {},
|
|
|
|
|
|
module: {},
|
|
|
|
|
|
moduleId: '',
|
|
|
|
|
|
assetId: '',
|
|
|
|
|
|
paramObj: []
|
|
|
|
|
|
},
|
|
|
|
|
|
tableTitle: [
|
|
|
|
|
|
{
|
|
|
|
|
|
label: this.$t('project.endpoint.endpointId'),
|
|
|
|
|
|
prop: 'id',
|
|
|
|
|
|
show: true,
|
|
|
|
|
|
width: 150
|
|
|
|
|
|
}, {
|
2022-06-21 11:29:55 +08:00
|
|
|
|
label: this.$t('asset.asset'),
|
2021-03-19 18:52:19 +08:00
|
|
|
|
prop: 'asset',
|
|
|
|
|
|
show: true,
|
|
|
|
|
|
minWidth: 400
|
|
|
|
|
|
}, {
|
2022-06-21 18:14:21 +08:00
|
|
|
|
label: this.$t('asset.host'),
|
2021-03-19 18:52:19 +08:00
|
|
|
|
prop: 'host',
|
|
|
|
|
|
show: true,
|
|
|
|
|
|
width: 200
|
|
|
|
|
|
}, {
|
2022-06-16 15:58:17 +08:00
|
|
|
|
label: this.$t('asset.port'),
|
2021-03-19 18:52:19 +08:00
|
|
|
|
prop: 'port',
|
|
|
|
|
|
show: true,
|
|
|
|
|
|
width: 100
|
|
|
|
|
|
}, {
|
|
|
|
|
|
label: this.$t('overall.type'),
|
|
|
|
|
|
prop: 'type',
|
|
|
|
|
|
show: false,
|
|
|
|
|
|
width: 200
|
|
|
|
|
|
}, {
|
2022-06-16 15:58:17 +08:00
|
|
|
|
label: this.$t('alert.list.labels'),
|
2021-03-19 18:52:19 +08:00
|
|
|
|
prop: 'labels',
|
|
|
|
|
|
show: true,
|
|
|
|
|
|
width: 200
|
|
|
|
|
|
}, {
|
2022-06-21 18:14:21 +08:00
|
|
|
|
label: this.$t('config.assetLabel.params'),
|
2021-03-19 18:52:19 +08:00
|
|
|
|
prop: 'param',
|
|
|
|
|
|
show: true,
|
|
|
|
|
|
width: 200
|
|
|
|
|
|
}, {
|
2022-06-16 15:58:17 +08:00
|
|
|
|
label: this.$t('config.terminallog.path'),
|
2021-03-19 18:52:19 +08:00
|
|
|
|
prop: 'path',
|
|
|
|
|
|
show: true,
|
|
|
|
|
|
width: 200
|
|
|
|
|
|
}, {
|
2022-06-16 15:58:17 +08:00
|
|
|
|
label: this.$t('overall.state'),
|
2021-03-19 18:52:19 +08:00
|
|
|
|
prop: 'state',
|
|
|
|
|
|
show: true,
|
|
|
|
|
|
width: 80
|
|
|
|
|
|
}, {
|
2022-06-16 15:58:17 +08:00
|
|
|
|
label: this.$t('overall.alert'),
|
2021-03-19 18:52:19 +08:00
|
|
|
|
prop: 'alerts',
|
|
|
|
|
|
show: true,
|
2022-03-28 10:42:31 +08:00
|
|
|
|
width: 180
|
2019-12-10 17:00:28 +08:00
|
|
|
|
},
|
2021-03-19 18:52:19 +08:00
|
|
|
|
// {
|
|
|
|
|
|
// label: this.$t("project.endpoint.lastUpdate"),
|
|
|
|
|
|
// prop: 'lastUpdate',
|
|
|
|
|
|
// show: true,
|
|
|
|
|
|
// },
|
|
|
|
|
|
{
|
|
|
|
|
|
label: this.$t('config.account.option'),
|
|
|
|
|
|
prop: 'option',
|
|
|
|
|
|
show: true,
|
|
|
|
|
|
width: 120
|
|
|
|
|
|
}
|
|
|
|
|
|
],
|
|
|
|
|
|
endpointTableData: [],
|
|
|
|
|
|
endpointPageObj: {
|
|
|
|
|
|
pageNo: 1,
|
|
|
|
|
|
pageSize: this.$CONSTANTS.defaultPageSize,
|
|
|
|
|
|
total: 0
|
|
|
|
|
|
},
|
2020-07-24 19:22:52 +08:00
|
|
|
|
|
2021-03-19 18:52:19 +08:00
|
|
|
|
currentProjectTitle: '',
|
|
|
|
|
|
moduleList: [],
|
|
|
|
|
|
projectList: [],
|
|
|
|
|
|
pageType: 'project', // project endpoint
|
|
|
|
|
|
currentProject: { id: '', name: '', remark: '' }, // endpoint弹框、module列表用来回显project
|
|
|
|
|
|
module: {}, // 编辑的module
|
|
|
|
|
|
blankModule: { id: '', type: '', name: '', project: {}, port: '', path: '', param: '', paramObj: [], snmpParam: '' }, // 空白module
|
|
|
|
|
|
currentModule: { id: '', type: '', name: '', project: {}, port: '', path: '', param: '', paramObj: [], snmpParam: '' }, // 用来回显的module
|
|
|
|
|
|
endpointSearchLabel: { moduleId: '' }, // endpoint搜索参数
|
|
|
|
|
|
endpointSearchMsg: { // 给搜索框子组件传递的信息
|
|
|
|
|
|
zheze_none: true,
|
|
|
|
|
|
searchLabelList: [{
|
|
|
|
|
|
id: 1,
|
|
|
|
|
|
name: 'ID',
|
|
|
|
|
|
type: 'input',
|
|
|
|
|
|
label: 'id',
|
|
|
|
|
|
disabled: false
|
|
|
|
|
|
}, {
|
|
|
|
|
|
id: 11,
|
|
|
|
|
|
name: this.$t('asset.asset'),
|
|
|
|
|
|
// name: this.$t('asset.asset'),
|
|
|
|
|
|
type: 'query',
|
|
|
|
|
|
label: 'query',
|
|
|
|
|
|
disabled: false
|
|
|
|
|
|
}, {
|
|
|
|
|
|
id: 33,
|
2022-06-16 15:58:17 +08:00
|
|
|
|
name: this.$t('overall.state'),
|
2021-03-19 18:52:19 +08:00
|
|
|
|
// name: this.$t('asset.asset'),
|
|
|
|
|
|
type: 'select',
|
|
|
|
|
|
label: 'endpointState',
|
|
|
|
|
|
disabled: false,
|
|
|
|
|
|
readonly: true
|
|
|
|
|
|
}]
|
|
|
|
|
|
},
|
|
|
|
|
|
scrollbarWrap: null,
|
|
|
|
|
|
delFlag: false,
|
|
|
|
|
|
topologyIndexF: 0
|
|
|
|
|
|
}
|
|
|
|
|
|
},
|
|
|
|
|
|
methods: {
|
|
|
|
|
|
// 全屏
|
|
|
|
|
|
fullScreen () {
|
|
|
|
|
|
const vm = this
|
|
|
|
|
|
this.$bottomBoxWindow.fullScreen(vm)
|
2019-12-11 17:15:23 +08:00
|
|
|
|
},
|
2021-03-19 18:52:19 +08:00
|
|
|
|
// 退出全屏
|
|
|
|
|
|
exitFullScreen () {
|
|
|
|
|
|
const vm = this
|
|
|
|
|
|
this.$bottomBoxWindow.exitFullScreen(vm)
|
|
|
|
|
|
},
|
|
|
|
|
|
// 鼠标拖动二级列表
|
|
|
|
|
|
listResize (e) {
|
|
|
|
|
|
const vm = this
|
|
|
|
|
|
this.$bottomBoxWindow.listResize(vm, e)
|
|
|
|
|
|
},
|
|
|
|
|
|
getEndpointTableData () {
|
|
|
|
|
|
if (this.currentModule && this.currentModule.id) {
|
|
|
|
|
|
this.pageType = 'endpoint'
|
|
|
|
|
|
this.endpointSearchLabel.moduleId = this.currentModule.id
|
|
|
|
|
|
this.$set(this.endpointSearchLabel, 'pageNo', this.endpointPageObj.pageNo)
|
|
|
|
|
|
this.$set(this.endpointSearchLabel, 'pageSize', this.endpointPageObj.pageSize)
|
|
|
|
|
|
this.tools.loading = true
|
|
|
|
|
|
this.$get('endpoint', this.endpointSearchLabel).then(response => {
|
|
|
|
|
|
this.tools.loading = false
|
|
|
|
|
|
if (response.code === 200) {
|
|
|
|
|
|
for (let i = 0; i < response.data.list.length; i++) {
|
|
|
|
|
|
try {
|
|
|
|
|
|
const param = response.data.list[i].param || '{}'
|
|
|
|
|
|
const tempObj = JSON.parse(param)
|
|
|
|
|
|
const labels = response.data.list[i].labels || '{}'
|
|
|
|
|
|
const tempObj1 = JSON.parse(labels)
|
|
|
|
|
|
response.data.list[i].paramObj = []
|
|
|
|
|
|
response.data.list[i].labelModule = []
|
|
|
|
|
|
for (const k in tempObj) {
|
|
|
|
|
|
response.data.list[i].paramObj.push({ key: k, value: tempObj[k] })
|
2019-12-25 20:33:58 +08:00
|
|
|
|
}
|
2021-03-19 18:52:19 +08:00
|
|
|
|
for (const k in tempObj1) {
|
|
|
|
|
|
response.data.list[i].labelModule.push({ key: k, value: tempObj1[k] })
|
|
|
|
|
|
}
|
|
|
|
|
|
} catch (err) {
|
|
|
|
|
|
// console.error(response.data.list[i], err);
|
2020-12-14 20:25:24 +08:00
|
|
|
|
}
|
2019-12-11 17:15:23 +08:00
|
|
|
|
}
|
2021-03-19 18:52:19 +08:00
|
|
|
|
this.endpointTableData = response.data.list
|
|
|
|
|
|
this.endpointPageObj.total = response.data.total
|
|
|
|
|
|
if (!this.scrollbarWrap) {
|
|
|
|
|
|
this.$nextTick(() => {
|
|
|
|
|
|
this.scrollbarWrap = this.$refs.endpointTable.bodyWrapper
|
|
|
|
|
|
this.toTopBtnHandler(this.scrollbarWrap)
|
|
|
|
|
|
})
|
|
|
|
|
|
}
|
2020-04-16 19:25:29 +08:00
|
|
|
|
}
|
|
|
|
|
|
})
|
2021-03-19 18:52:19 +08:00
|
|
|
|
}
|
|
|
|
|
|
},
|
|
|
|
|
|
afterCloseImport: function () {
|
|
|
|
|
|
this.getEndpointTableData()
|
|
|
|
|
|
bus.$emit('module-list-change')
|
|
|
|
|
|
},
|
|
|
|
|
|
endpointPageNo (val) {
|
|
|
|
|
|
this.endpointPageObj.pageNo = val
|
|
|
|
|
|
this.getEndpointTableData()
|
|
|
|
|
|
},
|
|
|
|
|
|
endpointPageSize (val) {
|
|
|
|
|
|
this.endpointPageObj.pageSize = val
|
|
|
|
|
|
localStorage.setItem('nz-pageSize-' + localStorage.getItem('nz-username') + '-' + this.tableId, val)
|
|
|
|
|
|
this.getEndpointTableData()
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
getProjectList () {
|
|
|
|
|
|
this.$get('project', { pageSize: -1 }).then(response => {
|
|
|
|
|
|
if (response.code == 200) {
|
|
|
|
|
|
this.projectList = response.data.list
|
2020-04-16 19:25:29 +08:00
|
|
|
|
}
|
2021-03-19 18:52:19 +08:00
|
|
|
|
})
|
|
|
|
|
|
},
|
|
|
|
|
|
getProjectModule (projectId) {
|
|
|
|
|
|
const moduleList = JSON.parse(JSON.stringify(this.moduleList))
|
|
|
|
|
|
return moduleList.filter((item, index) => {
|
|
|
|
|
|
return item.project.id == projectId
|
|
|
|
|
|
})
|
|
|
|
|
|
},
|
|
|
|
|
|
detailProject (project) {
|
|
|
|
|
|
this.pageType = 'project'
|
|
|
|
|
|
if (project) {
|
|
|
|
|
|
this.currentProject = project
|
|
|
|
|
|
this.currentProjectTitle = project.id + ''
|
|
|
|
|
|
}
|
|
|
|
|
|
this.currentModule = {}
|
|
|
|
|
|
},
|
|
|
|
|
|
closeAddEndpointRightBox (refresh) {
|
|
|
|
|
|
this.rightBox.addEndpoint.show = false
|
|
|
|
|
|
if (refresh) {
|
|
|
|
|
|
this.getEndpointTableData()
|
|
|
|
|
|
}
|
|
|
|
|
|
},
|
|
|
|
|
|
closeEditEndpointRightBox (refresh) {
|
|
|
|
|
|
this.rightBox.editEndpoint.show = false
|
|
|
|
|
|
if (refresh) {
|
|
|
|
|
|
this.getEndpointTableData()
|
|
|
|
|
|
}
|
|
|
|
|
|
},
|
|
|
|
|
|
getModuleList () {
|
|
|
|
|
|
this.$get('module', { pageSize: -1, pageNo: 1 }).then(response => {
|
|
|
|
|
|
if (response.code === 200) {
|
|
|
|
|
|
this.moduleList = response.data.list
|
|
|
|
|
|
for (let i = 0; i < this.moduleList.length; i++) {
|
|
|
|
|
|
try {
|
|
|
|
|
|
const param = this.moduleList[i].param || '{}'
|
|
|
|
|
|
const tempObj = JSON.parse(param)
|
|
|
|
|
|
this.$set(this.moduleList[i], 'paramObj', [])
|
|
|
|
|
|
for (const k in tempObj) {
|
|
|
|
|
|
this.moduleList[i].paramObj.push({ key: k, value: tempObj[k] })
|
|
|
|
|
|
}
|
|
|
|
|
|
const labels = this.moduleList[i].labels || '{}'
|
|
|
|
|
|
const tempObj1 = JSON.parse(labels)
|
|
|
|
|
|
this.$set(this.moduleList[i], 'labelModule', [])
|
|
|
|
|
|
for (const k in tempObj1) {
|
|
|
|
|
|
this.moduleList[i].labelModule.push({ key: k, value: tempObj1[k] })
|
2020-04-16 19:25:29 +08:00
|
|
|
|
}
|
2021-03-19 18:52:19 +08:00
|
|
|
|
} catch (err) {
|
|
|
|
|
|
console.error(response.data.list[i], err)
|
2020-04-16 19:25:29 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|
2020-11-10 14:11:29 +08:00
|
|
|
|
}
|
2021-03-19 18:52:19 +08:00
|
|
|
|
})
|
|
|
|
|
|
},
|
|
|
|
|
|
// 左侧module列表选中切换
|
|
|
|
|
|
changeModule (project, module) {
|
|
|
|
|
|
this.currentModule = module
|
|
|
|
|
|
this.endpointSearchLabel = { moduleId: '' }
|
|
|
|
|
|
this.$refs.projectSearch.clearSearch()
|
|
|
|
|
|
this.bottomBox.showSubList = false
|
|
|
|
|
|
this.currentProject = project
|
|
|
|
|
|
},
|
|
|
|
|
|
// 弹出endpoint编辑页
|
|
|
|
|
|
editEndpoint (endpoint) {
|
|
|
|
|
|
this.endpoint = JSON.parse(JSON.stringify(endpoint))
|
|
|
|
|
|
this.$set(this.endpoint, 'projectId', this.currentModule.project.id)
|
|
|
|
|
|
this.$set(this.endpoint, 'moduleId', this.currentModule.id)
|
2019-12-25 20:33:58 +08:00
|
|
|
|
|
2021-03-19 18:52:19 +08:00
|
|
|
|
this.rightBox.editEndpoint.show = true
|
|
|
|
|
|
if (!this.endpoint.paramObj) {
|
|
|
|
|
|
this.$set(this.endpoint, 'paramObj', [])
|
|
|
|
|
|
}
|
|
|
|
|
|
if (!this.endpoint.labelModule) {
|
|
|
|
|
|
this.$set(this.endpoint, 'labelModule', [])
|
|
|
|
|
|
}
|
|
|
|
|
|
},
|
2019-12-25 20:33:58 +08:00
|
|
|
|
|
2021-03-19 18:52:19 +08:00
|
|
|
|
addEndpoint () {
|
|
|
|
|
|
this.endpoint.project = Object.assign({}, this.currentModule.project)
|
|
|
|
|
|
this.endpoint.module = Object.assign({}, this.currentModule)
|
|
|
|
|
|
this.rightBox.addEndpoint.show = true
|
|
|
|
|
|
},
|
2019-12-12 17:15:33 +08:00
|
|
|
|
|
2021-03-19 18:52:19 +08:00
|
|
|
|
// 查看endpoint详情
|
|
|
|
|
|
detailEndpoint (endpoint) {
|
|
|
|
|
|
this.endpoint = Object.assign({}, endpoint)
|
|
|
|
|
|
this.bottomBox.targetTab = 'panel'
|
|
|
|
|
|
this.bottomBox.showSubList = true
|
|
|
|
|
|
},
|
|
|
|
|
|
delEndpoint (endpoint) {
|
|
|
|
|
|
this.$confirm(this.$t('tip.confirmDelete'), {
|
|
|
|
|
|
confirmButtonText: this.$t('tip.yes'),
|
|
|
|
|
|
cancelButtonText: this.$t('tip.no'),
|
|
|
|
|
|
type: 'warning'
|
|
|
|
|
|
}).then(() => {
|
|
|
|
|
|
this.$delete('endpoint?ids=' + endpoint.id).then(response => {
|
|
|
|
|
|
if (response.code === 200) {
|
|
|
|
|
|
this.delFlag = true
|
|
|
|
|
|
this.$message({ duration: 1000, type: 'success', message: this.$t('tip.deleteSuccess') })
|
|
|
|
|
|
this.getEndpointTableData()
|
|
|
|
|
|
} else {
|
|
|
|
|
|
this.$message.error(response.msg)
|
2019-12-13 17:08:35 +08:00
|
|
|
|
}
|
2021-03-19 18:52:19 +08:00
|
|
|
|
})
|
|
|
|
|
|
})
|
|
|
|
|
|
},
|
|
|
|
|
|
jumpToAlertMsg (endpoint) {
|
|
|
|
|
|
if (!this.hasButton('project_endpoint_alerts_view')) {
|
|
|
|
|
|
return
|
|
|
|
|
|
}
|
|
|
|
|
|
this.endpoint = Object.assign({}, endpoint)
|
|
|
|
|
|
this.bottomBox.targetTab = 'alertMessage'
|
|
|
|
|
|
this.bottomBox.showSubList = true
|
|
|
|
|
|
},
|
|
|
|
|
|
addModule () {
|
|
|
|
|
|
this.module = this.newModule()
|
|
|
|
|
|
this.rightBox.module.show = true
|
|
|
|
|
|
this.$nextTick(() => {
|
|
|
|
|
|
this.$refs.moduleBox.initWalk()
|
|
|
|
|
|
})
|
|
|
|
|
|
},
|
|
|
|
|
|
newModule () {
|
|
|
|
|
|
return JSON.parse(JSON.stringify(this.blankModule))
|
|
|
|
|
|
},
|
2020-11-10 14:11:29 +08:00
|
|
|
|
|
2021-03-19 18:52:19 +08:00
|
|
|
|
// 搜索
|
|
|
|
|
|
endpointSearch (searchObj) {
|
|
|
|
|
|
let orderBy = ''
|
|
|
|
|
|
if (this.endpointSearchLabel.orderBy) {
|
|
|
|
|
|
orderBy = this.endpointSearchLabel.orderBy
|
|
|
|
|
|
}
|
|
|
|
|
|
this.endpointSearchLabel = {}
|
|
|
|
|
|
this.endpointPageObj.pageNo = 1
|
|
|
|
|
|
for (const item in searchObj) {
|
|
|
|
|
|
if (searchObj[item] || searchObj[item] === 0) {
|
|
|
|
|
|
if (item === 'endpointState') {
|
|
|
|
|
|
this.$set(this.endpointSearchLabel, 'state', searchObj[item])
|
|
|
|
|
|
} else {
|
|
|
|
|
|
this.$set(this.endpointSearchLabel, item, searchObj[item])
|
2020-03-10 22:40:45 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|
2021-03-19 18:52:19 +08:00
|
|
|
|
}
|
|
|
|
|
|
if (orderBy) {
|
|
|
|
|
|
this.$set(this.endpointSearchLabel, 'orderBy', orderBy)
|
|
|
|
|
|
}
|
|
|
|
|
|
if (this.$refs.endpointTable && this.$refs.endpointTable.bodyWrapper) {
|
|
|
|
|
|
this.$refs.endpointTable.bodyWrapper.scrollTop = 0
|
|
|
|
|
|
}
|
|
|
|
|
|
this.getEndpointTableData()
|
|
|
|
|
|
},
|
2020-03-10 22:40:45 +08:00
|
|
|
|
|
2021-03-19 18:52:19 +08:00
|
|
|
|
dateFormat (time) {
|
|
|
|
|
|
if (!time) {
|
|
|
|
|
|
return '-'
|
|
|
|
|
|
}
|
|
|
|
|
|
const date = new Date(time * 1000)
|
|
|
|
|
|
const year = date.getFullYear()
|
|
|
|
|
|
const month = date.getMonth() + 1 < 10 ? '0' + (date.getMonth() + 1) : date.getMonth() + 1
|
|
|
|
|
|
const day = date.getDate() < 10 ? '0' + date.getDate() : date.getDate()
|
|
|
|
|
|
const hours = date.getHours() < 10 ? '0' + date.getHours() : date.getHours()
|
|
|
|
|
|
const minutes = date.getMinutes() < 10 ? '0' + date.getMinutes() : date.getMinutes()
|
|
|
|
|
|
const seconds = date.getSeconds() < 10 ? '0' + date.getSeconds() : date.getSeconds()
|
|
|
|
|
|
|
|
|
|
|
|
return year + '-' + month + '-' + day + ' ' + hours + ':' + minutes + ':' + seconds
|
|
|
|
|
|
},
|
|
|
|
|
|
viewAsset (endpoint) {
|
|
|
|
|
|
this.endpoint = Object.assign({}, endpoint)
|
|
|
|
|
|
this.bottomBox.targetTab = 'assetDetail'
|
|
|
|
|
|
this.bottomBox.showSubList = true
|
|
|
|
|
|
},
|
|
|
|
|
|
query (endpoint) {
|
|
|
|
|
|
this.endpoint = Object.assign({}, endpoint)
|
|
|
|
|
|
this.bottomBox.targetTab = 'endpointQuery'
|
|
|
|
|
|
this.bottomBox.showSubList = true
|
|
|
|
|
|
},
|
|
|
|
|
|
getStateContent: function (row) {
|
|
|
|
|
|
if (row) {
|
|
|
|
|
|
if (row.state == 1) {
|
|
|
|
|
|
return 'up'
|
|
|
|
|
|
} else {
|
|
|
|
|
|
return `down:${this.getStateErrorMsg(row)}`
|
2020-06-17 19:52:03 +08:00
|
|
|
|
}
|
2021-03-19 18:52:19 +08:00
|
|
|
|
}
|
|
|
|
|
|
},
|
|
|
|
|
|
convertToDetail (obj) {
|
|
|
|
|
|
const detail = {
|
|
|
|
|
|
project: obj.project.name,
|
|
|
|
|
|
module: obj.module.name,
|
|
|
|
|
|
asset: obj.asset.host,
|
|
|
|
|
|
host: obj.host,
|
|
|
|
|
|
port: obj.port,
|
|
|
|
|
|
path: obj.path,
|
|
|
|
|
|
param: obj.param
|
|
|
|
|
|
}
|
|
|
|
|
|
return detail
|
|
|
|
|
|
},
|
|
|
|
|
|
formatUpdateTime: function (date) {
|
|
|
|
|
|
const time = new Date(date)
|
|
|
|
|
|
const hours = time.getHours() > 9 ? time.getHours() : '0' + time.getHours()
|
|
|
|
|
|
const minutes = time.getMinutes() > 9 ? time.getMinutes() : '0' + time.getMinutes()
|
|
|
|
|
|
|
|
|
|
|
|
return hours + ':' + minutes
|
|
|
|
|
|
},
|
|
|
|
|
|
getStateErrorMsg (row) {
|
|
|
|
|
|
const errCodes = [230009, 230010, 230011]
|
|
|
|
|
|
if (row) {
|
|
|
|
|
|
if (row.state == 0) {
|
|
|
|
|
|
if (errCodes.find((item) => {
|
|
|
|
|
|
return row.stateInfo.code == item
|
|
|
|
|
|
})) {
|
|
|
|
|
|
return this.$t('project.endpoint.stateInfo_' + row.stateInfo.code)
|
|
|
|
|
|
} else {
|
|
|
|
|
|
this.$message.error('state code error')
|
|
|
|
|
|
return row.stateInfo.msg
|
2020-03-30 16:39:29 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|
2021-03-19 18:52:19 +08:00
|
|
|
|
}
|
|
|
|
|
|
},
|
|
|
|
|
|
assetConvertToDetail (obj) {
|
|
|
|
|
|
const detail = JSON.parse(JSON.stringify(obj))
|
|
|
|
|
|
detail.state = obj.state == 1 ? this.$t('asset.inStock') : this.$t('asset.notInStock')
|
|
|
|
|
|
detail.assetType = obj.model.type.value
|
|
|
|
|
|
detail.vendorModel = obj.model.vendor.value + ' ' + obj.model.name
|
|
|
|
|
|
detail.dataCenter = obj.idc ? obj.idc.name : ''
|
|
|
|
|
|
detail.location = obj.idc ? obj.idc.location : ''
|
|
|
|
|
|
detail.principal = obj.idc ? this.getPrincipalName(obj.idc.principal) : ''
|
|
|
|
|
|
detail.tel = obj.idc ? obj.idc.tel : ''
|
|
|
|
|
|
detail.cabinet = obj.cabinet ? obj.cabinet.name : ''
|
|
|
|
|
|
detail.uSize = obj.cabinet ? obj.cabinet.uSize : ''
|
|
|
|
|
|
detail.remark = obj.idc ? obj.idc.remark : ''
|
|
|
|
|
|
!obj.accounts && (obj.accounts = [])
|
|
|
|
|
|
if (obj.accounts.length > 0) {
|
|
|
|
|
|
const account = obj.accounts[0]
|
|
|
|
|
|
detail.protocol = account.protocol
|
|
|
|
|
|
detail.account = account.user
|
|
|
|
|
|
let loginType = ''
|
|
|
|
|
|
if (account.authType == 1) {
|
2022-06-16 15:58:17 +08:00
|
|
|
|
loginType = this.$t('login.pin')
|
2021-03-19 18:52:19 +08:00
|
|
|
|
} else if (account.authType == 2) {
|
|
|
|
|
|
loginType = this.$t('asset.ssh')
|
2020-07-15 18:32:25 +08:00
|
|
|
|
}
|
2021-03-19 18:52:19 +08:00
|
|
|
|
detail.loginType = loginType
|
|
|
|
|
|
detail.port = account.port
|
|
|
|
|
|
}
|
|
|
|
|
|
return detail
|
|
|
|
|
|
},
|
|
|
|
|
|
getPrincipalName (data) {
|
|
|
|
|
|
for (const item in this.userData) {
|
|
|
|
|
|
if (this.userData[item].userId === data) {
|
|
|
|
|
|
return this.userData[item].username
|
2020-07-15 18:32:25 +08:00
|
|
|
|
}
|
2021-03-19 18:52:19 +08:00
|
|
|
|
}
|
|
|
|
|
|
},
|
|
|
|
|
|
// 刷新拓扑图
|
|
|
|
|
|
visNetworkReload () {
|
|
|
|
|
|
this.$refs.facade.$refs.visNetwork.reload()
|
|
|
|
|
|
},
|
|
|
|
|
|
// 数据排序
|
|
|
|
|
|
tableDataSort (item) {
|
|
|
|
|
|
let orderBy = ''
|
|
|
|
|
|
if (item.order === 'ascending') {
|
|
|
|
|
|
orderBy = item.prop
|
2020-11-21 12:21:27 +08:00
|
|
|
|
}
|
2021-03-19 18:52:19 +08:00
|
|
|
|
if (item.order === 'descending') {
|
|
|
|
|
|
orderBy = '-' + item.prop
|
|
|
|
|
|
}
|
|
|
|
|
|
this.$set(this.endpointSearchLabel, 'orderBy', orderBy)
|
|
|
|
|
|
this.getEndpointTableData()
|
|
|
|
|
|
},
|
|
|
|
|
|
initEvent () {
|
|
|
|
|
|
bus.$on('project-page-type', pageType => {
|
|
|
|
|
|
this.pageType = pageType
|
|
|
|
|
|
})
|
|
|
|
|
|
bus.$on('current-project-change', project => {
|
|
|
|
|
|
this.currentProject = project
|
|
|
|
|
|
})
|
|
|
|
|
|
bus.$on('current-module-change', module => {
|
|
|
|
|
|
this.currentModule = module
|
|
|
|
|
|
this.bottomBox.showSubList = false
|
|
|
|
|
|
})
|
|
|
|
|
|
bus.$on('project-list-change', () => {
|
|
|
|
|
|
this.getProjectList()
|
|
|
|
|
|
})
|
|
|
|
|
|
bus.$on('module-list-change', menu => {
|
|
|
|
|
|
this.getModuleList()
|
|
|
|
|
|
})
|
|
|
|
|
|
bus.$on('endpoint-list-change', menu => {
|
|
|
|
|
|
this.getEndpointTableData()
|
|
|
|
|
|
})
|
|
|
|
|
|
bus.$on('alert-message-change', () => {
|
|
|
|
|
|
this.getEndpointTableData()
|
|
|
|
|
|
})
|
2019-12-13 20:41:32 +08:00
|
|
|
|
},
|
2021-03-19 18:52:19 +08:00
|
|
|
|
messageStyle (e) {
|
2022-06-16 15:58:17 +08:00
|
|
|
|
if (e.column.label == 'Alerts' || e.column.label == this.$t('overall.alert')) {
|
2021-03-19 18:52:19 +08:00
|
|
|
|
if (e.row.alertNum > 0) {
|
|
|
|
|
|
return 'danger'
|
|
|
|
|
|
} else {
|
|
|
|
|
|
return 'success'
|
2019-12-25 20:33:58 +08:00
|
|
|
|
}
|
2021-03-19 18:52:19 +08:00
|
|
|
|
}
|
|
|
|
|
|
return ''
|
|
|
|
|
|
},
|
|
|
|
|
|
changeTopologyIndexF () {
|
|
|
|
|
|
this.topologyIndexF = 0
|
|
|
|
|
|
}
|
|
|
|
|
|
},
|
|
|
|
|
|
created () {
|
|
|
|
|
|
this.currentProject = this.$store.state.currentProject
|
|
|
|
|
|
// 是否存在分页缓存
|
|
|
|
|
|
const pageSize = localStorage.getItem('nz-pageSize-' + localStorage.getItem('nz-username') + '-' + this.tableId)
|
|
|
|
|
|
if (pageSize) {
|
|
|
|
|
|
this.endpointPageObj.pageSize = pageSize
|
|
|
|
|
|
}
|
|
|
|
|
|
},
|
|
|
|
|
|
mounted () {
|
|
|
|
|
|
// 初始化表头
|
|
|
|
|
|
this.tools.customTableTitle = localStorage.getItem('nz-tableTitle-' + localStorage.getItem('nz-username') + '-' + this.$route.path)
|
|
|
|
|
|
? JSON.parse(localStorage.getItem('nz-tableTitle-' + localStorage.getItem('nz-username') + '-' + this.$route.path))
|
|
|
|
|
|
: this.tableTitle
|
|
|
|
|
|
setTimeout(() => {
|
|
|
|
|
|
this.ready = true
|
|
|
|
|
|
}, 300)
|
2020-08-03 21:33:13 +08:00
|
|
|
|
|
2021-03-19 18:52:19 +08:00
|
|
|
|
this.initEvent()
|
|
|
|
|
|
},
|
|
|
|
|
|
computed: {
|
|
|
|
|
|
currentProjectChange () {
|
|
|
|
|
|
return this.$store.state.currentProject
|
|
|
|
|
|
},
|
|
|
|
|
|
itemTip () {
|
|
|
|
|
|
return function (id, content, ready) {
|
|
|
|
|
|
const className = 'item-tip-show'
|
|
|
|
|
|
this.$nextTick(() => {
|
|
|
|
|
|
if (ready) {
|
|
|
|
|
|
const cellDom = document.querySelector(`#module-${id}`)
|
|
|
|
|
|
const spanDom = document.querySelector(`#module-${id}>span`)
|
|
|
|
|
|
if (cellDom.offsetWidth - 16 <= spanDom.offsetWidth) {
|
|
|
|
|
|
document.querySelector(`#module-${id}>.el-popover`).classList.add(className)
|
|
|
|
|
|
} else {
|
|
|
|
|
|
document.querySelector(`#module-${id}>.el-popover`).classList.remove(className)
|
2020-03-30 16:39:29 +08:00
|
|
|
|
}
|
2020-12-29 15:38:04 +08:00
|
|
|
|
}
|
2021-03-19 18:52:19 +08:00
|
|
|
|
})
|
|
|
|
|
|
return ''
|
|
|
|
|
|
}
|
2020-03-09 18:05:43 +08:00
|
|
|
|
},
|
2021-03-19 18:52:19 +08:00
|
|
|
|
reloadFacade () {
|
|
|
|
|
|
return this.$store.getters.getReloadFacade
|
|
|
|
|
|
}
|
|
|
|
|
|
},
|
|
|
|
|
|
watch: {
|
|
|
|
|
|
currentModule (n, o) {
|
|
|
|
|
|
this.endpointPageObj.pageNo = 1
|
|
|
|
|
|
if (n && n.id) {
|
|
|
|
|
|
this.getEndpointTableData()
|
|
|
|
|
|
} else {
|
|
|
|
|
|
this.endpointTableData = []
|
|
|
|
|
|
}
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
'bottomBox.showSubList': function (n) {
|
|
|
|
|
|
const vm = this
|
|
|
|
|
|
this.$bottomBoxWindow.showSubListWatch(vm, n)
|
|
|
|
|
|
},
|
|
|
|
|
|
endpoint: {
|
|
|
|
|
|
deep: true,
|
|
|
|
|
|
handler (n) {
|
|
|
|
|
|
this.bottomBox.endpointDetail = this.convertToDetail(n)
|
|
|
|
|
|
this.$get('asset', { id: n.assetId }).then(response => {
|
|
|
|
|
|
if (response.code === 200) {
|
|
|
|
|
|
this.bottomBox.assetDetail = this.assetConvertToDetail(response.data.list[0])
|
|
|
|
|
|
}
|
|
|
|
|
|
})
|
|
|
|
|
|
}
|
2020-11-20 15:02:36 +08:00
|
|
|
|
},
|
2021-03-19 18:52:19 +08:00
|
|
|
|
endpointTableData: {
|
|
|
|
|
|
deep: true,
|
|
|
|
|
|
handler (n) {
|
|
|
|
|
|
if (n.length === 0 && this.endpointPageObj.pageNo > 1) {
|
|
|
|
|
|
this.endpointPageNo(this.endpointPageObj.pageNo - 1)
|
|
|
|
|
|
}
|
|
|
|
|
|
if (!this.delFlag && this.pageType === 'endpoint') { // 不是删除时回到顶部 以及修改时
|
|
|
|
|
|
this.$refs.endpointTable.bodyWrapper.scrollTop = 0
|
|
|
|
|
|
} else {
|
|
|
|
|
|
this.delFlag = false
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2021-04-13 10:03:49 +08:00
|
|
|
|
},
|
|
|
|
|
|
currentProjectChange: {
|
|
|
|
|
|
deep: true,
|
|
|
|
|
|
handler (n) {
|
|
|
|
|
|
this.currentProject = this.$store.state.currentProject
|
|
|
|
|
|
}
|
2021-03-19 18:52:19 +08:00
|
|
|
|
}
|
|
|
|
|
|
},
|
|
|
|
|
|
beforeDestroy () {
|
|
|
|
|
|
bus.$off('project-page-type')
|
|
|
|
|
|
bus.$off('current-project-change')
|
|
|
|
|
|
bus.$off('current-module-change')
|
|
|
|
|
|
bus.$off('project-list-change')
|
|
|
|
|
|
bus.$off('module-list-change')
|
|
|
|
|
|
bus.$off('endpoint-list-change')
|
|
|
|
|
|
bus.$off('alert-message-change')
|
|
|
|
|
|
if (this.scrollbarWrap) {
|
|
|
|
|
|
this.scrollbarWrap.removeEventListener('scroll', bus.debounce)
|
2021-11-01 17:23:01 +08:00
|
|
|
|
}
|
2019-11-29 15:00:26 +08:00
|
|
|
|
}
|
2021-03-19 18:52:19 +08:00
|
|
|
|
}
|
2019-11-29 15:00:26 +08:00
|
|
|
|
</script>
|