This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
nezha-nezha-fronted/nezha-fronted/src/components/page/asset/asset.vue

504 lines
16 KiB
Vue
Raw Normal View History

<template>
<div>
<nz-data-list
ref="dataList"
:api="url"
:custom-table-title.sync="tools.customTableTitle"
:from="fromRoute.asset"
:layout="dataListLayout"
:search-msg="searchMsg"
2021-08-29 21:35:04 +08:00
:nz-table-height-offset="assetNzTableHeightOffset"
@search="search"
@getTableData="getTableData"
>
<template v-slot:top-tool-right>
<button id="asset-filter" :class="{ 'is-focus': dataListLayout.indexOf('clickSearch') > -1 }" class="top-tool-btn margin-r-10" @click.stop="showClickSearch">
<i class="nz-icon nz-icon-funnel"></i>
</button>
<button id="asset-create-asset" v-has="'asset_add'" :title="$t('overall.createAsset')" class="top-tool-btn" @click.stop="add">
<i class="nz-icon nz-icon-create-square"></i>
</button>
<top-tool-more-options
ref="export"
id="model"
:params="searchLabel"
:params2="searchCheckBox"
:permissions="{
import: 'asset_add',
export: 'asset_view'
}"
class="top-tool-export margin-l-10 margin-r-10"
export-file-name="asset"
export-url="/asset/asset/export"
import-url="/asset/asset/import"
@afterImport="getTableData"
2020-08-03 20:12:20 +08:00
>
<template v-slot:before>
<div>
<el-dropdown-item>
<div id="asset-batch-asset" v-has="'asset_edit'" @click.stop="batchEdit"><i class="nz-icon nz-icon-batch-edit"></i>{{$t('overall.batchEdit')}}</div>
</el-dropdown-item>
<el-dropdown-item>
<delete-button :type="'link'" :title="$t('overall.batchDel')" id="asset-list-batch-delete" v-has="'asset_delete'" :api="url" :delete-objs="batchDeleteObjs" @after="getTableData" @before="delFlag=true"></delete-button>
</el-dropdown-item>
</div>
2020-09-08 11:18:18 +08:00
</template>
</top-tool-more-options>
</template>
2021-04-23 19:58:08 +08:00
<template v-slot:search>
2021-04-26 21:42:15 +08:00
<click-search ref="clickSearch" :select-value.sync="selectValue" :title-search-list="titleSearchList" @reload="reloadTable"/>
2021-04-23 19:58:08 +08:00
</template>
<template v-slot:default="slotProps">
<asset-table
ref="dataTable"
2021-05-18 19:18:14 +08:00
v-loading="tools.loading"
:api="url"
:custom-table-title="tools.customTableTitle"
2021-08-29 21:35:04 +08:00
:height="mainTableHeight"
:table-data="tableData"
@cli="cli"
@del="del"
@edit="edit"
2021-04-26 21:42:15 +08:00
@duplicate="duplicate"
@orderBy="tableDataSort"
@reload="getTableData"
@selectionChange="selectionChange"
@addSilence="addSilence"
@showBottomBox="(targetTab, object) => { $refs.dataList.showBottomBox(targetTab, object) }"></asset-table>
</template>
<!-- 分页组件 -->
<template v-slot:pagination>
<Pagination ref="Pagination" :pageObj="pageObj" :tableId="tableId" @pageNo='pageNo' @pageSize='pageSize'></Pagination>
</template>
</nz-data-list>
<transition name="right-box">
<asset-box v-if="rightBox.show"
ref="assetBox"
:dc-data="dcData"
:field-group-data="fieldGroupData"
:from="fromRoute.asset"
:obj="object"
:snmp-credential-data="snmpCredentialData"
:state-data="stateData"
:type-data="typeData"
@close="closeRightBox"
@refresh="getTableData"></asset-box>
</transition>
<transition name="right-box">
<asset-batch-edit-box v-if="rightBox.batchShow"
:field-group-data="fieldGroupData"
:snmp-credential-data="snmpCredentialData"
:state-data="stateData"
@close="closeRightBox"
@refresh="getTableData"></asset-batch-edit-box>
</transition>
2021-06-01 15:19:47 +08:00
<transition name="right-box"><alert-silence-box v-if='silenceBoxShow' :alert-silence="objectSilence" @close="closeSilenceBox"></alert-silence-box>
</transition>
</div>
</template>
<script>
import deleteButton from '@/components/common/deleteButton'
import assetBox from '@/components/common/rightBox/asset/assetBox'
import assetBatchEditBox from '@/components/common/rightBox/asset/assetBatchEditBox'
import nzDataList from '@/components/common/table/nzDataList'
import dataListMixin from '@/components/common/mixin/dataList'
import assetTable from '@/components/common/table/asset/assetTable'
2021-04-26 21:42:15 +08:00
import clickSearch from '@/components/common/labelFilter/clickSearch'
import topToolMoreOptions from '@/components/common/popBox/topToolMoreOptions'
2021-06-01 15:19:47 +08:00
import alertSilenceBox from '@/components/common/rightBox/alertSilenceBox'
2021-03-11 16:46:09 +08:00
2021-03-19 18:52:19 +08:00
export default {
name: 'asset',
components: {
deleteButton,
assetBox,
nzDataList,
assetBatchEditBox,
assetTable,
2021-04-23 19:58:08 +08:00
clickSearch,
topToolMoreOptions,
alertSilenceBox
2021-03-19 18:52:19 +08:00
},
mixins: [dataListMixin],
2021-03-19 18:52:19 +08:00
data () {
return {
url: 'asset/asset',
filter: {},
2021-03-19 18:52:19 +08:00
// 侧滑
rightBox: {
batchShow: false
},
silenceBoxShow: false,
2021-08-23 18:50:08 +08:00
dataListLayout: ['searchInput', 'elementSet', 'clickSearch', 'pagination'],
2021-08-29 21:35:04 +08:00
assetNzTableHeightOffset: 281, // 包含click-search时nz-table的高度
blankObject: {
2021-03-19 18:52:19 +08:00
id: '',
name: '',
pid: '',
2021-03-19 18:52:19 +08:00
sn: '',
manageIp: '',
stateId: 2,
purchaseDate: null,
dcId: '',
2021-03-19 18:52:19 +08:00
cabinetId: '',
brandId: '',
brand: { id: '', name: '' },
2021-03-19 18:52:19 +08:00
modelId: '',
model: { id: '', name: '' },
type: { name: '', id: '' },
brandAndModel: [],
typeId: '',
2021-08-16 10:48:58 +08:00
clientPort: '10092',
2021-08-18 15:27:53 +08:00
clientToken: '',
authProtocolPort: '',
authType: '',
authUsername: '',
authPin: '',
authPriKey: '',
authUserTip: '',
authPinTip: '',
fields: [],
2021-03-19 18:52:19 +08:00
accounts: []
},
blankSilenceObject: {
id: '',
startAt: '',
endAt: '',
ruleId: '',
type: 'asset',
linkId: '',
remark: '',
time: [],
matchers: [
{ name: '', value: '', regex: 0 }
],
name: ''
},
objectSilence: {},
2021-03-19 18:52:19 +08:00
tableId: 'assetTable', // 需要分页的table的id用于记录每页数量
searchMsg: { // 给搜索框子组件传递的信息
searchLabelList: [{
name: 'ID',
type: 'input',
2021-05-10 15:59:39 +08:00
label: 'ids',
disabled: false
}, {
2021-05-20 11:39:12 +08:00
name: this.$t('overall.name'),
2021-05-10 15:59:39 +08:00
type: 'input',
label: 'name',
2021-03-19 18:52:19 +08:00
disabled: false
}, {
name: 'SN',
type: 'input',
label: 'sn',
disabled: false
}, {
2021-05-10 15:59:39 +08:00
name: 'IP',
2021-03-19 18:52:19 +08:00
type: 'input',
2021-05-10 15:59:39 +08:00
label: 'manageIp',
2021-03-19 18:52:19 +08:00
disabled: false
}, {
name: this.$t('asset.state'),
2021-05-10 15:59:39 +08:00
type: 'assetState',
label: 'stateIds',
readonly: true,
2021-03-19 18:52:19 +08:00
disabled: false
}]
},
modelData: [],
stateData: [],
typeData: [],
dcData: [],
snmpCredentialData: [],
2021-04-23 19:58:08 +08:00
fieldGroupData: [],
titleSearchList: {
dc: {
label: this.$t('overall.dc'),
key: 'dcIds',
type: 'checkBox',
children: [],
show: false,
2021-04-23 19:58:08 +08:00
showMore: false,
width: 0,
2021-06-07 15:09:11 +08:00
index: -1
2021-04-23 19:58:08 +08:00
},
type: {
label: this.$t('overall.type'),
key: 'typeIds',
type: 'checkBox',
children: [],
show: false,
2021-04-23 19:58:08 +08:00
showMore: false,
width: 0,
2021-06-07 15:09:11 +08:00
index: -1
2021-04-23 19:58:08 +08:00
},
ping: {
label: 'ping',
key: 'ping',
type: 'checkBox',
children: [
{ key: 'Down', value: 0, name: 'Down' },
{ key: 'Up', value: 1, name: 'Up' }
],
show: true,
showMore: false,
width: 0,
2021-06-07 15:09:11 +08:00
index: -1
2021-04-23 19:58:08 +08:00
},
model: {
label: this.$t('asset.model'),
key: 'modelIds',
type: 'dropdownCheckBox',
children: [],
show: false,
2021-04-26 21:42:15 +08:00
showMore: false,
2021-04-23 19:58:08 +08:00
width: 0,
2021-06-07 15:09:11 +08:00
index: -1
2021-04-23 19:58:08 +08:00
},
assetLabel: {
label: 'More',
key: 'fields',
type: 'dropdownCheckBox',
children: [],
show: false,
2021-04-26 21:42:15 +08:00
showMore: false,
2021-04-23 19:58:08 +08:00
width: 0,
2021-06-07 15:09:11 +08:00
index: -1
2021-04-23 19:58:08 +08:00
}
},
selectValue: {
dcIds: [],
typeIds: [],
ping: [],
modelIds: [],
fields: ''
}
2021-03-19 18:52:19 +08:00
}
},
methods: {
cli (row) {
2021-03-19 18:52:19 +08:00
const consoleParam = {
id: row.id,
host: row.manageIp,
port: row.authProtocolPort
2021-03-19 18:52:19 +08:00
}
this.$store.commit('addConsole', consoleParam)
},
2021-04-26 21:42:15 +08:00
duplicate (row) {
this.$get(`${this.url}/${row.id}`).then(response => {
if (response.code === 200) {
this.object = { ...response.data, id: '', name: `${row.name}-copy` }
if (this.object.name.length > 64) {
const length = this.object.name.length - 64
this.object.name = row.name.substring(0, row.name.length - length) + '-copy'
}
this.rightBox.show = true
}
})
2021-04-23 19:58:08 +08:00
},
getStateData () {
return new Promise(resolve => {
2021-04-26 21:42:15 +08:00
this.$get('asset/stateConf?pageSize=-1').then(response => {
if (response.code === 200) {
this.stateData = response.data.list
}
resolve()
})
2021-03-19 18:52:19 +08:00
})
},
getTypeData () {
2021-04-23 19:58:08 +08:00
return new Promise(resolve => {
2021-04-26 21:42:15 +08:00
this.$get('asset/typeConf?pageSize=-1').then(response => {
2021-04-23 19:58:08 +08:00
if (response.code === 200) {
2021-06-07 15:09:11 +08:00
resolve(response.data.list.map(d => { return { ...d, value: d.id } }))
// this.titleSearchList.type.children = response.data.list.map(d => { return { ...d, value: d.id } })
2021-04-23 19:58:08 +08:00
}
resolve()
})
})
},
getTypeTreeData () {
2021-03-19 18:52:19 +08:00
return new Promise(resolve => {
this.$get('asset/typeConf/tree').then(response => {
2021-03-19 18:52:19 +08:00
if (response.code === 200) {
this.typeData = response.data.list
2021-03-11 16:46:09 +08:00
}
resolve()
2021-03-19 18:52:19 +08:00
})
})
},
2021-04-23 19:58:08 +08:00
reloadTable (obj) {
Object.keys(obj).forEach(key => {
if (typeof obj[key] === 'string') {
2021-04-26 21:42:15 +08:00
this.searchCheckBox[key] = obj[key] ? obj[key] : null
2021-04-23 19:58:08 +08:00
} else {
2021-04-26 21:42:15 +08:00
obj[key] && obj[key].length > 0 ? this.searchCheckBox[key] = obj[key].join(',') : this.searchCheckBox[key] = null
2021-04-23 19:58:08 +08:00
}
})
this.getTableData()
},
getDcData () {
return new Promise(resolve => {
this.$get('dc', { pageSize: -1 }).then(response => {
if (response.code === 200) {
this.dcData = response.data.list
2021-06-07 15:09:11 +08:00
resolve(response.data.list.map(d => { return { ...d, value: d.id } }))
// this.titleSearchList.dc.children = response.data.list.map(d => { return { ...d, value: d.id } })
2020-10-15 17:12:55 +08:00
}
resolve()
})
})
2021-03-19 18:52:19 +08:00
},
getSnmpCredentialData () {
return new Promise(resolve => {
this.$get('snmp/credential', { pageSize: -1 }).then(response => {
if (response.code === 200) {
this.snmpCredentialData = response.data.list
}
resolve()
})
})
2021-03-19 18:52:19 +08:00
},
getFieldGroupData () {
return new Promise(resolve => {
this.$get('asset/field/group', { pageSize: -1 }).then(response => {
if (response.code === 200) {
this.fieldGroupData = response.data.list
}
resolve()
})
})
2021-03-19 18:52:19 +08:00
},
2021-04-23 19:58:08 +08:00
getSearchableMetaData () {
return new Promise(resolve => {
this.$get('asset/field/meta', { pageSize: -1 }).then(response => {
2021-04-23 19:58:08 +08:00
if (response.code === 200) {
const data = []
const searchableData = response.data.list.filter(d => d.search === 1)
const showData = response.data.list.filter(d => d.display === 1).map(item => {
2021-06-02 16:55:17 +08:00
return { label: item.name, prop: item.name, show: false, allowed: true, type: 'label' }
})
searchableData.forEach(m => {
2021-04-23 19:58:08 +08:00
if (m.param) {
const param = JSON.parse(m.param)
if (param.items) {
data.push({ ...m, children: param.items.map(p => { return { ...p, id: p.name, metaId: m.id } }) })
}
}
})
2021-06-07 15:09:11 +08:00
// this.titleSearchList.assetLabel.children = data
resolve(data)
setTimeout(() => {
const title = this.tools.customTableTitle
const originalTitle = title.slice(0, this.$refs.dataTable.tableTitle.length) // 原title
const oldLabelTitle = title.slice(this.$refs.dataTable.tableTitle.length, title.length) // 旧labelTitle
const newLabel = showData.filter(item => { return !oldLabelTitle.find(t => { return item.label === t.label }) })
const keepLabel = oldLabelTitle.filter(item => showData.find(t => item.label === t.label))
let result = originalTitle.concat([{ label: 'Label', show: false, NotSet: true, type: 'title', prop: 'table-label' }])
result = result.concat(keepLabel).concat(newLabel)
this.tools.customTableTitle = JSON.parse(JSON.stringify(result))
}, 200)
2021-04-23 19:58:08 +08:00
}
resolve()
})
})
},
getModelData () {
return new Promise(resolve => {
2021-04-26 21:42:15 +08:00
this.$get('asset/model?pageSize=-1').then(response => {
if (response.code === 200) {
this.modelData = response.data.list
2021-04-23 19:58:08 +08:00
const titleSearchData = {}
this.modelData.forEach(m => {
if (titleSearchData[m.brand.name]) {
titleSearchData[m.brand.name].children.push(m)
} else {
titleSearchData[m.brand.name] = { ...m.brand, children: [m] }
}
})
2021-06-07 15:09:11 +08:00
resolve(Object.keys(titleSearchData).map(b => titleSearchData[b]))
// this.titleSearchList.model.children = Object.keys(titleSearchData).map(b => titleSearchData[b])
}
resolve()
})
2021-03-19 18:52:19 +08:00
})
},
showEndpoint (asset) {
if (!this.hasButton('asset_endpoint_view')) {
return
}
this.bottomBox.asset = Object.assign({}, asset)
this.bottomBox.targetTab = 'endpoint'
this.bottomBox.showSubList = true
},
2021-03-19 18:52:19 +08:00
batchEdit () {
this.rightBox.batchShow = true
},
closeRightBox (refresh) {
this.rightBox.show = false
this.rightBox.batchShow = false
if (refresh) {
this.delFlag = true
this.getTableData()
}
},
getPrincipalName (data) {
for (const item in this.userData) {
if (this.userData[item].userId === data) {
return this.userData[item].username
}
2021-03-19 18:52:19 +08:00
}
}
2021-03-19 18:52:19 +08:00
},
mounted () {
// 初始化数据
this.getModelData().then(res => {
this.titleSearchList.model.children = res
this.titleSearchList.model.show = true
})
this.getTypeData().then(res => {
this.titleSearchList.type.children = res
this.titleSearchList.type.show = true
})
this.getDcData().then(res => {
this.titleSearchList.dc.children = res
this.titleSearchList.dc.show = true
})
this.getSearchableMetaData().then(res => {
this.titleSearchList.assetLabel.children = res
this.titleSearchList.assetLabel.show = true
2021-06-07 15:09:11 +08:00
})
this.getStateData()
2021-04-23 19:58:08 +08:00
this.getTypeTreeData()
this.getSnmpCredentialData()
this.getFieldGroupData()
2021-05-12 16:19:43 +08:00
},
watch: {
$route: {
immediate: true,
handler () {
// 是否弹出侧滑
const add = this.$route.query.add
const importAsset = this.$route.query.importAsset
if (add) {
if (add === 'asset') {
this.add()
}
}
if (importAsset) {
this.$nextTick(() => {
this.$refs.export.showImportBox(1)
})
}
2021-05-11 22:29:14 +08:00
}
}
}
2021-03-19 18:52:19 +08:00
}
</script>