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/common/rightBox/assetBox.vue

1443 lines
52 KiB
Vue
Raw Normal View History

<template>
<transition name="right-box">
<div class="right-box right-box-add-asset" v-if="editUnitShow" @click="editQuit" id="asset-edit-quit" v-clickoutside="clickos">
<!--顶部按钮-->
<div class="right-box-top-btns">
<button v-if="!tabView && pageObj.id" type="button" @click="deleteData('asset', pageObj.id)" id="asset-edit-del"
class="nz-btn nz-btn-size-normal nz-btn-size-alien nz-btn-style-light nz-btn-min-width-82">
<span class="right-box-top-btn-icon"><i class="el-icon-delete"></i></span>
<span class="right-box-top-btn-txt">{{$t('overall.delete')}}</span>
</button>
<button v-if="tabView" id="asset-edit-edit" type="button" @click="tabView=false"
class="nz-btn nz-btn-size-normal nz-btn-size-alien nz-btn-style-light nz-btn-min-width-82">
<span class="right-box-top-btn-icon"><i class="nz-icon nz-icon-edit"></i></span>
<span class="right-box-top-btn-txt">{{$t('overall.edit')}}</span>
</button>
</div>
<div class="right-box-title">
{{tabView == true ? $t('asset.asset') : ''}}
{{tabView == false && pageObj.id ? $t('asset.EditAsset') : ''}}
{{tabView == false && !pageObj.id ? $t('asset.createAssetTab.title') : ''}}
</div>
2020-06-23 18:03:47 +08:00
<el-scrollbar class="right-box-form-box" ref="scrollbar">
<el-form ref="assetEditForm" :model="assetData" label-width="120px" class="right-box-form right-box-form-left" :rules="rules">
<el-form-item :label="$t('asset.createAssetTab.sn')" prop="sn">
<el-input size="small" v-if="!tabView" v-model="assetData.sn"/>
<el-popover trigger="hover" placement="bottom-start" :content="assetData.sn" >
<span slot="reference" class="sidebar-info-item-txt" style="margin-bottom: -14px; display: block;" v-if="tabView">{{assetData.sn}}</span>
</el-popover>
</el-form-item>
<el-form-item :label="$t('asset.createAssetTab.host')" prop="host">
<el-input size="small" v-if="!tabView" v-model="assetData.host"/>
<span v-if="tabView">{{assetData.host}}</span>
</el-form-item>
<el-form-item :label="$t('asset.createAssetTab.state')">
<div v-if="!tabView" class="select-style">
<el-select size="small" v-model="assetData.state" placeholder="" popper-class="asset-dropdown" >
<el-option
:id="'asset-edit-state-op-'+item.value"
v-for="item in assetStateOption"
:key="item.value"
:label="item.label"
:value="item.value">
</el-option>
</el-select>
</div>
<span v-if="tabView">{{assetData.state==1 ? $t('asset.createAssetTab.inStock'): $t('asset.createAssetTab.notInStock')}}</span>
</el-form-item>
<el-form-item :label="$t('asset.tableTitle.modules')" v-if="tabView">
<div v-if="assetViewData.moduleNum > 0" >
<module-list-pop :asset-id="obj.id + ''" @openModuleBox="openModuleBox" placement="left" :ref="'moduleListPop' + obj.id">
<template v-slot:optionZone>
<button class="nz-btn nz-btn-size-normal nz-btn-style-light nz-btn-min-width-75">{{assetViewData.moduleNum}}</button>
</template>
</module-list-pop>
</div>
<button type="button" v-else class="nz-btn nz-btn-size-normal nz-btn-style-light nz-btn-min-width-75 nz-btn-disabled">{{assetViewData.moduleNum}}</button>
</el-form-item>
<el-form-item :label="$t('asset.tableTitle.alerts')" v-if="tabView">
<button type="button" v-if="assetViewData.alertNum > 0" id="'asset-alerts-'+scope.row.id" @click="jumpToAlertMsg(obj.id)" class="nz-btn nz-btn-size-normal nz-btn-style-light nz-btn-min-width-75">{{assetViewData.alertNum}}</button>
<button type="button" v-else class="nz-btn nz-btn-size-normal nz-btn-style-light nz-btn-min-width-75 nz-btn-disabled">{{assetViewData.alertNum}}</button>
</el-form-item>
<div class="right-box-sub-title">{{$t('asset.createAssetTab.assetInfo')}}</div>
<div class="line-100 right-box-line"></div>
<!------------------------------------------资产类型---------------------------------------------->
<el-form-item :label="$t('asset.createAssetTab.assetType')" class="right-box-form-content" prop="assetType">
<el-select popper-class="asset-dropdown" size="small" v-if="!tabView" v-model="assetType" clearable @visible-change="cancelEdit"
2020-03-11 17:14:33 +08:00
@change="getAllModelOptionData()">
<el-option
:id="'asset-edit-type-op-'+item.id"
v-for="item in assetTypeOptionData"
:key="item.id"
:value="item.code"
:label="item.value"
>
<span class="asset-dropdown-label-txt" v-if="!item.isEdit">{{ item.value }}</span>
<span class="asset-dropdown-label-input" v-if="item.isEdit" @click.stop="editing(item)">
<el-input type="text" v-model="item.value" size="small"/>
</span>
<div class="asset-dropdown-label-icons">
<span class="asset-dropdown-btn asset-dropdown-btn-delete" @click.stop="delOptionData(item)" :id="'asset-edit-type-op-del-'+item.id">
<i class="el-icon-delete"></i>
</span>
<span class="asset-dropdown-btn" @click.stop="editOptionData(item,'type')" :id="'asset-edit-type-op-edit-'+item.id">
<i class="nz-icon nz-icon-edit" v-if="!item.isEdit"></i>
<i class="el-icon-check" v-if="item.isEdit"
@click="editData('sys/dict/update',item)"></i>
</span>
</div>
</el-option>
</el-select>
<span v-if="tabView">{{assetViewData.assetType}}</span>
</el-form-item>
<!------------------------------------------厂商/型号---------------------------------------------->
<el-form-item :label="$t('asset.createAssetTab.vendorModel')" class="right-box-form-content" prop="modelId">
<template v-if="!tabView">
<el-cascader
:options="vendorTypeOptionData"
:key="isResourceShow"
2020-05-25 14:00:39 +08:00
:props="{emitPath:false}"
:disabled="this.assetType!=''?false:true"
v-model="assetData.modelId"
clearable
size="small"
placeholder=""
class="right-box-row-with-btn"
@change="modelChange"
>
</el-cascader>
<div class="right-box-row-btn" v-if="!tabView" @click="addVendor"><i class="el-icon-plus"></i>
</div>
</template>
<span v-if="tabView">{{assetViewData.vendor}} {{assetViewData.model}}</span>
</el-form-item>
<el-form-item :label="$t('asset.createAssetTab.purchaseDate')">
<div class="select-style" v-if="!tabView">
<el-date-picker
size="small"
v-model="assetData.purchaseDate"
value-format="yyyy-MM-dd"
type="date"
style="width: 100%"
placeholder="">
</el-date-picker>
</div>
<span v-if="tabView">{{assetData.purchaseDate}}</span>
</el-form-item>
<!--tag-->
<el-form-item>
<template slot="label">
<span>{{$t('overall.tag')}}</span>
<div class="right-box-form-btns">
<button style="display: none;">第一个button会出现意料之外的hover样式找不到原因只好加个不可见的button规避问题</button>
<button id="module-add-param" type="button" @click="addTag" class="nz-btn nz-btn-size-normal nz-btn-style-light">
<span><i style="font-size: 12px;" class="nz-icon nz-icon-create-square"></i></span>
</button>
</div>
</template>
2020-06-19 18:35:13 +08:00
<div class="tag-edit-box">
<div class="tag-edit-box-head">
<div>Tag</div>
<div>Value</div>
<div>Action</div>
</div>
<el-scrollbar ref="tagEditBoxScrollbar" style="height: calc(100% - 32px);">
<div class="tag-edit-box-body" v-for="(item, index) in assetData.tags">
<el-form-item class="tag-edit tag-edit-tag" :rules="{required: true, message: $t('validate.required'), trigger: 'blur'}" :prop="'tags.' + index + '.tag'">
<el-input placeholder="tag" size="mini" v-model="item.tag"></el-input>
</el-form-item>
<el-form-item class="tag-edit tag-edit-value" :rules="{required: true, message: $t('validate.required'), trigger: 'blur'}" :prop="'tags.' + index + '.value'">
<el-input placeholder="value" size="mini" v-model="item.value"></el-input>
</el-form-item>
2020-06-23 18:03:47 +08:00
<div class="param-box-row-symbol" :id="'asset-tag-remove-'+index" @click.stop="removeTag(index)"><i class="nz-icon nz-icon-minus-square"></i></div>
2020-06-19 18:35:13 +08:00
</div>
</el-scrollbar>
</div>
</el-form-item>
<!------------------------------------------impi---------------------------------------------->
<!--<div v-if="assetType == 1">
<div class="right-box-sub-title">{{$t('asset.createAssetTab.impi.title')}}</div>
<div class="line-100 right-box-line"></div>
<el-form-item :label="$t('asset.createAssetTab.impi.host')" class="right-box-form-content" prop="impi.host">
<el-input v-model="assetData.impi.host" size="small" v-if="!tabView"></el-input>
<span v-if="tabView">{{assetData.impi.host}}</span>
</el-form-item>
<el-form-item :label="$t('asset.createAssetTab.impi.port')" class="right-box-form-content" prop="impi.port">
<el-input v-model="assetData.impi.port" size="small" v-if="!tabView"></el-input>
<span v-if="tabView">{{assetData.impi.port}}</span>
</el-form-item>
</div>-->
<div class="right-box-sub-title">{{$t('asset.createAssetTab.location')}}</div>
<div class="line-100 right-box-line"></div>
<!------------------------------------------IDC---------------------------------------------->
<el-form-item :label="$t('asset.createAssetTab.location')" prop="locationInfo" :rules="[{validator:locationValidator,trigger:'blur'}]">
<location-cascader :disabled="assetData.modelId !=''?false:true" :default-model-u-size="modelSize" @change="setLocationData" :init-data="initLocationData" ref="locationCascader" :idc-option="IDCOptionData"></location-cascader>
2020-04-13 09:00:25 +08:00
</el-form-item>
<!--cli-->
2020-06-23 18:03:47 +08:00
<div class="right-box-sub-title">{{$t('config.account.account')}}
<!--<el-switch v-if="!tabView" style="float: right;" v-model="accountSwitch" active-color="#ee9d3f" :disabled="parseInt(assetData.exporter)===1"></el-switch>-->
</div>
<div class="line-100 right-box-line"></div>
2020-06-23 18:03:47 +08:00
<!--<template v-if="accountSwitch">
<account-config-box v-for="(item,index) in assetData.accounts" :is-edit="!tabView" :account="item" :key="index" ref="accountConfigBox" @setValidateResult="setAccountValideResult" :is-allowed-change-protocol="changeProtocolSwitch" @protocol-type-change="protocolTypeChange"></account-config-box>
2020-06-23 18:03:47 +08:00
</template>-->
<div class="nz-tab" style="padding-left: 30px;">
<div class="nz-tab-item-box" v-for="(account, index) in assetData.accounts" :key="index" @click="changeProtocolType(account.protocol)" :id="`account-login-type-${index}`">
<div class="nz-tab-item" :class="{'nz-tab-item-active': accountType == account.protocol}" style="position: relative;">
<span>{{account.protocol}}</span>
<transition name="el-zoom-in-top">
<div v-if="errorProtocol.indexOf(account.protocol) > -1" class="nz-tab-error el-form-item__error">Required</div>
</transition>
</div>&nbsp;
<span class="nz-tab-item-close" @click.stop="removeAccount(index)"><i class="el-icon-circle-close"></i></span>
</div>
<el-popover placement="right" width="70" trigger="click" :disabled="assetData.accounts.length == 3" v-model.sync="showAccountOp" popper-class="no-style-class">
<button slot="reference" id="add-type" type="button" class="nz-btn nz-btn-size-normal nz-btn-style-light float-right" :class="{'nz-btn-disabled': assetData.accounts.length == 3}">
<span><i style="font-size: 12px;" class="nz-icon nz-icon-create-square"></i></span>
</button>
<ul class="el-select-dropdown__list">
<li @click="addAccount(type)" v-for="(type, index) in selectableAccountTypes" :key="index" class="el-select-dropdown__item"><span>{{type}}</span></li>
</ul>
</el-popover>
</div>
<account-config-box v-for="(account,index) in assetData.accounts" :account="account" v-show="account.protocol == accountType" :key="index" ref="accountConfigBox" @setValidateResult="setAccountValideResult" @protocol-type-change="protocolTypeChange"></account-config-box>
2020-06-23 18:03:47 +08:00
<template v-if="accountType == 'SSH'">
<el-form-item :label="$t('asset.createAssetTab.exporter')" class="exporter-label">
<el-switch class="exporter-switch" v-model="assetData.exporter" active-color="#ee9d3f" active-value="1" inactive-value="0" :show="!exporterDisableSwitch"></el-switch>
</el-form-item>
</template>
</el-form>
</el-scrollbar>
<!--底部按钮-->
<div class="right-box-bottom-btns">
<button @click.stop="sendStateData('close')" class="nz-btn nz-btn-size-normal nz-btn-style-light nz-btn-min-width-100" id="asset-edit-cancel">
<span>{{$t('overall.cancel')}}</span>
</button>
<button v-if="!tabView" @click.stop="editData('asset')" class="nz-btn nz-btn-size-normal nz-btn-style-normal nz-btn-min-width-100" id="asset-edit-save">
<span>{{$t('overall.save')}}</span>
</button>
</div>
<module-box :module="module" @reload="refreshTabData" ref="moduleBox"></module-box>
<model-box v-if="firstShowModel" ref="modelBox" :model="model" @reload="getAllModelOptionData"></model-box>
</div>
</transition>
</template>
<script>
import accountConfig from '../../page/asset/accountConfig';
import {host} from '../js/validate';
import {port} from '../js/validate'
2020-04-13 09:00:25 +08:00
import locationCascader from "./locationCascader";
export default {
name: "assetEditUnit",
props: ["editUnitShow", "editUnitId"],
components:{
'account-config-box': accountConfig,
2020-04-13 09:00:25 +08:00
'location-cascader':locationCascader,
},
data() {
return {
firstShowModel: false,
visible: '',
vendorModelData: '',
2020-06-23 18:03:47 +08:00
showAccountOp: false,
errorProtocol: [], //校验不通过的account
assetData: {
id: '',
sn: '',
host: '',
state: '',
purchaseDate: '',
idcId: '',
cabinetId: '',
modelId: '',
assetType: '',
impi:{
host:'',
port:'',
},
2020-06-23 18:03:47 +08:00
accounts: [],
/*accounts: [{
id: '',
authType: 1,
protocol:'SSH',
user: '',
pwd: '',
port: '',
userTip:"",
passwordTip:'',
reloginPasswordTip:''
2020-06-23 18:03:47 +08:00
}],*/
tags: [],
exporter: 0
},
2020-06-23 18:03:47 +08:00
selectableAccountTypes: ["SSH", "TELNET", "SNMP"],
modelSize:1,
initLocationData:null,
locationInfo:null,
2020-06-23 18:03:47 +08:00
//accountSwitch:false,//true 开启false 关闭
accountData: '',
assetViewData: {
assetType: '',
vendor: '',
model: '',
moduleNum: '',
alertNum: '',
idcName: '',
cabinetName: ''
},
assetStateOption: [
{
value: 1,
label: this.$t('asset.createAssetTab.inStock')
}, {
value: 2,
label: this.$t('asset.createAssetTab.notInStock')
}],
cabinetModelData: '',
checkList: [],
assetTypeOptionData: [],
vendorTypeData: '',
vendorTypeOptionData: [],
vendorUlData: '',
modelUlData: '',
vendorCode: '',
IDCData: '',
IDCOptionData: [],
cabinetData: '',
cabinetOptionData: [],
input: '',
pageObj: {
id: '',
pageNo: 1,
pageSize: 20,
total: 0,
idcId: '',
idcIds: ''
},
tableHeight: document.documentElement.clientHeight - 200,
tabView: false,
assetType: '',
assetTypeData: {
type: 'assetType',
value: '',
},
addVendorData: {
type: 'vendor',
value: '',
},
addNewModelData: {
name: '',
vendorCode: '',
typeCode: ''
},
accountType: '',
idcSelectedData: {
id: '',
name: '',
location: '',
principal: '',
tel: ''
},
model: {
id: '',
name: '',
vendor: {id: '', value: '', code: '', type: ''},
type: {id: '', value: '', code: '', type: ''},
assetStat: {total: '', inStock: '', outStock: ''},
remark: '',
vendorCode: '',
typeCode: ''
},
addIdcData: {
id: '',
name: '',
location: '',
principal: '',
tel: ''
},
popIdcData: {
id: '',
name: '',
location: '',
principal: '',
tel: ''
},
idcUserData: '',
cabinetSelectedData: {
name: '',
uSize: 0,
remark: '',
idcId: '',
},
addCabinetData: {
name: '',
popName: '',
uSize: 0,
remark: '',
idcId: '',
},
popCabinetData: {
name: '',
uSize: 0,
remark: '',
idcId: '',
},
addCabIDCData: {
id: '',
name: '',
location: '',
principal: '',
tel: ''
},
popTypeVisible: false,
popCompVisible: false,
popIDCVisible: false,
popCabinetVisible: false,
editPopTypeVisible: false,
editPopVendorVisible: false,
editPopIDCVisible: false,
editPopCabinetVisible: false,
vendorCount: '',
modelCount: '',
allModelUlData: '',
tempData: '',
tempModelData: [],
isResourceShow: 0,
unitDisable: '',
modelClickData: '',
popState: true,
obj: null,
addUnitShow: false,
rules: {
sn: [
{required: true, message: this.$t('validate.required'), trigger: 'blur'}
],
host: [
{required:true,message:this.$t('validate.required'),trigger: 'blur'},
{validator:host, trigger: 'blur'}
],
modelId: [
{required: true, message: this.$t('validate.required'), trigger: 'change'}
],
assetType: [
{required: true, message: this.$t('validate.required'), trigger: 'change'}
],
idcId: [
{required: true, message: this.$t('validate.required'), trigger: 'change'}
],
'impi.host':[
{validator:host,trigger:'blur'}
],
'impi.port':[
{validator:port,trigger:'blur'}
]
},
cabRules: {
name: [
{required: true, message: this.$t('validate.required'), trigger: 'blur'}
],
uSize: [
{required: true, type: 'number', min: 1, max: 47, message: this.$t('validate.required'), trigger: 'blur'}
],
idcId: [
{required: true, message: this.$t('validate.required'), trigger: 'blur'}
]
},
formData:null,
module:{},
accountValideResult:true,
changeProtocolSwitch:true,
exporterDisableSwitch:false
}
},
watch: {
allModelUlData: {
deep: true,
immediate: true,
handler(newVal) {
if (newVal) {
this.getConnectData();
if (this.pageObj.id != '') {
this.assetData.modelId = [this.obj.model.vendor.code, this.obj.model.id];
}
}
}
},
assetType(newVal) {
this.assetData.assetType = newVal;
if (newVal == '') {
this.popState = true
} else {
this.popState = false
}
},
'assetData.idcId': function(n, o) {
this.addCabinetData.idcId = n;
},
2020-06-23 18:03:47 +08:00
'assetData.accounts': {
deep: true,
handler(n) {
let temp = ["SSH", "TELNET", "SNMP"];
n.forEach(item => {
let i = temp.indexOf(item.protocol);
if (i > -1) {
temp.splice(i, 1);
}
});
this.selectableAccountTypes = temp;
}
},
/*accountSwitch(n) {
if (n) {
if (!this.assetData.accounts[0]) {
!this.assetData.accounts.push({
id: '',
user:"",
authType:1,
protocol:'SSH',
pwd:"",
port:'',
privateKey:'',
userTip:"",
passwordTip:'',
reloginPasswordTip:''
});
}
}
},
'assetData.exporter':function(n,o){
if(parseInt(n) === 1){
this.accountSwitch=true;
this.changeProtocolSwitch=false;
for(let account of this.assetData.accounts){
account.protocol='SSH';
}
}else{
this.changeProtocolSwitch=true;
}
2020-06-23 18:03:47 +08:00
},*/
locationInfo:{
deep:true,
handler(n,o){
}
}
},
methods: {
clickos() {
this.sendStateData('close');
},
cancelEdit(data) {
if (data === false) {
this.getAssetTypeOptionData();
}
},
addTag() {
this.assetData.tags.push({tag: "", value: ""});
2020-06-19 18:35:13 +08:00
this.$nextTick(() => {
this.$refs.tagEditBoxScrollbar.update();
});
},
2020-06-23 18:03:47 +08:00
addAccount(type) {
if (type == "SSH") {
this.assetData.accounts.push({
authType: 1,
protocol: "SSH",
port: 22,
params: {
user: "",
method: "password",
password: "",
key: "",
passwordKey: ""
}
});
} else if (type == "TELNET") {
this.assetData.accounts.push({
protocol: "TELNET",
port: 23,
params: {
user: "",
password: "",
userTip: "",
passwordTip: "",
reloginTip: ""
}
});
} else if (type == "SNMP") {
this.assetData.accounts.push({
protocol: "SNMP",
port: 161,
params: {
version:2,
community:"public",
security_name:"",
security_level:"",
auth_password:"",
priv_password:"",
auth_protocol:"",
priv_protocol:"",
context_name:""
}
});
}
this.accountType = type;
this.showAccountOp = false;
this.$nextTick(() => {
let sbWrap = this.$refs.scrollbar.$refs.wrap;
sbWrap.scrollTop = sbWrap.scrollHeight;
});
},
removeAccount(index) {
this.assetData.accounts.splice(index, 1);
if (this.assetData.accounts.length > 0) {
this.accountType = this.assetData.accounts[0].protocol;
} else {
this.accountType = "";
}
},
removeTag: function(index) {
this.assetData.tags.splice(index, 1);
this.$nextTick(() => {
2020-06-19 18:35:13 +08:00
this.$refs.tagEditBoxScrollbar.update();
});
},
clickOutSide(data) {
if (data) {
this.editQuit();
this.modelCount = '';
}
},
show() {
this.getIDCOptionData();
this.getVendorOptionData();
this.getAssetTypeOptionData();
2020-06-23 18:03:47 +08:00
this.showAccountOp = false;
},
editQuit() {
for (let i of this.assetTypeOptionData) {
if (i.isEdit === true) {
i.isEdit = false;
this.getAssetTypeOptionData();
}
}
for (let i of this.vendorUlData) {
if (i.isEdit === true) {
i.isEdit = false;
this.getVendorOptionData();
}
}
for (let i of this.modelUlData) {
if (i.isEdit === true) {
i.isEdit = false;
this.getModelOptionData(this.assetType, this.vendorCode);
}
}
},
setLocationData:function(data){
this.locationInfo=data;
},
locationValidator:function(rule, value, callback){
let $temp=this;
setTimeout(()=>{
if(!this.locationInfo){
2020-06-21 20:58:22 +08:00
callback(new Error($temp.$t('validate.required')))
}else if(this.locationInfo && !this.locationInfo.idc){
2020-06-21 20:58:22 +08:00
callback(new Error($temp.$t('validate.required')))
}else{
callback();
}
},100)
},
modelChange:function(ids){
let model=this.allModelUlData.find((item,index)=>{
return ids==item.id;
});
this.modelSize=model.usize;
},
getAssetData(data) {
this.$nextTick(() => {
if (data) {
this.pageObj.id = data.id;
this.obj = JSON.parse(JSON.stringify(data));
this.assetViewData.assetType = this.obj.model.type.value
this.assetViewData.vendor = this.obj.model.vendor.value
this.assetViewData.model = this.obj.model.name
this.modelSize=this.obj.model.usize;
this.assetViewData.idcName = this.obj.idc.name
this.assetViewData.cabinetName = this.obj.cabinet == null ? '' : this.obj.cabinet.name
let initLocationData={
idc:this.obj.idc,
cabinet:this.obj.cabinet,
u:[this.obj.cabinetStart,this.obj.cabinetEnd]
}
this.$refs.locationCascader.initComponet(initLocationData)
this.assetViewData.moduleNum = this.obj.moduleNum
this.assetViewData.alertNum = this.obj.alertNum
this.assetViewData.cabinetName = this.obj.cabinet == null ? '' : this.obj.cabinet.name
this.getCabinetOptionData(this.obj.idc.id)
this.assetType = this.obj.model.type.code
this.assetData.impi=this.obj.impi?this.obj.impi:{host:'',port:''};
this.assetData.sn = this.obj.sn
this.assetData.host = this.obj.host
this.assetData.state = this.obj.state
this.assetData.idcId = this.obj.idc.id;
this.assetData.tags = this.obj.tags;
2020-06-23 18:03:47 +08:00
this.assetData.accounts = this.obj.accounts;
this.assetData.cabinetId = this.obj.cabinet == null ? '' : this.obj.cabinet.id
this.assetData.purchaseDate = this.obj.purchaseDate;
2020-06-23 18:03:47 +08:00
if (this.assetData.accounts && this.assetData.accounts.length > 0) {
this.accountType = this.assetData.accounts[0].protocol.toUpperCase();
}
// this.assetData.accounts[0].id = this.obj.accounts[0].id
// this.assetData.accounts[0].authType = this.obj.accounts[0].authType
// this.assetData.accounts[0].user = this.obj.accounts[0].user
// this.assetData.accounts[0].pwd = this.obj.accounts[0].pwd
// this.assetData.accounts[0].port = this.obj.accounts[0].port
// this.assetData.accounts[0].cert = this.obj.accounts[0].privateKey
this.assetData.accounts=this.obj.accounts[0]?this.obj.accounts:[];
2020-06-23 18:03:47 +08:00
//this.accountSwitch=this.assetData.accounts.length>0;
this.idcSelectedData.location = this.obj.idc.location
this.idcSelectedData.principal = this.obj.idc.principal
this.idcSelectedData.tel = this.obj.idc.tel
this.cabinetSelectedData.uSize = this.obj.cabinet == null ? '' : this.obj.cabinet.uSize
2020-06-23 18:03:47 +08:00
this.cabinetSelectedData.remark = this.obj.cabinet == null ? '' : this.obj.cabinet.remark;
this.getAllModelOptionData(this.assetType);
} else {
this.resetAsset();
}
});
},
openModuleBox(module) {
this.module = module;
this.$refs.moduleBox.show(true);
this.$refs['moduleListPop' + this.obj.id].show(false);
},
refreshTabData:function(){
this.$emit('refreshData', 'true');
},
jumpToAlertMsg(assetId) {
this.$store.commit('assetForAlertListChange', assetId);
this.$router.push({
path: "/alertList",
query: {
t: +new Date()
}
});
},
getIDCOptionData(isUpdate) {
this.$get('idc').then(response => {
if (response.code === 200) {
this.IDCOptionData = response.data.list;
this.markOptionData(this.IDCOptionData);
if (isUpdate) {
this.$store.commit('assetDcListChange');
this.$emit('refreshData');
}
}
})
},
getUserData() {
this.$get('sys/user/list').then(response => {
if (response.code === 200) {
this.idcUserData = response.data.list
}
})
},
getCabinetOptionData(data) {
this.$get('cabinet?idcId=' + data).then(response => {
if (response.code === 200) {
this.cabinetOptionData = response.data.list;
this.markOptionData(this.cabinetOptionData)
for (let i = 0; i < this.cabinetOptionData.length; i++) {
this.$set(this.cabinetOptionData[i], 'children', this.IDCOptionData)
}
}
})
},
getAssetTypeOptionData() {
this.$get('sys/dict/all?type=assetType').then(response => {
if (response.code === 200) {
this.assetTypeOptionData = response.data
this.markOptionData(this.assetTypeOptionData)
}
})
},
getVendorOptionData() {
this.$get('sys/dict/all?type=vendor').then(response => {
if (response.code === 200) {
this.vendorUlData = response.data;
this.markOptionData(this.vendorUlData);
}
})
},
getModelOptionData(assetType, vendorCode) {
this.$get('model?typeCode=' + assetType + '&vendorCode=' + vendorCode).then(response => {
if (response.code === 200) {
2020-03-03 20:50:50 +08:00
this.modelUlData = response.data.list;
this.markOptionData(this.modelUlData);
}
})
},
getAllModelOptionData(data) {
this.assetData.assetType = this.assetType;
this.$get('model?typeCode=' + this.assetType + '&pageNo=1&pageSize=-1').then(response => {
if (response.code === 200) {
this.allModelUlData = response.data.list
}
})
},
addVendor() {
this.model = {
id: '',
name: '',
vendor: {id: '', value: '', code: '', type: ''},
type: {id: '', value: '', code: '', type: ''},
assetStat: {total: '', inStock: '', outStock: ''},
remark: '',
vendorCode: '',
typeCode: ''
};
if (this.assetType) {
//model侧滑弹出时自动选好assetType
for (let i = 0; i < this.assetTypeOptionData.length; i++) {
if (this.assetTypeOptionData[i].code == this.assetType) {
this.model.type.code = this.assetType;
this.model.type.value = this.assetTypeOptionData[i].value;
break;
}
}
}
this.firstShowModel = true;
this.$nextTick(() => {
this.$refs.modelBox.show(true, true);
});
},
2020-03-03 20:50:50 +08:00
resetAsset() {
this.pageObj.id = '';
this.assetData = {
id: '',
sn: '',
host: '',
state: '',
purchaseDate: '',
idcId: '',
cabinetId: '',
modelId: '',
assetType: '',
impi:{
host:'',
port:'',
},
locationInfo:null,
2020-06-23 18:03:47 +08:00
accounts: [],
tags: []
2020-03-03 20:50:50 +08:00
};
this.assetType = '';
this.idcSelectedData = {
id: '',
name: '',
location: '',
principal: '',
tel: ''
}
},
editData(data, item, mark) {
let obj = {
id: '',
type: '',
value: '',
code: ''
};
let idcData = {
id: '',
name: '',
location: '',
principal: '',
tel: ''
};
if (data === 'asset') {
if(this.locationInfo){
if(this.locationInfo.idc){
this.assetData.idcId=this.locationInfo.idc.id;
}
if(this.locationInfo.cabinet){
this.assetData.cabinetId=this.locationInfo.cabinet.id;
}
if(this.locationInfo.u&&this.locationInfo.u.length>0){
this.assetData.cabinetStart=this.locationInfo.u[0];
this.assetData.cabinetEnd=this.locationInfo.u[1];
}
}
2020-06-23 18:03:47 +08:00
/*if (!this.accountSwitch) {
this.assetData.accounts = [];
2020-06-23 18:03:47 +08:00
}*/
2020-06-23 18:03:47 +08:00
if(this.$refs.accountConfigBox && this.$refs.accountConfigBox.length > 0) {
this.$refs.accountConfigBox.forEach(box => {
box.validateAccount();
});
}
this.$refs.assetEditForm.validate((valid) => {
if (valid&&this.accountValideResult) {
if (this.pageObj.id) {
this.assetData.id=this.pageObj.id;
let reqData = JSON.parse(JSON.stringify(this.assetData));
if (typeof reqData.modelId == "object") {
reqData.modelId = reqData.modelId[1];
}
this.$put('asset', reqData).then(res => {
if (res.code === 200) {
this.$message({duration: 2000, type: 'success', message: this.$t("tip.saveSuccess")});
this.pageObj.id = '';
this.$emit('refreshData', 'true');
this.sendStateData('close');
} else {
this.$message.error(res.msg);
}
});
} else {
if(this.$refs.accountConfigBox&&this.$refs.accountConfigBox.length>0){
this.$refs.accountConfigBox[0].validateAccount();
}
this.$post('asset', this.assetData).then(res => {
if (res.code === 200) {
this.$message({duration: 2000, type: 'success', message: this.$t("tip.saveSuccess")});
this.$emit('refreshData', 'true');
this.sendStateData('close');
} else {
this.$message.error(res.msg);
}
});
}
} else {
return false;
}
});
} else {
if (data === 'model') {
item.vendorCode = this.vendorCode
item.typeCode = this.assetType
}
if (data === 'vendor') {
obj.id = item.id
obj.code = item.code
obj.type = item.type
obj.value = item.label
data = 'sys/dict/update'
item = obj
}
if (data === 'cabinet') {
let v = true;
this.$refs.cabEditForm[0].validate((valid) => {
if (valid) {
item.name = this.popCabinetData.name;
item.uSize = this.popCabinetData.uSize;
item.remark = this.popCabinetData.remark;
item.idcId = this.popCabinetData.idcId;
} else {
v = false;
}
});
if (!v) {
return false;
}
}
if (data === 'idc') {
idcData.id = item.id
idcData.name = this.popIdcData.name
idcData.location = this.popIdcData.location
idcData.principal = this.popIdcData.principal
idcData.tel = this.popIdcData.tel
item = idcData
}
if (mark === 'CabIDC') {
idcData.id = item.id;
idcData.name = this.addCabIDCData.name;
idcData.location = this.addCabIDCData.location;
idcData.principal = this.addCabIDCData.principal;
idcData.tel = this.addCabIDCData.tel;
item = idcData;
}
this.$put(data, item).then(res => {
if (res.code === 200) {
this.$message({duration: 2000, type: 'success', message: this.$t("tip.saveSuccess")});
this.getIDCOptionData(true);
if (data === 'cabinet') {
this.getCabinetOptionData(item.idcId);
}
this.getAllModelOptionData();
this.getAssetTypeOptionData();
this.$emit('refreshData', 'true')
} else {
this.$message.error(res.msg);
}
})
}
},
2020-06-23 18:03:47 +08:00
setAccountValideResult(result, protocol) {
this.accountValideResult = result;
let index = this.errorProtocol.indexOf(protocol);
if (result) {
index != -1 ? this.errorProtocol.splice(index, 1) : "";
} else {
index == -1 ? this.errorProtocol.push(protocol) : "";
}
},
//新增型号弹框关闭后重置弹框内容
resetVendor() {
this.addVendorData.value = '';
this.vendorCode = '';
this.vendorCount = '';
this.modelUlData = [];
this.addNewModelData = {
name: '',
vendorCode: '',
typeCode: ''
}
},
addNewData(type) {
if (type === 'IDC') {
const h = this.$createElement;
this.$post('idc', this.addIdcData).then(res => {
if (res.code === 200) {
const h = this.$createElement;
this.$message({duration: 2000, type: 'success', message: this.$t("tip.saveSuccess")});
this.getIDCOptionData()
this.getAssetData()
} else {
this.$message.error(res.msg);
}
})
}
if (type === 'assetType') {
this.$post('sys/dict/save', this.assetTypeData).then(res => {
const h = this.$createElement;
if (res.code === 200) {
this.getAssetTypeOptionData();
this.$message({duration: 2000, type: 'success', message: this.$t("tip.saveSuccess")});
} else {
this.$message.error(res.msg);
}
})
}
if (type === 'vendor') {
const h = this.$createElement;
this.$post('sys/dict/save', this.addVendorData).then(res => {
if (res.code === 200) {
this.$message({duration: 2000, type: 'success', message: this.$t("tip.saveSuccess")});
this.getVendorOptionData()
} else {
this.$message.error(res.msg);
}
})
}
if (type === 'model') {
this.addNewModelData.typeCode = this.assetType
this.addNewModelData.vendorCode = this.vendorCode
this.$post('model', this.addNewModelData).then(res => {
const h = this.$createElement;
if (res.code === 200) {
this.getModelOptionData(this.assetType, this.vendorCode)
this.$message({duration: 2000, type: 'success', message: this.$t("tip.saveSuccess")});
this.getAllModelOptionData(this.assetType)
} else {
this.$message.error(res.msg);
}
})
}
if (type === 'cabinet') {
this.$refs.cabAddForm.validate((valid) => {
if (valid) {
this.addCabinetData.idcId = this.assetData.idcId
this.$post('cabinet', this.addCabinetData).then(res => {
const h = this.$createElement;
if (res.code === 200) {
this.$message({duration: 2000, type: 'success', message: this.$t("tip.saveSuccess")});
this.getCabinetOptionData(this.addCabinetData.idcId);
this.editPopoverClose('cabinet');
} else {
this.$message.error(res.msg);
}
});
} else {
return false;
}
});
}
},
2020-06-23 18:03:47 +08:00
changeProtocolType(type) {
this.accountType = type;
this.$nextTick(() => {
let sbWrap = this.$refs.scrollbar.$refs.wrap;
sbWrap.scrollTop = sbWrap.scrollHeight;
});
},
deleteData(data, item) {
this.$confirm(this.$t("tip.confirmDelete"), {
confirmButtonText: this.$t("tip.yes"),
cancelButtonText: this.$t("tip.no"),
type: 'warning'
}).then(() => {
this.$delete(data + "?ids=" + item).then(response => {
if (response.code === 200) {
this.$message({duration: 2000, type: 'success', message: this.$t("tip.deleteSuccess")});
this.getAssetData();
this.getIDCOptionData(true);
this.getVendorOptionData();
this.getCabinetOptionData(this.assetData.idcId);
this.getAllModelOptionData(this.assetType);
this.getModelOptionData(this.assetType, this.vendorCode);
if (data == 'asset') {
this.sendStateData('close');
}
} 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, 'modelOldName', item.name);
this.$set(item, item.name, false);
this.$set(item, item.id, false);
this.$set(item, item.id + item.name, false);
this.$set(item, item.name + item.id, false);
})
},
getConnectData() {
this.isResourceShow += 1;
let resultData = [];
let modelData = this.allModelUlData;
for (let i = 0; i < modelData.length; i++) {
if (!modelData[i].vendor) {
continue;
}
let obj = {};
obj.id = modelData[i].vendor.id;
obj.code = modelData[i].vendor.code;
obj.value = modelData[i].vendor.code;
obj.label = modelData[i].vendor.value;
obj.children = [];
resultData.push(obj);
}
let result = [];
let obj1 = {};
for (let i = 0; i < resultData.length; i++) {
if (!obj1[resultData[i].id]) {
result.push(resultData[i]);
obj1[resultData[i].id] = true;
}
}
for (let x = 0; x < result.length; x++) {
for (let y = 0; y < modelData.length; y++) {
if (!modelData[y].vendor) {
continue;
}
if (result[x].code === modelData[y].vendor.code) {
let obj2 = {}
obj2.value = modelData[y].id
obj2.label = modelData[y].name
result[x].children.push(obj2)
}
}
}
this.vendorTypeOptionData = result
},
editVendorOptionData(item, data, index) {
this.vendorCount = index
if (!item.isEdit) {
item.isEdit = true;
} else {
if (item.name !== item.oldName) {
item.isEdit = false;
} else {
item.isEdit = false;
}
}
if (data === 'vendor') {
for (let i = 0; i < this.vendorUlData.length; i++) {
const element = this.vendorUlData[i];
if (item.id !== element.id) {
element.isEdit = false
element.value = element.oldName
}
}
}
},
editOptionData(item, data, index) {
this.modelCount = index;
if (!item.isEdit) {
item.isEdit = true;
} else {
if (item.name !== item.oldName) {
item.isEdit = false;
} else {
item.isEdit = false;
}
}
if (data === 'type') {
for (let i = 0; i < this.assetTypeOptionData.length; i++) {
let element = this.assetTypeOptionData[i];
if (item.id !== element.id) {
element.isEdit = false
element.value = element.oldName
}
}
}
if (data === 'model') {
for (let i = 0; i < this.modelUlData.length; i++) {
let element = this.modelUlData[i];
if (item.id !== element.id) {
element.isEdit = false
element.value = element.modelOldName
}
}
}
},
delOptionData(data) {
this.$confirm(this.$t("tip.confirmDelete"), {
confirmButtonText: this.$t("tip.yes"),
cancelButtonText: this.$t("tip.no"),
type: 'warning'
}).then(() => {
this.$delete("/sys/dict/delete?ids=" + data.id).then(response => {
if (response.code === 200) {
this.$message({duration: 2000, type: 'success', message: this.$t("tip.deleteSuccess")});
this.getAssetData();
this.getAssetTypeOptionData();
this.getVendorOptionData();
this.getAllModelOptionData(this.assetType);
this.getModelOptionData(this.assetType, this.vendorCode);
} else {
this.$message.error(response.msg);
}
})
});
},
tabControl(data) {
if (data === 'close') {
this.addUnitShow = false
}
},
editing() {
},
getSingleIDCData(data, item, itemData) {
if (item !== 'edit') {
this.idcSelectedData = '';
this.IDCOptionData.forEach(item => {
if (item.id === data) {
this.idcSelectedData = item;
}
});
this.getCabinetOptionData(this.assetData.idcId);
this.assetData.cabinetId = '';
this.cabinetSelectedData.uSize = '';
this.cabinetSelectedData.remark = null
} else {
this.clickFlush('idc', itemData);
this.IDCOptionData.forEach(item => {
if (item.id === data) {
this.popIdcData.id = item.id;
this.popIdcData.name = item.name;
this.popIdcData.location = item.location;
this.popIdcData.principal = item.principal;
this.popIdcData.tel = item.tel;
this.addCabIDCData.name = item.name;
this.addCabIDCData.location = item.location;
this.addCabIDCData.principal = item.principal;
this.addCabIDCData.tel = item.tel;
}
});
}
},
getSingleCabinetData(data, type, item) {
if (type !== 'edit') {
this.cabinetSelectedData.uSize = 0;
this.cabinetSelectedData.remark = null
this.cabinetOptionData.forEach(items => {
if (items.id === data) {
this.cabinetSelectedData.uSize = items.uSize
this.cabinetSelectedData.remark = items.remark
}
})
} else {
this.clickFlush('cabinet', item)
item[item.name] = !item[item.name]
this.cabinetOptionData.forEach(items => {
if (items.id === data) {
this.popCabinetData.name = items.name;
this.popCabinetData.uSize = items.uSize;
this.popCabinetData.remark = items.remark;
this.popCabinetData.idcId = items.idcId;
}
})
}
},
getSingleAsset(data) {
this.pageObj.idcIds = data.join(',')
this.getAssetData()
},
getLidata(index, item) {
this.vendorCount = index;
this.vendorCode = item.code;
this.getModelOptionData(this.assetType, this.vendorCode)
},
pageNo(val) {
this.pageObj.pageNo = val;
this.getAssetData()
},
pageSize(val) {
this.pageObj.pageSize = val;
this.getAssetData()
},
clickState(index, item, data) {
if (data === 'type') {
this.modelCount = index;
this.tempData = item;
}
if (data === 'model') {
this.modelCount = index;
this.modelClickData = item.id
}
},
transferData(data) {
if (data === 'type') {
this.assetType = this.tempData.code
this.popTypeVisible = false
this.tempData = ''
}
if (data === 'model') {
this.assetData.modelId = [this.vendorCode, this.modelClickData]
this.popCompVisible = false
this.tempData = ''
}
},
editPopoverClose(data) {
if (data === 'type') {
this.modelCount = ''
this.editPopTypeVisible = !this.editPopTypeVisible
}
if (data === 'vendor') {
this.vendorCount = ''
this.modelCount = ''
this.editPopVendorVisible = !this.editPopVendorVisible
}
if (data === 'idc') {
this.editPopIDCVisible = !this.editPopIDCVisible
}
if (data === 'cabinet') {
this.editPopCabinetVisible = !this.editPopCabinetVisible
}
},
getPrincipalName(data) {
for (let item in this.idcUserData) {
if (this.idcUserData[item].userId === data) {
return this.idcUserData[item].username
}
}
},
returnData(data) {
if (data && data !== '--') {
return data.name;
} else if (data === '--') {
return '-';
} else {
return "-";
}
},
sendStateData(data) {
this.$emit('sendStateData', 'close')
},
flushData() {
this.getAssetData();
},
clickFlush(type, itemData) {
if (type === 'idc') {
for (let i = 0; i < this.IDCOptionData.length; i++) {
const element = this.IDCOptionData[i];
if (element.id === itemData.id) {
setTimeout(() => {
element[element.name] = true;
}, 100)
} else {
element[element.name] = false
}
}
}
if (type === 'cabinet') {
for (let i = 0; i < this.cabinetOptionData.length; i++) {
const element = this.cabinetOptionData[i];
if (element.id === itemData.id) {
setTimeout(() => {
element[element.name] = true;
}, 100)
} else {
element[element.name] = false
}
}
}
},
protocolTypeChange:function(protocol){
if(protocol == 'TELNET'){
this.exporterDisableSwitch=true;
}else{
this.exporterDisableSwitch=false;
}
}
},
mounted() {
this.getUserData()
this.getIDCOptionData();
this.getVendorOptionData();
this.getAssetTypeOptionData();
window.onresize = () => {
this.tableHeight = document.documentElement.clientHeight - 200;
}
}
}
</script>
<style >
.location-selector{
width: 512px;
}
.location-selector .el-select-dropdown__item {
position: relative;
}
.location-selector .el-cascader-node__prefix{
display: none !important;
}
.cabinet-u-label .el-checkbox__original:checked + span{
background-color: orange;
}
.cabinet-u-label .el-checkbox__original:checked + span:after{
-webkit-transform: rotate(45deg) scaleY(1);
transform: rotate(45deg) scaleY(1);
}
.cabinet-u-label .is-disabled{
cursor: not-allowed;
border-color: #C0C4CC;
}
.cabinet-u-label .is-disabled-bg{
background-color: #F2F6FC !important;
}
.cabinet-u-label .is-disabled-check:after{
border-color: #C0C4CC !important;
}
</style>