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

879 lines
31 KiB
Vue
Raw Normal View History

<template>
<div class="asset" ref="asset">
2020-08-03 20:12:20 +08:00
<div class="main-list" :class="{'main-list-with-sub': bottomBox.showSubList}">
<div class="main-modal"></div>
<div class="top-tools" v-show="bottomBox.mainResizeShow">
<div class="top-tool-main-right" :class="{'top-tool-main-right-to-left': bottomBox.showSubList}">
<div class="top-tool-search margin-r-20"><search-input :searchMsg="searchMsg" @search="search" :inTransform="bottomBox.inTransform"></search-input></div>
<export-excel
export-file-name="asset"
export-url="/asset/export"
import-url="/asset/import"
:params="searchLabel"
:permissions="{import: 'asset_import', export: 'asset_export'}"
@afterImport="afterTableListChange"
2020-08-03 20:12:20 +08:00
>
<template slot="optionZone">
<button :title="$t('overall.createAsset')" @click.stop="add" class="nz-btn nz-btn-size-normal nz-btn-style-light" id="asset-create-asset" v-has="'asset_toAdd'">
2020-08-03 20:12:20 +08:00
<i class="nz-icon nz-icon-create-square"></i></button>
</template>
</export-excel>
<button :title="$t('overall.batchEdit')" @click.stop="batchEdit" class="nz-btn nz-btn-size-normal nz-btn-style-light" id="asset-batch-asset" style="margin-left: 15px" v-has="'asset_toBatchEdit'">
<i class="nz-icon nz-icon-batch-edit"></i>
</button>
2020-12-30 11:39:37 +08:00
<delete-button :delete-objs="batchDeleteObjs" @after="getTableData" api="asset" v-has="'asset_delete'"></delete-button>
</div>
2020-08-03 20:12:20 +08:00
<div class="pagination-top pagination-top-hide display-none"></div>
</div>
<!-- 自定义table列 -->
<transition name="el-zoom-in-top">
<element-set
v-if="tools.showCustomTableTitle"
@close="tools.showCustomTableTitle = false"
:custom-table-title.sync="tools.customTableTitle"
:original-table-title="tableTitle"
ref="customTableTitle"
></element-set>
</transition>
2020-08-03 20:12:20 +08:00
<el-table
class="nz-table"
:height="mainTableHeight"
2020-11-21 14:41:48 +08:00
style="width: 100%;position: relative;z-index: 99"
2020-08-03 20:12:20 +08:00
:data="tableData"
v-show="bottomBox.mainResizeShow"
border
v-loading="tools.loading"
ref="assetTable"
:cell-class-name="messageStyle"
@sort-change="tableDataSort"
@row-dblclick="detail"
@selection-change="(selection)=>{this.batchDeleteObjs=selection}"
2020-08-03 20:12:20 +08:00
>
<el-table-column
:resizable="false"
type="selection"
width="40"
align="center">
</el-table-column>
2020-08-03 20:12:20 +08:00
<el-table-column
:resizable="true"
v-for="(item, index) in tools.customTableTitle"
2020-08-03 20:12:20 +08:00
v-if="item.show"
:key="`col_${index}`"
:label="item.label"
:fixed="item.fixed"
:class-name="item.prop == 'option' ? 'content-right-options' : ''"
:sortable="$tableSet.sortableShow(item.prop,'asset')"
:prop="$tableSet.propTitle(item.prop,'asset')"
2020-08-03 20:12:20 +08:00
:sort-orders="['ascending', 'descending']"
>
2020-09-08 11:18:18 +08:00
<template slot-scope="scope" slot="header">
2020-09-11 14:09:57 +08:00
<span v-if="item.type == 'tag'" class="tag-header" :title="item.label"><span class="tag-value">{{item.label}}</span><span class="tag-mark">&nbsp;[Tag]</span></span>
2020-09-08 11:18:18 +08:00
<span v-else><span>{{item.label}}</span></span>
</template>
2020-08-03 20:12:20 +08:00
<template slot-scope="scope" :column="item">
<div v-if="item.prop=='ID'">
<span>{{scope.row.id}}</span>
</div>
<div v-if="item.prop=='assetType'">
<span>{{scope.row.model.type.value}}</span>
</div>
<template v-if="item.prop=='SN'">{{scope.row.sn}}</template>
<div v-if="item.prop=='HOST'">
<span>{{scope.row.host}}</span>
</div>
<div v-if="item.prop=='state'">
2020-11-09 17:54:48 +08:00
<span v-if="scope.row.state==1">{{ $t('asset.inStock')}}</span>
<span v-if="scope.row.state==2">{{ $t('asset.notInStock')}}</span>
<span v-if="scope.row.state==3">{{ $t('asset.suspended')}}</span>
2020-08-03 20:12:20 +08:00
</div>
<div v-if="item.prop == 'pingStatus'">
2020-11-21 12:33:26 +08:00
<el-popover
placement="right"
width="200"
trigger="hover"
:content="formatPingTime(scope.row.pingLastUpdate)">
<div slot="reference" style="width: 100%">
<div :class="{'active-icon green':scope.row.pingState == 1,'active-icon red':scope.row.pingState == 0}"></div><span>{{scope.row.pingRtt?scope.row.pingRtt+'ms':''}}</span>
</div>
</el-popover>
2020-08-03 20:12:20 +08:00
</div>
<template v-if="item.prop=='Module'">
2020-11-21 12:33:26 +08:00
<el-tooltip placement="right" effect="light">
<div slot="content">
{{$t('asset.down')}} / {{$t('asset.suspended')}} / {{$t('asset.total')}}
2020-11-21 12:33:26 +08:00
</div>
<span class="link" @click="showEndpoint(scope.row)" style="padding: 2px 8px">{{scope.row.endpointDownNum}}/{{scope.row.endpointSuspendedNum}}/{{scope.row.endpointNum}}</span>
2020-11-21 12:33:26 +08:00
</el-tooltip>
2020-08-03 20:12:20 +08:00
</template>
<template v-if="item.prop=='Alert'">
2020-11-21 12:33:26 +08:00
<el-tooltip :content="scope.row.alertNum+' '+$t('overall.active')" placement="top" effect="light" :disabled=" scope.row.alertNum < 99">
2020-08-03 20:12:20 +08:00
<span :id="'asset-alerts-'+scope.row.id" @click="jumpToAlertMsg(scope.row)" class="link">
{{(scope.row.alertNum < 99 ? scope.row.alertNum : 99)}}
<sup class="linkSup" v-if="scope.row.alertNum > 99">+</sup>
{{' ' + $t('overall.active')}}
</span>
2020-11-21 12:33:26 +08:00
</el-tooltip>
2020-08-03 20:12:20 +08:00
</template>
<div v-if="item.prop=='dataCenter'">
<span >{{scope.row.idc.name}}</span>
</div>
2020-08-03 20:12:20 +08:00
<template v-if="item.prop=='cabinet'">
2020-11-21 14:41:48 +08:00
<span v-if="scope.row.cabinet && scope.row.cabinet != '--'">{{scope.row.cabinet.name}}&nbsp;{{returnCabinet( scope.row.cabinetStart, scope.row.cabinetEnd)}}</span>
<span v-else >--</span>
2020-08-03 20:12:20 +08:00
</template>
<div v-if="item.prop=='model'">
<span>{{scope.row.model.name}}</span>
</div>
<div v-if="item.prop=='vendor'">
<span>{{scope.row.model.vendor.value}}</span>
</div>
<div v-if="item.prop=='purchaseDate'">
2020-11-21 14:41:48 +08:00
<span v-if="scope.row.purchaseDate">{{scope.row.purchaseDate}}</span>
<span v-else="scope.row.purchaseDate">==</span>
2020-08-03 20:12:20 +08:00
</div>
<div v-if="item.prop=='principal'">
<span>{{getPrincipalName(scope.row.idc.principal)}}</span>
</div>
<div v-if="item.prop=='tel'">
<span>{{scope.row.idc.tel}}</span>
</div>
2020-09-08 11:18:18 +08:00
<template v-if="item.prop == 'tags'">
<span>{{filterTags(scope)}}</span>
</template>
2020-08-03 20:12:20 +08:00
<template v-if="item.prop == 'option'">
<span :title="$t('overall.view')" @click.stop="detail(scope.row)" class="content-right-option" :id="'asset-detail-'+scope.row.id"><i
2020-09-10 17:00:32 +08:00
class="nz-icon nz-icon-view"></i>
2020-08-03 20:12:20 +08:00
</span>
&nbsp;
<span :id="'asset-edit-'+scope.row.id" :title="$t('overall.edit')" @click.stop="edit(scope.row)" class="content-right-option" v-has="'asset_toEdit'"><i
2020-08-03 20:12:20 +08:00
class="nz-icon nz-icon-edit"></i>
</span>
&nbsp;
<span :id="'asset-del-'+scope.row.id" :title="$t('overall.delete')" @click.stop="del(scope.row)" class="content-right-option" v-has="'asset_delete'"><i
2020-09-10 17:00:32 +08:00
class="nz-icon nz-icon-delete"></i>
2020-08-03 20:12:20 +08:00
</span>
&nbsp;
<el-dropdown @command="cli" trigger="hover" v-has="'asset_connect'">
2020-08-03 20:12:20 +08:00
<span title="CLI" class="content-right-option" :id="'asset-ssh-'+scope.row.id"><i
class="nz-icon nz-icon-cli" :class="{'gray-filter': !scope.row.accounts || scope.row.accounts.length == 0 || (scope.row.accounts.length==1&&scope.row.accounts.find(t=>t.protocol == 'SNMP'))}"></i>
2020-08-03 20:12:20 +08:00
</span>
<el-dropdown-menu slot="dropdown">
<el-dropdown-item :command="[scope.row.id ,scope.row.host, account]" :key="index" v-for="(account, index) in scope.row.accounts" v-if="account && account.protocol != 'SNMP'">{{account.protocol}}</el-dropdown-item>
</el-dropdown-menu>
</el-dropdown>
2020-08-03 20:12:20 +08:00
</template>
</template>
</el-table-column>
<el-table-column width="28" fixed="right" :resizable="false">
<template slot="header" slot-scope="scope">
<span @mousedown.stop="!tools.showCustomTableTitle && (tools.showCustomTableTitle = true)" class="nz-table-gear">
2020-08-03 20:12:20 +08:00
<i class="nz-icon nz-icon-gear"></i>
</span>
</template>
</el-table-column>
</el-table>
<button :class="{'to-top-is-hover': tools.tableHover}" :style="{top: tools.toTopBtnTop}" @click="toTop(scrollbarWrap)" class="to-top" v-show="tools.showTopBtn && bottomBox.mainResizeShow"><i class="nz-icon nz-icon-top"></i></button>
2020-08-03 20:12:20 +08:00
<div class="pagination-bottom" v-show="!bottomBox.showSubList">
2020-12-17 11:07:57 +08:00
<Pagination :pageObj="pageObj" :tableId="tableId" @pageNo='pageNo' @pageSize='pageSize' ref="Pagination"></Pagination>
</div>
2020-08-03 20:12:20 +08:00
</div>
<transition name="el-zoom-in-bottom">
<bottom-box :detail="bottomBox.assetDetail" :from="$CONSTANTS.fromRoute.asset" :isFullScreen="bottomBox.isFullScreen" :obj="bottomBox.asset" :sub-resize-show="bottomBox.subResizeShow" :targetTab.sync="bottomBox.targetTab" v-if="bottomBox.showSubList"
2020-08-03 20:12:20 +08:00
@reload="getTableData"
@closeSubList="bottomBox.showSubList = false"
@fullScreen="fullScreen"
@exitFullScreen="exitFullScreen"
@listResize="listResize" ></bottom-box>
</transition>
<transition name="right-box">
<asset-box v-if="rightBox.show" :asset="asset" @refresh="getTableData" ref="assetBox" @close="closeRightBox"></asset-box>
</transition>
<transition name="right-box">
<batch-edit-asset v-if="rightBox.batchShow" @refresh="getTableData" ref="assetBox" @close="closeRightBox"></batch-edit-asset>
</transition>
</div>
</template>
<script>
import bus from "../../../libs/bus";
import exportXLSX from "../../common/exportXLSX";
import endpointStatusPop from "./endpointStatusPop";
import deleteButton from "../../common/deleteButton";
export default {
name: "asset",
components:{
'export-excel':exportXLSX,
'endpoint-status-pop':endpointStatusPop,
'delete-button':deleteButton,
},
data() {
return {
//侧滑
rightBox: {
show: false,
batchShow:false,
},
/*二级页面相关*/
bottomBox: {
assetDetail: {}, //asset详情
asset: {}, //告警信息对应的asset对象
mainResizeShow: true, //dom高度改变时是否展示|隐藏
subResizeShow: true,
isFullScreen: false, //全屏状态
showSubList: false, //是否显示二级列表
targetTab: '', //显示二级列表中的哪个页签
inTransform: false, //搜索框相关搜索条件下拉框是否在transform里
},
mainTableHeight: this.$tableHeight.normal, //主列表table高度
/*工具参数*/
tools: {
loading: false, //是否显示table加载动画
toTopBtnTop: this.$tableHeight.toTopBtnTop, //to-top按钮的top属性
tableHover: false, //控制滚动条和top按钮同时出现
showTopBtn: false, //显示To top按钮
showCustomTableTitle: false, //自定义列弹框是否显示
customTableTitle: [], //自定义列工具的数据
},
batchDeleteObjs:[],
asset: {},
blankAsset: {
id: '',
sn: '',
host: '',
2020-12-25 10:39:53 +08:00
state: 1,
purchaseDate: '',
idcId: '',
cabinetId: '',
modelId: '',
model: {type: {code: ""}},
assetType: '',
impi:{
host:'',
port:'',
},
tags: [],
accounts: [],
},
tableId: 'assetTable', //需要分页的table的id用于记录每页数量
searchMsg: { //给搜索框子组件传递的信息
zheze_none: true,
searchLabelList: [{
id: 1,
name: 'ID',
type: 'input',
label: 'id',
disabled: false
},{
id: 20,
name: 'SN',
type: 'input',
label: 'sn',
disabled: false
},{
id: 21,
name: 'Host',
type: 'input',
label: 'host',
disabled: false
},{
id: 22,
name: this.$t("asset.state"),
type: 'select',
label: 'assetState',
disabled: false
},{
id: 23,
name: "pingStatus",
type: 'select',
label: 'pingStatus',
disabled: false
2020-11-03 17:09:31 +08:00
},{
id: 23,
name: this.$t("asset.tableTitle.cabinet"),
type: 'input',
label: 'cabinetName',
disabled: false
}],
},
searchLabel: {}, //搜索参数
activeType: 'dataCenter',
tableTitle: [
{
label: this.$t("asset.tableTitle.host"),
prop: 'HOST',
show: true,
width: 130,
fixed:'left'
},
{
label: this.$t("asset.tableTitle.id"),
prop: 'ID',
2020-08-17 11:01:28 +08:00
show: false,
allowed:true,
2020-08-07 09:37:58 +08:00
// width: 110
}, {
label: this.$t("asset.tableTitle.assetType"),
prop: 'assetType',
show: true,
}, {
label: this.$t("asset.tableTitle.device"),
prop: 'SN',
show: true,
2020-01-17 16:06:35 +08:00
width: 130
}, {
label: this.$t("asset.tableTitle.assetState"),
prop: 'state',
show: true,
}, {
label:this.$t('asset.tableTitle.assetPing'),
prop:'pingStatus',
show:true,
},{
label: this.$t("asset.tableTitle.modules"),
prop: 'Module',
show: true,
width: 105
}, {
label: this.$t("asset.tableTitle.alerts"),
prop: 'Alert',
show: true,
width: 100
}, {
label: this.$t("asset.tableTitle.dataCenter"),
prop: 'dataCenter',
show: true,
}, {
label: this.$t("asset.tableTitle.cabinet"),
prop: 'cabinet',
show: true,
}, {
label: this.$t("asset.tableTitle.model"),
prop: 'model',
show: true,
}, {
label: this.$t("asset.tableTitle.vendor"),
prop: 'vendor',
show: true,
}, {
label: this.$t("asset.tableTitle.procurementDate"),
prop: 'purchaseDate',
show: false,
}, {
label: this.$t("asset.tableTitle.principal"),
prop: 'principal',
show: false,
}, {
label: this.$t("asset.tableTitle.principalTel"),
prop: 'tel',
show: false,
width: 115
}, {
label: this.$t('config.account.option'),
prop: 'option',
show: true,
width: 150,
fixed:'right'
}],
tableData: [],
pageObj: {
pageNo: 1,
2020-12-17 11:07:57 +08:00
pageSize: this.$CONSTANTS.defaultPageSize,
total: 0,
idcId: '',
idcIds: ''
},
assetPingSwitch: localStorage.getItem('nz-sys-asset-ping-switch'),
2020-09-08 11:18:18 +08:00
tagKeys:[],
2020-12-14 20:25:24 +08:00
scrollbarWrap: null
}
},
computed:{
headerCurrentDc:function(){
return this.$store.state.currentDc;
}
},
watch: {
'bottomBox.showSubList': function(n) {
let vm = this;
this.$bottomBoxWindow.showSubListWatch(vm, n);
},
'bottomBox.asset': {
deep: true,
handler(n) {
if (n.id) {
this.bottomBox.assetDetail = this.convertToDetail(n);
if (n.model.id) {
n.modelId = n.model.id;
}
}
}
},
'tools.customTableTitle':{
deep:true,
immediate:true,
handler(n,o){
let pingTitle=n.find(item=>{return item.prop=='pingStatus'})
if(pingTitle){
this.dispatchEvent('asset-ping-switch-change',pingTitle.show)
}
}
},
2020-12-30 11:39:37 +08:00
tableData: {
deep: true,
handler(n) {
if (n.length === 0 && this.pageObj.pageNo > 1) {
this.pageNo(this.pageObj.pageNo-1);
}else if(n.length === 0 && this.pageObj.pageNo === 1){
this.afterTableListChange();
}
}
}
},
methods: {
fullScreen() {
let vm = this;
this.$bottomBoxWindow.fullScreen(vm);
},
exitFullScreen() {
let vm = this;
this.$bottomBoxWindow.exitFullScreen(vm);
},
listResize(e) {
let vm = this;
this.$bottomBoxWindow.listResize(vm, e);
},
cli([id,host,account]){
const consoleParam = {
id: id,
host: host,
accountId: account.id,
port: account.port,
};
this.$store.commit('addConsole', consoleParam);
},
jumpToAlertMsg(asset) {
if (!this.hasButton('asset_alerts_view')) {
return;
}
this.bottomBox.targetTab = 'alertMessage';
this.bottomBox.asset = JSON.parse(JSON.stringify(asset));
this.bottomBox.showSubList = true;
},
2020-09-28 16:58:19 +08:00
checkSearchLabel(n, o) {
let nKeys = Object.keys(n);
let oKeys = Object.keys(o);
if (nKeys.length != oKeys.length) {
return true;
} else {
let flag = false;
nKeys.forEach(key => {
n[key] != o[key] && (flag = true);
});
return flag;
}
},
getTableData() {
2020-09-28 16:58:19 +08:00
let oldSearchLabel = JSON.parse(JSON.stringify(this.searchLabel));
this.searchLabel = Object.assign(this.searchLabel, this.pageObj);
delete this.searchLabel.total
this.tools.loading = true;
if(this.searchLabel.tags && this.searchLabel.tags!=''){
this.searchLabel.tags=encodeURIComponent(this.searchLabel.tags)
}
this.$get('asset', this.searchLabel).then(response => {
this.tools.loading = false;
if (response.code === 200) {
2020-11-21 11:27:55 +08:00
// response.data.list=response.data.list.concat(response.data.list,response.data.list,response.data.list,response.data.list,response.data.list,response.data.list,response.data.list)
this.tableData = response.data.list;
this.pageObj.total = response.data.total;
bus.$emit('asset-property-change');
2020-12-14 20:25:24 +08:00
if (!this.scrollbarWrap) {
2020-12-14 20:25:24 +08:00
this.$nextTick(() => {
this.scrollbarWrap = this.$refs.assetTable.bodyWrapper;
this.toTopBtnHandler(this.scrollbarWrap);
2020-12-14 20:25:24 +08:00
});
}
}
});
},
getUserData() {
return new Promise(resolve => {
this.$get('sys/user/list').then(response => {
if (response.code === 200) {
this.userData = response.data.list;
}
resolve(this.userData);
});
});
},
messageStyle(e) {
if (e.column.label == 'Alerts' || e.column.label == this.$t("asset.tableTitle.alerts")) {
if (e.row.alertNum > 0) {
2020-04-25 12:07:36 +08:00
return 'danger';
} else {
2020-04-25 12:07:36 +08:00
return 'success';
}
}
2020-10-15 17:12:55 +08:00
if(e.column.label == 'Module' || e.column.label == this.$t("asset.tableTitle.modules")){
2020-11-22 18:26:12 +08:00
if (e.row.state == 3) {
return 'suspended';
2020-10-15 17:12:55 +08:00
} else {
2020-11-22 18:26:12 +08:00
if (e.row.endpointDownNum > 0) {
return 'danger';
} else {
return 'success';
}
2020-10-15 17:12:55 +08:00
}
}
return '';
},
edit(asset) {
this.asset = JSON.parse(JSON.stringify(asset));
this.rightBox.show = true;
},
detail(asset) {
this.bottomBox.asset = JSON.parse(JSON.stringify(asset));
this.bottomBox.targetTab = "panel";
this.bottomBox.showSubList = true;
},
del(asset) {
this.$confirm(this.$t("tip.confirmDelete"), {
confirmButtonText: this.$t("tip.yes"),
cancelButtonText: this.$t("tip.no"),
type: 'warning'
}).then(() => {
this.$delete("asset?ids=" + asset.id).then(response => {
if (response.code === 200) {
this.$message({duration: 2000, type: 'success', message: this.$t("tip.deleteSuccess")});
2020-12-30 11:39:37 +08:00
this.getTableData()
} else {
this.$message.error(response.msg);
}
})
});
},
markOptionData(data) {
data.forEach(item => {
this.$set(item, 'isEdit', false);
this.$set(item, 'oldName', item.value);
this.$set(item, item.name, false)
this.$set(item, item.id, false)
this.$set(item, item.id + item.name, false)
})
},
showEndpoint(asset) {
if (!this.hasButton('asset_endpoint_view')) {
return;
}
this.bottomBox.asset = Object.assign({}, asset);
this.bottomBox.targetTab = "endpoint";
this.bottomBox.showSubList = true;
},
add() {
this.asset = this.newAsset();
this.rightBox.show = true;
},
batchEdit(){
this.rightBox.batchShow = true;
},
newAsset() {
return JSON.parse(JSON.stringify(this.blankAsset));
},
closeRightBox(refresh) {
this.rightBox.show = false;
this.rightBox.batchShow = false;
if (refresh) {
2020-12-30 11:39:37 +08:00
this.getTableData()
2020-09-08 11:18:18 +08:00
this.loadKeys();
}
},
afterTableListChange:function(){
bus.$emit('asset-list-change')
},
pageNo(val) {
this.pageObj.pageNo = val;
this.getTableData()
2020-08-03 21:33:13 +08:00
},
pageSize(val) {
this.pageObj.pageSize = val;
localStorage.setItem('nz-pageSize-' + localStorage.getItem('nz-username') + '-' + this.tableId, val);
this.getTableData();
},
getPrincipalName(data) {
for (let item in this.userData) {
if (this.userData[item].userId === data) {
return this.userData[item].username
}
}
},
returnData(data) {
if (data && data !== '--') {
return data;
} else if (data === '--') {
return '--';
} else {
return "--";
}
},
2020-10-30 15:16:25 +08:00
returnCabinet(start,end){//返回机柜u位信息
if(!start|| !end){
return ''
}
return `[${start}-${end}]`
2020-10-30 15:16:25 +08:00
},
2020-08-03 20:12:20 +08:00
closeAllPop() {
this.$refs.idcConfigBox.forEach((item) => {
item.show(false);
});
this.$refs.cabinetConfigBox.forEach((item) => {
item.show(false);
});
},
search(searchObj) {
let orderBy = '';
if(this.searchLabel.orderBy){
orderBy = this.searchLabel.orderBy
}
this.searchLabel = {};
this.pageObj.pageNo = 1;
for (let item in searchObj) {
if (searchObj[item]) {
this.$set(this.searchLabel, item, searchObj[item]);
}
}
if(orderBy){
this.$set(this.searchLabel, 'orderBy', orderBy);
}
if(this.$refs.assetTable&&this.$refs.assetTable.bodyWrapper){
this.$refs.assetTable.bodyWrapper.scrollTop = 0;
}
this.getTableData();
},
convertToDetail(obj) {
let 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 : "";
if (obj.accounts && obj.accounts.length > 0) {
let account = obj.accounts[0];
detail.protocol = account.protocol;
detail.account = account.user;
let loginType = "";
if (account.authType == 1) {
loginType = this.$t('asset.password');
} else if (account.authType == 2) {
loginType = this.$t('asset.ssh');
}
detail.loginType = loginType;
detail.port = account.port;
}
return detail;
},
formatPingTime:function(str){
if(!str || str == ''){
return this.$t('asset.assetStatPre')+this.$t('asset.assetStatDown');
}
let ds='-';
let ts=':';
2020-10-16 19:26:50 +08:00
let time=new Date(bus.UTCTimeToConfigTimezone(str));
let year=time.getFullYear();
let month=time.getMonth()+1 > 9 ? time.getMonth()+1 : ('0'+(time.getMonth()+1));
2020-04-27 19:00:36 +08:00
let day=time.getDate() > 9 ? time.getDate():('0'+time.getDate());
let hours=time.getHours() > 9? time.getHours():('0'+time.getHours());
let minutes=time.getMinutes() > 9 ?time.getMinutes():('0'+time.getMinutes());
let seconds=time.getSeconds() > 9 ? time.getSeconds():('0'+time.getSeconds());
return this.$t('asset.assetStatPre')+year+ds+month+ds+day+' '+hours+ts+minutes+ts+seconds;
},
// 数据排序
tableDataSort(item){
let orderBy='';
if(item.order==='ascending'){
orderBy=item.prop;
}
if(item.order==='descending'){
orderBy='-'+item.prop;
}
this.$set(this.searchLabel, "orderBy", orderBy);
this.getTableData();
},
2020-08-03 21:33:13 +08:00
initEvent() {
bus.$on("asset-filter-change", (column, content) => {
this.pageObj.pageNo=1;
2020-09-28 16:58:19 +08:00
let oldPageObj = JSON.parse(JSON.stringify(this.pageObj));
if(column == 'multiParam'){
let $self=this;
if(content instanceof Array && content.length>0){
content.forEach(item=>{
$self.pageObj[item.key] = item.value;
})
}
}else{
this.pageObj[column] = content;
}
// let isSame = this.checkSearchLabel(JSON.parse(JSON.stringify(this.pageObj)), oldPageObj);
// isSame && this.getTableData();
this.getTableData();
2020-08-03 21:33:13 +08:00
});
bus.$on('alert-message-change',()=>{
this.getTableData()
2020-12-14 20:25:24 +08:00
});
},
dispatchEvent(event,param){
this.$nextTick(()=>{
bus.$emit(event,param)
})
2020-09-08 11:18:18 +08:00
},
loadKeys:function(){
this.$get('/asset/tagKey').then(res=>{
if(res.code == 200){
this.tagKeys = res.data.list.map(item=>{
return {label:item,prop:'tags',show:false,allowed: true,type:'tag'}
})
this.resetTableTitle()
}
})
},
resetTableTitle:function(){
let title = this.tools.customTableTitle;
let tableTitle = title.slice(0,this.tableTitle.length);
let tagTitle = title.slice(this.tableTitle.length,title.length);
let $self=this;
let newTags = this.tagKeys.filter(item=>{ return !tagTitle.find(t =>{return item.label == t.label})})
let keepTags = tagTitle.filter(item=>{ return $self.tagKeys.find(t =>{return item.label == t.label})})
let result = tableTitle.concat([{label:'Tag',show:false,NotSet:true,type:'title',prop:'table-tag'}])
result = result.concat(keepTags).concat(newTags)
this.tools.customTableTitle = JSON.parse(JSON.stringify(result))
},
filterTags:function(scope){
let tag=scope.column.label.split(' [Tag]')[0]
let tagVals=scope.row.tags
if(tagVals){
let showTag=tagVals.find(item=>{return item.tag == tag})
if(showTag){
return showTag.value
}
}
2020-11-20 15:02:36 +08:00
},
},
created(){
//是否存在分页缓存
let pageSize = localStorage.getItem('nz-pageSize-' + localStorage.getItem('nz-username') + '-' + this.tableId);
if (pageSize != 'undefined' && pageSize != null) {
this.pageObj.pageSize = pageSize
}
},
mounted() {
//初始化表头
let tableTitle = 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;
this.tableTitleReset(this.tableTitle,tableTitle);
if (this.assetPingSwitch == 'off') {
this.dispatchEvent('asset-ping-switch-change',false)
for (let i in tableTitle) {
let label = tableTitle[i];
if (label.prop == 'pingStatus') {
label.show=false;
label.NotSet=true;
break;
}
}
}else{
for (let i in tableTitle) {
let label = tableTitle[i];
if (label.prop == 'pingStatus') {
label.show=true;
label.NotSet=false;
break;
}
}
}
this.tools.customTableTitle = tableTitle;
2020-09-08 11:18:18 +08:00
this.loadKeys();
//初始化数据
2020-07-28 14:26:51 +08:00
this.getUserData();
this.pageObj.idcId=this.headerCurrentDc;
2020-08-03 20:12:20 +08:00
this.getTableData();
//是否存在分页缓存
let pageSize = localStorage.getItem('nz-pageSize-' + localStorage.getItem('nz-username') + '-' + this.tableId);
if (pageSize != 'undefined' && pageSize != null) {
this.pageObj.pageSize = pageSize
}
2020-08-03 21:33:13 +08:00
this.initEvent();
2020-11-20 15:02:36 +08:00
},
2020-12-14 20:25:24 +08:00
beforeDestroy() {
bus.$off("asset-filter-change");
bus.$off('alert-message-change');
2020-12-14 20:25:24 +08:00
this.scrollbarWrap.removeEventListener('scroll', bus.debounce);
}
}
</script>
2020-01-13 21:42:14 +08:00
<style scoped lang="scss">
.asset {
height: 100%;
}
/deep/ .el-table .cell.el-tooltip{
min-width: 88px;
}
.linkSup{
position: absolute;
top: -15px;
left: 17px;
}
.link{
position: relative;
}
2020-08-03 20:12:20 +08:00
.mark{
vertical-align: middle;
display: inline-flex;
}
2020-09-11 14:09:57 +08:00
.tag-header{
display: flex; width: 100%; align-items: center; flex-wrap: nowrap;
.tag-value{
max-width: calc(100% - 40px); min-width: 20px; overflow: hidden; white-space: nowrap; text-overflow: ellipsis;
}
.tag-mark{
color:orange; width: 42px;
2020-09-11 14:09:57 +08:00
}
}
/*/deep/ .sidebar-info-item .el-checkbox__label{*/
/*padding-right: 15px;*/
/*width: calc(100% - 32px);*/
/*}*/
</style>