2019-11-29 15:00:26 +08:00
|
|
|
|
<template>
|
2020-01-19 18:31:18 +08:00
|
|
|
|
<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"
|
2020-10-29 19:11:46 +08:00
|
|
|
|
@afterImport="afterTableListChange"
|
2020-08-03 20:12:20 +08:00
|
|
|
|
>
|
|
|
|
|
|
<template slot="optionZone">
|
|
|
|
|
|
<button @click.stop="add" :title="$t('overall.createAsset')" class="nz-btn nz-btn-size-normal nz-btn-style-light" id="asset-create-asset">
|
|
|
|
|
|
<i class="nz-icon nz-icon-create-square"></i></button>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
</export-excel>
|
2020-10-29 19:11:46 +08:00
|
|
|
|
<delete-button :delete-objs="batchDeleteObjs" api="asset" @after="afterTableListChange"></delete-button>
|
2020-07-15 10:58:45 +08:00
|
|
|
|
</div>
|
2020-08-03 20:12:20 +08:00
|
|
|
|
<div class="pagination-top pagination-top-hide display-none"></div>
|
2020-07-15 10:58:45 +08:00
|
|
|
|
</div>
|
2020-08-04 21:53:06 +08:00
|
|
|
|
<!-- 自定义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"
|
|
|
|
|
|
style="width: 100%;"
|
|
|
|
|
|
:data="tableData"
|
|
|
|
|
|
v-scrollBar:el-table="'large'"
|
|
|
|
|
|
v-show="bottomBox.mainResizeShow"
|
|
|
|
|
|
border
|
|
|
|
|
|
v-loading="tools.loading"
|
|
|
|
|
|
tooltip-effect="light"
|
|
|
|
|
|
ref="assetTable"
|
|
|
|
|
|
:cell-class-name="messageStyle"
|
|
|
|
|
|
@sort-change="tableDataSort"
|
2020-09-24 11:38:13 +08:00
|
|
|
|
@row-dblclick="detail"
|
2020-10-29 19:11:46 +08:00
|
|
|
|
@selection-change="(selection)=>{this.batchDeleteObjs=selection}"
|
2020-08-03 20:12:20 +08:00
|
|
|
|
>
|
2020-10-29 19:11:46 +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="false"
|
2020-08-04 21:53:06 +08:00
|
|
|
|
v-for="(item, index) in tools.customTableTitle"
|
2020-08-03 20:12:20 +08:00
|
|
|
|
v-if="item.show"
|
|
|
|
|
|
:width="item.width"
|
|
|
|
|
|
:key="`col_${index}`"
|
|
|
|
|
|
:label="item.label"
|
|
|
|
|
|
:fixed="item.fixed"
|
|
|
|
|
|
:show-overflow-tooltip="item.prop != 'Alert' || item.prop != 'Module'"
|
|
|
|
|
|
min-width="110px"
|
|
|
|
|
|
:class-name="item.prop == 'option' ? 'content-right-options' : ''"
|
2020-08-07 11:11:43 +08:00
|
|
|
|
: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"> [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'">
|
|
|
|
|
|
<span>{{scope.row.state==1 ? $t('asset.inStock') : $t('asset.notInStock')}}</span>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div v-if="item.prop == 'pingStatus'">
|
|
|
|
|
|
<el-popover
|
|
|
|
|
|
placement="right"
|
|
|
|
|
|
width="200"
|
|
|
|
|
|
trigger="hover"
|
|
|
|
|
|
:content="formatPingTime(scope.row.pingLastUpdate)">
|
|
|
|
|
|
<div slot="reference" style="width: 20px">
|
|
|
|
|
|
<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>
|
2020-03-24 19:22:24 +08:00
|
|
|
|
</div>
|
2020-08-03 20:12:20 +08:00
|
|
|
|
</el-popover>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<template v-if="item.prop=='Module'">
|
2020-10-15 17:12:55 +08:00
|
|
|
|
<el-tooltip placement="right" effect="light">
|
|
|
|
|
|
<div slot="content">
|
|
|
|
|
|
{{scope.row.endpointNum-scope.row.endpointDownNum}} {{$t('asset.endpointUpNum')}}<br/>
|
|
|
|
|
|
{{scope.row.endpointNum}} {{$t('asset.endpointNum')}}
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<span class="link" @click="showEndpoint(scope.row)" style="padding: 2px 8px">{{scope.row.endpointNum-scope.row.endpointDownNum}}/{{scope.row.endpointNum}}</span>
|
|
|
|
|
|
</el-tooltip>
|
2020-08-03 20:12:20 +08:00
|
|
|
|
</template>
|
|
|
|
|
|
<template v-if="item.prop=='Alert'">
|
|
|
|
|
|
<el-tooltip :content="scope.row.alertNum+' '+$t('overall.active')" placement="top" effect="light" :disabled=" scope.row.alertNum < 99">
|
|
|
|
|
|
<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')}}
|
2020-01-06 20:57:49 +08:00
|
|
|
|
</span>
|
2020-08-03 20:12:20 +08:00
|
|
|
|
</el-tooltip>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
<div v-if="item.prop=='dataCenter'">
|
|
|
|
|
|
<span >{{scope.row.idc.name}}</span>
|
2020-07-15 10:58:45 +08:00
|
|
|
|
</div>
|
2020-08-03 20:12:20 +08:00
|
|
|
|
<template v-if="item.prop=='cabinet'">
|
2020-10-30 15:35:39 +08:00
|
|
|
|
<span v-if="scope.row.cabinet && scope.row.cabinet != '--'">{{returnData(scope.row.cabinet).name}} {{returnCabinet( scope.row.cabinetStart, scope.row.cabinetEnd)}}</span>
|
2020-08-03 20:12:20 +08:00
|
|
|
|
<span v-else >{{returnData(scope.row.cabinet)}}</span>
|
|
|
|
|
|
</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'">
|
|
|
|
|
|
<span>{{returnData(scope.row.purchaseDate)}}</span>
|
|
|
|
|
|
</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>
|
|
|
|
|
|
|
|
|
|
|
|
<span :title="$t('overall.edit')" @click.stop="edit(scope.row)" class="content-right-option" :id="'asset-edit-'+scope.row.id"><i
|
|
|
|
|
|
class="nz-icon nz-icon-edit"></i>
|
|
|
|
|
|
</span>
|
|
|
|
|
|
|
|
|
|
|
|
<span :title="$t('overall.delete')" @click.stop="del(scope.row)" class="content-right-option" :id="'asset-del-'+scope.row.id"><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>
|
|
|
|
|
|
|
|
|
|
|
|
<el-dropdown trigger="hover" @command="cli">
|
|
|
|
|
|
<span title="CLI" class="content-right-option" :id="'asset-ssh-'+scope.row.id"><i
|
2020-09-22 14:34:12 +08:00
|
|
|
|
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 v-for="(account, index) in scope.row.accounts" v-if="account && account.protocol != 'SNMP'" :key="index" :command="[scope.row.id ,scope.row.host, account]">{{account.protocol}}</el-dropdown-item>
|
|
|
|
|
|
</el-dropdown-menu>
|
|
|
|
|
|
</el-dropdown>
|
|
|
|
|
|
|
|
|
|
|
|
</template>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
</el-table-column>
|
|
|
|
|
|
<el-table-column width="28" fixed="right" :resizable="false">
|
|
|
|
|
|
<template slot="header" slot-scope="scope">
|
2020-08-04 21:53:06 +08:00
|
|
|
|
<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>
|
|
|
|
|
|
<template v-slot="scope">
|
|
|
|
|
|
<button v-if="scope.$index == 0" class="to-top" :style="{top: tools.toTopBtnTop}" :class="{'to-top-is-hover': tools.tableHover}" v-show="tools.showTopBtn && bottomBox.mainResizeShow" @click="$toTop('ps', 0)"><i class="nz-icon nz-icon-top"></i></button>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
</el-table-column>
|
|
|
|
|
|
</el-table>
|
|
|
|
|
|
<div class="pagination-bottom" v-show="!bottomBox.showSubList">
|
|
|
|
|
|
<Pagination :tableId="tableId" :pageObj="pageObj" @pageNo='pageNo' @pageSize='pageSize' ref="Pagination"></Pagination>
|
2020-03-24 19:22:24 +08:00
|
|
|
|
</div>
|
2020-08-03 20:12:20 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
<transition name="el-zoom-in-bottom">
|
|
|
|
|
|
<bottom-box v-if="bottomBox.showSubList" :sub-resize-show="bottomBox.subResizeShow" :obj="bottomBox.asset" :isFullScreen="bottomBox.isFullScreen" :from="'asset'" :targetTab.sync="bottomBox.targetTab" :detail="bottomBox.assetDetail"
|
|
|
|
|
|
@reload="getTableData"
|
|
|
|
|
|
@closeSubList="bottomBox.showSubList = false"
|
|
|
|
|
|
@fullScreen="fullScreen"
|
|
|
|
|
|
@exitFullScreen="exitFullScreen"
|
|
|
|
|
|
@listResize="listResize" ></bottom-box>
|
|
|
|
|
|
</transition>
|
2020-07-24 19:22:52 +08:00
|
|
|
|
<transition name="right-box">
|
2020-09-16 10:31:15 +08:00
|
|
|
|
<asset-box v-if="rightBox.show" :asset="asset" @refresh="getTableData" ref="assetBox" @close="closeRightBox"></asset-box>
|
2020-07-24 19:22:52 +08:00
|
|
|
|
</transition>
|
2020-01-02 18:13:01 +08:00
|
|
|
|
</div>
|
2019-11-29 15:00:26 +08:00
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
|
|
<script>
|
2020-02-11 11:30:56 +08:00
|
|
|
|
import bus from "../../../libs/bus";
|
2020-02-26 15:38:56 +08:00
|
|
|
|
import exportXLSX from "../../common/exportXLSX";
|
2020-02-28 08:29:52 +08:00
|
|
|
|
import endpointStatusPop from "./endpointStatusPop";
|
2020-10-29 19:11:46 +08:00
|
|
|
|
import deleteButton from "../../common/deleteButton";
|
2020-01-02 18:13:01 +08:00
|
|
|
|
export default {
|
|
|
|
|
|
name: "asset",
|
2020-02-28 08:29:52 +08:00
|
|
|
|
components:{
|
|
|
|
|
|
'export-excel':exportXLSX,
|
2020-03-02 17:44:52 +08:00
|
|
|
|
'endpoint-status-pop':endpointStatusPop,
|
2020-10-29 19:11:46 +08:00
|
|
|
|
'delete-button':deleteButton,
|
2020-02-28 08:29:52 +08:00
|
|
|
|
},
|
2020-01-02 18:13:01 +08:00
|
|
|
|
data() {
|
|
|
|
|
|
return {
|
2020-07-24 19:22:52 +08:00
|
|
|
|
//侧滑
|
|
|
|
|
|
rightBox: {
|
|
|
|
|
|
show: false,
|
|
|
|
|
|
},
|
2020-03-28 20:44:29 +08:00
|
|
|
|
/*二级页面相关*/
|
2020-07-24 19:22:52 +08:00
|
|
|
|
bottomBox: {
|
|
|
|
|
|
assetDetail: {}, //asset详情
|
|
|
|
|
|
asset: {}, //告警信息对应的asset对象
|
|
|
|
|
|
mainResizeShow: true, //dom高度改变时是否展示|隐藏
|
|
|
|
|
|
subResizeShow: true,
|
|
|
|
|
|
isFullScreen: false, //全屏状态
|
|
|
|
|
|
showSubList: false, //是否显示二级列表
|
|
|
|
|
|
targetTab: '', //显示二级列表中的哪个页签
|
|
|
|
|
|
inTransform: false, //搜索框相关,搜索条件下拉框是否在transform里
|
|
|
|
|
|
},
|
|
|
|
|
|
|
2020-03-24 19:22:24 +08:00
|
|
|
|
mainTableHeight: this.$tableHeight.normal, //主列表table高度
|
2020-03-28 20:44:29 +08:00
|
|
|
|
|
2020-07-24 19:22:52 +08:00
|
|
|
|
/*工具参数*/
|
|
|
|
|
|
tools: {
|
|
|
|
|
|
loading: false, //是否显示table加载动画
|
|
|
|
|
|
toTopBtnTop: this.$tableHeight.toTopBtnTop, //to-top按钮的top属性
|
|
|
|
|
|
tableHover: false, //控制滚动条和top按钮同时出现
|
|
|
|
|
|
showTopBtn: false, //显示To top按钮
|
2020-08-04 21:53:06 +08:00
|
|
|
|
showCustomTableTitle: false, //自定义列弹框是否显示
|
|
|
|
|
|
customTableTitle: [], //自定义列工具的数据
|
2020-07-24 19:22:52 +08:00
|
|
|
|
},
|
2020-10-29 19:11:46 +08:00
|
|
|
|
batchDeleteObjs:[],
|
2020-07-24 19:22:52 +08:00
|
|
|
|
asset: {},
|
|
|
|
|
|
blankAsset: {
|
|
|
|
|
|
id: '',
|
|
|
|
|
|
sn: '',
|
|
|
|
|
|
host: '',
|
|
|
|
|
|
state: '',
|
|
|
|
|
|
purchaseDate: '',
|
|
|
|
|
|
idcId: '',
|
|
|
|
|
|
cabinetId: '',
|
|
|
|
|
|
modelId: '',
|
|
|
|
|
|
model: {type: {code: ""}},
|
|
|
|
|
|
assetType: '',
|
|
|
|
|
|
impi:{
|
|
|
|
|
|
host:'',
|
|
|
|
|
|
port:'',
|
|
|
|
|
|
},
|
|
|
|
|
|
tags: [],
|
|
|
|
|
|
accounts: [],
|
|
|
|
|
|
},
|
2020-03-13 12:20:02 +08:00
|
|
|
|
tableId: 'assetTable', //需要分页的table的id,用于记录每页数量
|
2020-01-03 18:10:26 +08:00
|
|
|
|
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
|
2020-01-09 14:57:44 +08:00
|
|
|
|
},{
|
|
|
|
|
|
id: 22,
|
2020-07-24 19:22:52 +08:00
|
|
|
|
name: this.$t("asset.state"),
|
2020-01-09 14:57:44 +08:00
|
|
|
|
type: 'select',
|
|
|
|
|
|
label: 'assetState',
|
|
|
|
|
|
disabled: false
|
2020-02-06 17:44:07 +08:00
|
|
|
|
},{
|
2020-05-19 18:22:22 +08:00
|
|
|
|
id: 23,
|
2020-02-06 17:44:07 +08:00
|
|
|
|
name: "pingStatus",
|
|
|
|
|
|
type: 'select',
|
|
|
|
|
|
label: 'pingStatus',
|
|
|
|
|
|
disabled: false
|
2020-01-03 18:10:26 +08:00
|
|
|
|
}],
|
|
|
|
|
|
},
|
2020-07-24 19:22:52 +08:00
|
|
|
|
|
2020-01-03 18:10:26 +08:00
|
|
|
|
searchLabel: {}, //搜索参数
|
2020-07-24 19:22:52 +08:00
|
|
|
|
activeType: 'dataCenter',
|
|
|
|
|
|
|
2020-01-02 18:13:01 +08:00
|
|
|
|
tableTitle: [
|
2020-02-17 18:41:38 +08:00
|
|
|
|
{
|
|
|
|
|
|
label: this.$t("asset.tableTitle.host"),
|
|
|
|
|
|
prop: 'HOST',
|
|
|
|
|
|
show: true,
|
|
|
|
|
|
width: 130,
|
|
|
|
|
|
fixed:'left'
|
|
|
|
|
|
},
|
2020-01-02 18:13:01 +08:00
|
|
|
|
{
|
|
|
|
|
|
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
|
2020-01-02 18:13:01 +08:00
|
|
|
|
}, {
|
|
|
|
|
|
label: this.$t("asset.tableTitle.assetType"),
|
2020-01-16 15:48:49 +08:00
|
|
|
|
prop: 'assetType',
|
2020-01-02 18:13:01 +08:00
|
|
|
|
show: true,
|
|
|
|
|
|
}, {
|
|
|
|
|
|
label: this.$t("asset.tableTitle.device"),
|
|
|
|
|
|
prop: 'SN',
|
|
|
|
|
|
show: true,
|
2020-01-17 16:06:35 +08:00
|
|
|
|
width: 130
|
2020-02-17 18:41:38 +08:00
|
|
|
|
}, {
|
2020-01-02 18:13:01 +08:00
|
|
|
|
label: this.$t("asset.tableTitle.assetState"),
|
2020-01-09 14:57:44 +08:00
|
|
|
|
prop: 'state',
|
2020-01-02 18:13:01 +08:00
|
|
|
|
show: true,
|
|
|
|
|
|
}, {
|
2020-02-06 17:44:07 +08:00
|
|
|
|
label:this.$t('asset.tableTitle.assetPing'),
|
2020-02-07 11:22:08 +08:00
|
|
|
|
prop:'pingStatus',
|
2020-02-06 17:44:07 +08:00
|
|
|
|
show:true,
|
|
|
|
|
|
},{
|
2020-01-10 20:09:33 +08:00
|
|
|
|
label: this.$t("asset.tableTitle.modules"),
|
2020-01-02 18:13:01 +08:00
|
|
|
|
prop: 'Module',
|
|
|
|
|
|
show: true,
|
2020-01-19 18:31:18 +08:00
|
|
|
|
width: 105
|
2020-01-02 18:13:01 +08:00
|
|
|
|
}, {
|
2020-01-09 14:57:44 +08:00
|
|
|
|
label: this.$t("asset.tableTitle.alerts"),
|
2020-01-02 18:13:01 +08:00
|
|
|
|
prop: 'Alert',
|
|
|
|
|
|
show: true,
|
2020-08-06 16:31:51 +08:00
|
|
|
|
width: 100
|
2020-01-02 18:13:01 +08:00
|
|
|
|
}, {
|
|
|
|
|
|
label: this.$t("asset.tableTitle.dataCenter"),
|
2020-01-09 14:57:44 +08:00
|
|
|
|
prop: 'dataCenter',
|
2020-01-02 18:13:01 +08:00
|
|
|
|
show: true,
|
|
|
|
|
|
}, {
|
|
|
|
|
|
label: this.$t("asset.tableTitle.cabinet"),
|
2020-01-09 14:57:44 +08:00
|
|
|
|
prop: 'cabinet',
|
2020-01-02 18:13:01 +08:00
|
|
|
|
show: true,
|
|
|
|
|
|
}, {
|
|
|
|
|
|
label: this.$t("asset.tableTitle.model"),
|
2020-01-09 14:57:44 +08:00
|
|
|
|
prop: 'model',
|
2020-01-02 18:13:01 +08:00
|
|
|
|
show: true,
|
|
|
|
|
|
}, {
|
2020-04-02 20:57:43 +08:00
|
|
|
|
label: this.$t("asset.tableTitle.vendor"),
|
2020-01-09 14:57:44 +08:00
|
|
|
|
prop: 'vendor',
|
2020-01-02 18:13:01 +08:00
|
|
|
|
show: true,
|
|
|
|
|
|
}, {
|
|
|
|
|
|
label: this.$t("asset.tableTitle.procurementDate"),
|
2020-01-16 15:48:49 +08:00
|
|
|
|
prop: 'purchaseDate',
|
2020-04-14 19:33:57 +08:00
|
|
|
|
show: false,
|
2020-01-02 18:13:01 +08:00
|
|
|
|
}, {
|
|
|
|
|
|
label: this.$t("asset.tableTitle.principal"),
|
2020-01-09 14:57:44 +08:00
|
|
|
|
prop: 'principal',
|
2020-02-28 08:29:52 +08:00
|
|
|
|
show: false,
|
2020-01-02 18:13:01 +08:00
|
|
|
|
}, {
|
|
|
|
|
|
label: this.$t("asset.tableTitle.principalTel"),
|
2020-01-09 14:57:44 +08:00
|
|
|
|
prop: 'tel',
|
2020-02-28 08:29:52 +08:00
|
|
|
|
show: false,
|
2020-01-10 20:09:33 +08:00
|
|
|
|
width: 115
|
2020-01-02 18:13:01 +08:00
|
|
|
|
}, {
|
|
|
|
|
|
label: this.$t('config.account.option'),
|
|
|
|
|
|
prop: 'option',
|
|
|
|
|
|
show: true,
|
2020-02-18 11:05:57 +08:00
|
|
|
|
width: 150,
|
2020-02-17 18:41:38 +08:00
|
|
|
|
fixed:'right'
|
2020-01-02 18:13:01 +08:00
|
|
|
|
}],
|
|
|
|
|
|
tableData: [],
|
2020-07-24 19:22:52 +08:00
|
|
|
|
|
2020-01-02 18:13:01 +08:00
|
|
|
|
pageObj: {
|
|
|
|
|
|
pageNo: 1,
|
2020-07-13 17:26:06 +08:00
|
|
|
|
pageSize: 50,
|
2020-01-02 18:13:01 +08:00
|
|
|
|
total: 0,
|
|
|
|
|
|
idcId: '',
|
|
|
|
|
|
idcIds: ''
|
|
|
|
|
|
},
|
2020-07-24 19:22:52 +08:00
|
|
|
|
|
|
|
|
|
|
assetPingSwitch: localStorage.getItem('nz-sys-asset-ping-switch'),
|
2020-09-08 11:18:18 +08:00
|
|
|
|
tagKeys:[],
|
2020-01-02 18:13:01 +08:00
|
|
|
|
}
|
2019-12-26 17:28:04 +08:00
|
|
|
|
},
|
2020-09-14 17:20:14 +08:00
|
|
|
|
computed:{
|
|
|
|
|
|
headerCurrentDc:function(){
|
|
|
|
|
|
return this.$store.state.currentDc;
|
|
|
|
|
|
}
|
|
|
|
|
|
},
|
2020-01-02 18:13:01 +08:00
|
|
|
|
watch: {
|
2020-07-24 19:22:52 +08:00
|
|
|
|
'bottomBox.showSubList': function(n) {
|
|
|
|
|
|
let vm = this;
|
2020-03-30 14:14:09 +08:00
|
|
|
|
this.$bottomBoxWindow.showSubListWatch(vm, n);
|
2020-03-28 20:44:29 +08:00
|
|
|
|
},
|
2020-07-24 19:22:52 +08:00
|
|
|
|
'bottomBox.asset': {
|
2020-03-28 20:44:29 +08:00
|
|
|
|
deep: true,
|
|
|
|
|
|
handler(n) {
|
2020-07-24 19:22:52 +08:00
|
|
|
|
if (n.id) {
|
|
|
|
|
|
this.bottomBox.assetDetail = this.convertToDetail(n);
|
|
|
|
|
|
if (n.model.id) {
|
|
|
|
|
|
n.modelId = n.model.id;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2020-03-28 20:44:29 +08:00
|
|
|
|
}
|
|
|
|
|
|
},
|
2020-08-28 16:28:06 +08:00
|
|
|
|
'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)
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2019-12-18 16:55:49 +08:00
|
|
|
|
},
|
2020-01-02 18:13:01 +08:00
|
|
|
|
methods: {
|
2020-03-30 14:14:09 +08:00
|
|
|
|
fullScreen() {
|
2020-07-24 19:22:52 +08:00
|
|
|
|
let vm = this;
|
2020-03-30 14:14:09 +08:00
|
|
|
|
this.$bottomBoxWindow.fullScreen(vm);
|
2020-03-24 19:22:24 +08:00
|
|
|
|
},
|
|
|
|
|
|
exitFullScreen() {
|
2020-07-24 19:22:52 +08:00
|
|
|
|
let vm = this;
|
2020-03-30 14:14:09 +08:00
|
|
|
|
this.$bottomBoxWindow.exitFullScreen(vm);
|
2020-03-24 19:22:24 +08:00
|
|
|
|
},
|
2020-03-30 14:14:09 +08:00
|
|
|
|
listResize(e) {
|
2020-07-24 19:22:52 +08:00
|
|
|
|
let vm = this;
|
2020-03-30 14:14:09 +08:00
|
|
|
|
this.$bottomBoxWindow.listResize(vm, e);
|
2020-03-24 19:22:24 +08:00
|
|
|
|
},
|
2020-06-23 18:46:52 +08:00
|
|
|
|
cli([id,host,account]){
|
2020-03-09 19:47:15 +08:00
|
|
|
|
const consoleParam = {
|
2020-06-23 18:46:52 +08:00
|
|
|
|
id: id,
|
|
|
|
|
|
host: host,
|
|
|
|
|
|
accountId: account.id,
|
|
|
|
|
|
port: account.port,
|
2020-07-24 19:22:52 +08:00
|
|
|
|
};
|
2020-06-23 18:46:52 +08:00
|
|
|
|
this.$store.commit('addConsole', consoleParam);
|
2020-03-02 17:44:52 +08:00
|
|
|
|
},
|
2020-03-24 19:22:24 +08:00
|
|
|
|
jumpToAlertMsg(asset) {
|
2020-07-24 19:22:52 +08:00
|
|
|
|
this.bottomBox.targetTab = 'alertMessage';
|
|
|
|
|
|
this.bottomBox.asset = JSON.parse(JSON.stringify(asset));
|
|
|
|
|
|
this.bottomBox.showSubList = true;
|
2020-01-10 20:09:33 +08:00
|
|
|
|
},
|
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;
|
|
|
|
|
|
}
|
|
|
|
|
|
},
|
2020-07-24 19:22:52 +08:00
|
|
|
|
getTableData() {
|
2020-09-28 16:58:19 +08:00
|
|
|
|
let oldSearchLabel = JSON.parse(JSON.stringify(this.searchLabel));
|
2020-01-09 14:57:44 +08:00
|
|
|
|
this.searchLabel = Object.assign(this.searchLabel, this.pageObj);
|
2020-07-24 19:22:52 +08:00
|
|
|
|
this.tools.loading = true;
|
2020-09-21 14:05:06 +08:00
|
|
|
|
if(this.searchLabel.tags && this.searchLabel.tags!=''){
|
|
|
|
|
|
this.searchLabel.tags=encodeURIComponent(this.searchLabel.tags)
|
|
|
|
|
|
}
|
2020-01-08 09:16:34 +08:00
|
|
|
|
this.$get('asset', this.searchLabel).then(response => {
|
2020-07-24 19:22:52 +08:00
|
|
|
|
this.tools.loading = false;
|
2020-01-02 18:13:01 +08:00
|
|
|
|
if (response.code === 200) {
|
|
|
|
|
|
this.tableData = response.data.list;
|
|
|
|
|
|
this.pageObj.total = response.data.total
|
|
|
|
|
|
}
|
2020-01-09 14:57:44 +08:00
|
|
|
|
});
|
2020-01-02 18:13:01 +08:00
|
|
|
|
},
|
|
|
|
|
|
getUserData() {
|
2020-07-24 19:22:52 +08:00
|
|
|
|
return new Promise(resolve => {
|
|
|
|
|
|
this.$get('sys/user/list').then(response => {
|
|
|
|
|
|
if (response.code === 200) {
|
|
|
|
|
|
this.userData = response.data.list;
|
|
|
|
|
|
}
|
|
|
|
|
|
resolve(this.userData);
|
|
|
|
|
|
});
|
|
|
|
|
|
});
|
2020-01-02 18:13:01 +08:00
|
|
|
|
},
|
2020-04-25 10:47:21 +08:00
|
|
|
|
messageStyle(e) {
|
2020-07-22 16:33:53 +08:00
|
|
|
|
if (e.column.label == 'Alerts' || e.column.label == this.$t("asset.tableTitle.alerts")) {
|
2020-04-25 10:47:21 +08:00
|
|
|
|
if (e.row.alertNum > 0) {
|
2020-04-25 12:07:36 +08:00
|
|
|
|
return 'danger';
|
2020-04-25 10:47:21 +08:00
|
|
|
|
} else {
|
2020-04-25 12:07:36 +08:00
|
|
|
|
return 'success';
|
2020-04-25 10:47:21 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|
2020-10-15 17:12:55 +08:00
|
|
|
|
if(e.column.label == 'Module' || e.column.label == this.$t("asset.tableTitle.modules")){
|
|
|
|
|
|
if (e.row.endpointDownNum > 0) {
|
|
|
|
|
|
return 'danger';
|
|
|
|
|
|
} else {
|
|
|
|
|
|
return 'success';
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2020-04-25 10:47:21 +08:00
|
|
|
|
return '';
|
|
|
|
|
|
},
|
2020-07-24 19:22:52 +08:00
|
|
|
|
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-10-29 19:11:46 +08:00
|
|
|
|
this.afterTableListChange()
|
2020-07-24 19:22:52 +08:00
|
|
|
|
} else {
|
|
|
|
|
|
this.$message.error(response.msg);
|
|
|
|
|
|
}
|
|
|
|
|
|
})
|
|
|
|
|
|
});
|
2020-01-02 18:13:01 +08:00
|
|
|
|
},
|
|
|
|
|
|
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)
|
|
|
|
|
|
})
|
|
|
|
|
|
},
|
2020-03-30 19:46:03 +08:00
|
|
|
|
showEndpoint(asset) {
|
2020-07-24 19:22:52 +08:00
|
|
|
|
this.bottomBox.asset = Object.assign({}, asset);
|
|
|
|
|
|
this.bottomBox.targetTab = "endpoint";
|
|
|
|
|
|
this.bottomBox.showSubList = true;
|
2020-03-30 19:46:03 +08:00
|
|
|
|
},
|
2020-07-24 19:22:52 +08:00
|
|
|
|
add() {
|
|
|
|
|
|
this.asset = this.newAsset();
|
|
|
|
|
|
this.rightBox.show = true;
|
2020-01-02 18:13:01 +08:00
|
|
|
|
},
|
2020-07-24 19:22:52 +08:00
|
|
|
|
newAsset() {
|
|
|
|
|
|
return JSON.parse(JSON.stringify(this.blankAsset));
|
2020-01-02 18:13:01 +08:00
|
|
|
|
},
|
2020-07-24 19:22:52 +08:00
|
|
|
|
closeRightBox(refresh) {
|
|
|
|
|
|
this.rightBox.show = false;
|
|
|
|
|
|
if (refresh) {
|
2020-10-29 19:11:46 +08:00
|
|
|
|
this.afterTableListChange()
|
2020-09-08 11:18:18 +08:00
|
|
|
|
this.loadKeys();
|
2019-12-13 16:43:24 +08:00
|
|
|
|
}
|
2020-01-15 22:21:19 +08:00
|
|
|
|
},
|
2020-10-29 19:11:46 +08:00
|
|
|
|
afterTableListChange:function(){
|
|
|
|
|
|
this.getTableData();
|
|
|
|
|
|
bus.$emit('asset-list-change')
|
|
|
|
|
|
},
|
2020-01-02 18:13:01 +08:00
|
|
|
|
pageNo(val) {
|
|
|
|
|
|
this.pageObj.pageNo = val;
|
2020-07-24 19:22:52 +08:00
|
|
|
|
this.getTableData()
|
2020-08-03 21:33:13 +08:00
|
|
|
|
},
|
2020-01-02 18:13:01 +08:00
|
|
|
|
pageSize(val) {
|
|
|
|
|
|
this.pageObj.pageSize = val;
|
2020-03-13 12:20:02 +08:00
|
|
|
|
localStorage.setItem('nz-pageSize-' + localStorage.getItem('nz-username') + '-' + this.tableId, val);
|
2020-07-24 19:22:52 +08:00
|
|
|
|
this.getTableData();
|
2020-01-02 18:13:01 +08:00
|
|
|
|
},
|
|
|
|
|
|
getPrincipalName(data) {
|
2020-07-24 19:22:52 +08:00
|
|
|
|
for (let item in this.userData) {
|
|
|
|
|
|
if (this.userData[item].userId === data) {
|
|
|
|
|
|
return this.userData[item].username
|
2019-12-23 10:16:36 +08:00
|
|
|
|
}
|
2019-12-18 16:55:49 +08:00
|
|
|
|
}
|
2020-01-02 18:13:01 +08:00
|
|
|
|
},
|
|
|
|
|
|
returnData(data) {
|
|
|
|
|
|
if (data && data !== '--') {
|
2020-02-17 18:41:38 +08:00
|
|
|
|
return data;
|
2020-01-02 18:13:01 +08:00
|
|
|
|
} else if (data === '--') {
|
2020-02-17 18:41:38 +08:00
|
|
|
|
return '--';
|
2020-01-02 18:13:01 +08:00
|
|
|
|
} else {
|
2020-02-17 18:41:38 +08:00
|
|
|
|
return "--";
|
2020-01-02 18:13:01 +08:00
|
|
|
|
}
|
|
|
|
|
|
},
|
2020-10-30 15:16:25 +08:00
|
|
|
|
returnCabinet(start,end){//返回机柜u位信息
|
|
|
|
|
|
if(!start|| !end){
|
|
|
|
|
|
return ''
|
|
|
|
|
|
}
|
2020-10-30 15:35:39 +08:00
|
|
|
|
return `[${start}-${end}]`
|
2020-10-30 15:16:25 +08:00
|
|
|
|
},
|
2020-08-03 20:12:20 +08:00
|
|
|
|
closeAllPop() {
|
2020-07-24 19:22:52 +08:00
|
|
|
|
this.$refs.idcConfigBox.forEach((item) => {
|
|
|
|
|
|
item.show(false);
|
|
|
|
|
|
});
|
|
|
|
|
|
this.$refs.cabinetConfigBox.forEach((item) => {
|
|
|
|
|
|
item.show(false);
|
|
|
|
|
|
});
|
2020-01-10 18:16:25 +08:00
|
|
|
|
},
|
2020-01-08 09:16:34 +08:00
|
|
|
|
search(searchObj) {
|
2020-07-24 19:22:52 +08:00
|
|
|
|
let orderBy = '';
|
2020-07-15 18:32:25 +08:00
|
|
|
|
if(this.searchLabel.orderBy){
|
2020-07-24 19:22:52 +08:00
|
|
|
|
orderBy = this.searchLabel.orderBy
|
2020-07-15 18:32:25 +08:00
|
|
|
|
}
|
2020-01-08 09:16:34 +08:00
|
|
|
|
this.searchLabel = {};
|
2020-01-09 14:57:44 +08:00
|
|
|
|
this.pageObj.pageNo = 1;
|
2020-01-08 09:16:34 +08:00
|
|
|
|
for (let item in searchObj) {
|
|
|
|
|
|
if (searchObj[item]) {
|
|
|
|
|
|
this.$set(this.searchLabel, item, searchObj[item]);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2020-07-15 18:32:25 +08:00
|
|
|
|
if(orderBy){
|
|
|
|
|
|
this.$set(this.searchLabel, 'orderBy', orderBy);
|
|
|
|
|
|
}
|
2020-07-24 19:22:52 +08:00
|
|
|
|
this.getTableData();
|
2020-02-26 15:38:56 +08:00
|
|
|
|
},
|
2020-03-28 20:44:29 +08:00
|
|
|
|
convertToDetail(obj) {
|
2020-06-17 19:52:03 +08:00
|
|
|
|
let detail = JSON.parse(JSON.stringify(obj));
|
2020-07-24 19:22:52 +08:00
|
|
|
|
detail.state = obj.state == 1 ? this.$t('asset.inStock'): this.$t('asset.notInStock');
|
2020-06-17 19:52:03 +08:00
|
|
|
|
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 : "";
|
2020-07-24 19:22:52 +08:00
|
|
|
|
if (obj.accounts && obj.accounts.length > 0) {
|
2020-06-17 19:52:03 +08:00
|
|
|
|
let account = obj.accounts[0];
|
|
|
|
|
|
detail.protocol = account.protocol;
|
|
|
|
|
|
detail.account = account.user;
|
|
|
|
|
|
let loginType = "";
|
|
|
|
|
|
if (account.authType == 1) {
|
2020-07-24 19:22:52 +08:00
|
|
|
|
loginType = this.$t('asset.password');
|
2020-06-17 19:52:03 +08:00
|
|
|
|
} else if (account.authType == 2) {
|
2020-07-24 19:22:52 +08:00
|
|
|
|
loginType = this.$t('asset.ssh');
|
2020-06-17 19:52:03 +08:00
|
|
|
|
}
|
|
|
|
|
|
detail.loginType = loginType;
|
|
|
|
|
|
detail.port = account.port;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2020-03-28 20:44:29 +08:00
|
|
|
|
return detail;
|
|
|
|
|
|
},
|
2020-02-26 15:38:56 +08:00
|
|
|
|
formatPingTime:function(str){
|
|
|
|
|
|
if(!str || str == ''){
|
2020-03-27 17:39:26 +08:00
|
|
|
|
return this.$t('asset.assetStatPre')+this.$t('asset.assetStatDown');
|
2020-02-26 15:38:56 +08:00
|
|
|
|
}
|
|
|
|
|
|
let ds='-';
|
|
|
|
|
|
let ts=':';
|
2020-10-16 19:26:50 +08:00
|
|
|
|
let time=new Date(bus.UTCTimeToConfigTimezone(str));
|
2020-02-26 15:38:56 +08:00
|
|
|
|
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());
|
2020-02-26 15:38:56 +08:00
|
|
|
|
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());
|
2020-03-27 17:39:26 +08:00
|
|
|
|
return this.$t('asset.assetStatPre')+year+ds+month+ds+day+' '+hours+ts+minutes+ts+seconds;
|
2020-02-26 15:38:56 +08:00
|
|
|
|
|
2020-07-15 18:32:25 +08:00
|
|
|
|
},
|
|
|
|
|
|
// 数据排序
|
|
|
|
|
|
tableDataSort(item){
|
|
|
|
|
|
let orderBy='';
|
|
|
|
|
|
if(item.order==='ascending'){
|
|
|
|
|
|
orderBy=item.prop;
|
|
|
|
|
|
}
|
|
|
|
|
|
if(item.order==='descending'){
|
|
|
|
|
|
orderBy='-'+item.prop;
|
|
|
|
|
|
}
|
|
|
|
|
|
this.$set(this.searchLabel, "orderBy", orderBy);
|
2020-07-24 19:22:52 +08:00
|
|
|
|
this.getTableData();
|
2020-07-17 19:00:00 +08:00
|
|
|
|
},
|
2020-08-03 21:33:13 +08:00
|
|
|
|
initEvent() {
|
|
|
|
|
|
bus.$on("asset-filter-change", (column, content) => {
|
2020-09-28 16:58:19 +08:00
|
|
|
|
let oldPageObj = JSON.parse(JSON.stringify(this.pageObj));
|
2020-09-16 10:31:15 +08:00
|
|
|
|
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;
|
|
|
|
|
|
}
|
2020-09-28 16:58:19 +08:00
|
|
|
|
let isSame = this.checkSearchLabel(JSON.parse(JSON.stringify(this.pageObj)), oldPageObj);
|
|
|
|
|
|
isSame && this.getTableData();
|
2020-08-03 21:33:13 +08:00
|
|
|
|
});
|
2020-08-28 16:28:06 +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-08-03 21:33:13 +08:00
|
|
|
|
}
|
2020-02-06 17:44:07 +08:00
|
|
|
|
},
|
2020-08-03 21:33:13 +08:00
|
|
|
|
|
2020-01-02 18:13:01 +08:00
|
|
|
|
mounted() {
|
2020-08-04 21:53:06 +08:00
|
|
|
|
//初始化表头
|
|
|
|
|
|
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;
|
2020-08-28 16:28:06 +08:00
|
|
|
|
|
2020-08-04 21:53:06 +08:00
|
|
|
|
if (this.assetPingSwitch == 'off') {
|
2020-08-28 16:28:06 +08:00
|
|
|
|
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{
|
2020-08-04 21:53:06 +08:00
|
|
|
|
for (let i in tableTitle) {
|
|
|
|
|
|
let label = tableTitle[i];
|
|
|
|
|
|
if (label.prop == 'pingStatus') {
|
2020-08-28 16:28:06 +08:00
|
|
|
|
label.show=true;
|
|
|
|
|
|
label.NotSet=false;
|
2020-08-04 21:53:06 +08:00
|
|
|
|
break;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
this.tools.customTableTitle = tableTitle;
|
2020-09-08 11:18:18 +08:00
|
|
|
|
|
|
|
|
|
|
this.loadKeys();
|
|
|
|
|
|
|
2020-09-28 16:58:19 +08:00
|
|
|
|
//console.log('load end')
|
2020-09-08 11:18:18 +08:00
|
|
|
|
|
2020-07-24 19:22:52 +08:00
|
|
|
|
//初始化数据
|
2020-07-28 14:26:51 +08:00
|
|
|
|
this.getUserData();
|
2020-09-14 17:20:14 +08:00
|
|
|
|
|
|
|
|
|
|
this.pageObj.idcId=this.headerCurrentDc;
|
|
|
|
|
|
|
2020-08-03 20:12:20 +08:00
|
|
|
|
this.getTableData();
|
2020-03-13 12:20:02 +08:00
|
|
|
|
//是否存在分页缓存
|
|
|
|
|
|
let pageSize = localStorage.getItem('nz-pageSize-' + localStorage.getItem('nz-username') + '-' + this.tableId);
|
2020-03-20 18:22:44 +08:00
|
|
|
|
if (pageSize != 'undefined' && pageSize != null) {
|
2020-03-13 12:20:02 +08:00
|
|
|
|
this.pageObj.pageSize = pageSize
|
|
|
|
|
|
}
|
2020-08-03 21:33:13 +08:00
|
|
|
|
this.initEvent();
|
2020-03-04 21:27:41 +08:00
|
|
|
|
this.$nextTick(() => {
|
2020-03-05 21:30:45 +08:00
|
|
|
|
//绑定滚动条事件,控制top按钮
|
|
|
|
|
|
let el = this.$refs.assetTable.$el.querySelector(".el-table__body-wrapper");
|
|
|
|
|
|
if (el._ps_) {
|
|
|
|
|
|
el.addEventListener("ps-scroll-y", () => {
|
2020-03-06 17:53:36 +08:00
|
|
|
|
if (el._ps_.scrollbarYTop > 50) {
|
2020-07-24 19:22:52 +08:00
|
|
|
|
this.tools.showTopBtn = true;
|
2020-03-05 21:30:45 +08:00
|
|
|
|
} else {
|
2020-07-24 19:22:52 +08:00
|
|
|
|
this.tools.showTopBtn = false;
|
2020-03-05 21:30:45 +08:00
|
|
|
|
}
|
|
|
|
|
|
});
|
2020-04-21 18:00:21 +08:00
|
|
|
|
el.addEventListener("mouseenter", () => {
|
2020-07-24 19:22:52 +08:00
|
|
|
|
this.tools.tableHover = true;
|
2020-04-21 18:00:21 +08:00
|
|
|
|
});
|
|
|
|
|
|
el.addEventListener("mouseleave", () => {
|
2020-07-24 19:22:52 +08:00
|
|
|
|
this.tools.tableHover = false;
|
2020-04-21 18:00:21 +08:00
|
|
|
|
});
|
2020-03-05 21:30:45 +08:00
|
|
|
|
}
|
2020-03-09 18:05:43 +08:00
|
|
|
|
//resize时刷新左侧列表滚动条
|
2020-07-24 19:22:52 +08:00
|
|
|
|
let vm = this;
|
2020-04-09 16:14:32 +08:00
|
|
|
|
window.onresize = function () {
|
2020-10-29 16:43:49 +08:00
|
|
|
|
// vm.$refs.leftScrollbar.update();
|
2020-04-16 21:34:44 +08:00
|
|
|
|
el._ps_.update();
|
|
|
|
|
|
};
|
2020-03-04 21:27:41 +08:00
|
|
|
|
});
|
2020-03-09 18:05:43 +08:00
|
|
|
|
},
|
|
|
|
|
|
destroyed() {
|
|
|
|
|
|
window.onresize = null;
|
2019-12-27 17:08:39 +08:00
|
|
|
|
}
|
2019-12-04 13:45:37 +08:00
|
|
|
|
}
|
2019-11-29 15:00:26 +08:00
|
|
|
|
</script>
|
2019-12-04 13:45:37 +08:00
|
|
|
|
|
2020-01-13 21:42:14 +08:00
|
|
|
|
<style scoped lang="scss">
|
2020-01-03 18:10:26 +08:00
|
|
|
|
.asset {
|
|
|
|
|
|
height: 100%;
|
|
|
|
|
|
}
|
2020-07-14 18:11:57 +08:00
|
|
|
|
/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
|
|
|
|
|
2020-07-17 19:00:00 +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{
|
2020-10-30 12:30:49 +08:00
|
|
|
|
color:orange; width: 42px;
|
2020-09-11 14:09:57 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|
2020-07-17 19:00:00 +08:00
|
|
|
|
/*/deep/ .sidebar-info-item .el-checkbox__label{*/
|
|
|
|
|
|
/*padding-right: 15px;*/
|
|
|
|
|
|
/*width: calc(100% - 32px);*/
|
|
|
|
|
|
/*}*/
|
2020-01-02 18:13:01 +08:00
|
|
|
|
</style>
|