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/config/dc.vue

519 lines
19 KiB
Vue
Raw Normal View History

2020-03-25 18:38:13 +08:00
<style>
2020-02-21 17:57:19 +08:00
.dc {
height: 100%;
}
</style>
<template>
2020-07-16 17:33:20 +08:00
<div class="dc" >
<!--dc table start-->
<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">
<search-input ref="searchInput" :searchMsg="searchMsg" @search="search" :inTransform="bottomBox.inTransform"></search-input>
</div>
<button type="button" @click="add" :title="$t('overall.createDatacenter')"
class="nz-btn nz-btn-size-normal nz-btn-style-light margin-l-20" id="dc-add">
<i class="nz-icon-create-square nz-icon"></i>
</button>
2020-07-16 17:33:20 +08:00
</div>
<div class="pagination-top pagination-top-hide display-none"></div>
</div>
<el-table
class="nz-table"
:data="tableData"
border
tooltip-effect="light"
v-show="bottomBox.mainResizeShow"
v-scrollBar:el-table="'large'"
:height="mainTableHeight"
ref="dcTable"
v-loading="tools.loading"
:cell-class-name="assetStatClassName"
style="width: 100%;"
@sort-change="tableDataSort">
<el-table-column
:resizable="false"
show-overflow-tooltip
v-for="(item, index) in tools.tablelable"
v-if="item.show"
:width="item.width"
:key="`col-${index}`"
:label="item.label"
:sortable="sortableShow(item.prop)"
:prop="propTitle(item.prop)"
>
<template slot-scope="scope" :column="item">
<div v-if="item.prop == 'option'" class="content-right-options">
<!--<span :title="$t('overall.view')" @click="detail(scope.row)" class="content-right-option" :id="'dc-detail-'+scope.row.id"><i class="nz-icon nz-icon-view"></i></span>
&nbsp;-->
<span :title="$t('overall.edit')" @click="edit(scope.row)" class="content-right-option" :id="'dc-edit-'+scope.row.id"><i class="nz-icon nz-icon-edit"></i></span>
&nbsp;
<span :title="$t('overall.delete')" @click="del(scope.row)" class="content-right-option" :id="'dc-del-'+scope.row.id"><i class="el-icon-delete"></i></span>
&nbsp;
<span :title="$t('config.dc.traffic.title')" @click="configTraffic(scope.row)" class="content-right-option" :id="'dc-setting-'+scope.row.id" ><i class="el-icon-setting"></i></span>
</div>
<template v-else-if="item.prop == 'principal'">
<template v-if="scope.row.principal">
<template v-for="item in userData">
<template v-if="scope.row.principal == item.userId">{{item.username}}</template>
2020-03-25 18:38:13 +08:00
</template>
2020-02-21 17:57:19 +08:00
</template>
2020-07-16 17:33:20 +08:00
<template v-else>-</template>
</template>
<template v-else-if="item.prop == 'area'">
<template v-if="scope.row.area">{{scope.row.area.name}}</template>
<template v-else>-</template>
2020-07-16 17:33:20 +08:00
</template>
<template v-else-if="item.prop == 'assetStat' && scope.row.assetStat">
<el-popover
placement="top"
trigger="hover"
:content="$t('overall.result.total') + '' + scope.row.assetStat.total + '' + $t('asset.inStock') + '' + scope.row.assetStat.inStock + '' + $t('asset.notInStock') + '' + scope.row.assetStat.outStock">
<div slot="reference" class="dc-asset-states">
<span class="dc-asset-state dc-asset-state-total">{{scope.row.assetStat.total}}</span>
<span class="dc-asset-state dc-asset-state-in">{{scope.row.assetStat.inStock}}</span>
<span class="dc-asset-state dc-asset-state-out">{{scope.row.assetStat.outStock}}</span>
</div>
</el-popover>
</template >
<template v-else-if="item.prop == 'cabinetNum'">
<span class="link" @click="showCabinet(scope.row)">{{scope.row[item.prop]}}</span>
2020-07-16 17:33:20 +08:00
</template>
<template v-else-if="scope.row[item.prop]">{{scope.row[item.prop]}}</template>
<template v-else>-</template>
</template>
</el-table-column>
<el-table-column width="28" :resizable="false">
<template slot="header" slot-scope="scope">
<span @click.stop="elementsetShow('shezhi',$event)" class="nz-table-gear">
<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-25 18:38:13 +08:00
</div>
<transition name="el-zoom-in-bottom">
<bottom-box v-if="bottomBox.showSubList" :sub-resize-show="bottomBox.subResizeShow" :obj="bottomBox.dc" :is-full-screen="bottomBox.isFullScreen" :from="'dc'" :target-tab.sync="bottomBox.targetTab" :detail="bottomBox.dcDetail"
@closeSubList="bottomBox.showSubList = false" @fullScreen="fullScreen" @exitFullScreen="exitFullScreen" @listResize="listResize" ></bottom-box>
</transition>
2020-02-21 17:57:19 +08:00
</div>
2020-07-16 17:33:20 +08:00
<!--dc table end-->
<element-set
v-if="tools.showElementSet"
2020-07-16 17:33:20 +08:00
v-clickoutside="elementsetHide"
:dropCol="tools.dropCol"
2020-07-16 17:33:20 +08:00
@tablelable="tablelabelEmit"
:table-title="tableTitle"
ref="elementset"
></element-set>
<transition name="right-box">
<dc-box @close="closeDcBox" :dc="dc" :user-data="userData" @reload="getTableData" v-if="rightBox.dc.show"></dc-box>
</transition>
<transition name="right-box">
<traffic-setting-box @close="closeTrafficBox" :dc="dc" ref="trafficBox" v-if="rightBox.trafficSetting.show"></traffic-setting-box>
</transition>
</div>
2020-02-21 17:57:19 +08:00
</template>
<script>
import bus from '../../../libs/bus';
2020-07-16 17:33:20 +08:00
import dcBox from "../../common/rightBox/dcBox"; //dc弹框
2020-04-28 17:39:54 +08:00
import trafficSettingBox from "../../common/rightBox/trafficSetting/trafficSettingBox";
2020-02-21 17:57:19 +08:00
export default {
name: "dc",
2020-04-28 17:39:54 +08:00
components:{
2020-07-16 17:33:20 +08:00
'traffic-setting-box': trafficSettingBox,
'dc-box': dcBox
2020-04-28 17:39:54 +08:00
},
2020-02-21 17:57:19 +08:00
data() {
return {
/*二级页面相关*/
bottomBox: {
dcDetail: {},
dc: {},
mainResizeShow: true, //dom高度改变时是否展示|隐藏
subResizeShow: true,
isFullScreen: false, //全屏状态
showSubList: false, //是否显示二级列表
targetTab: '', //显示二级列表中的哪个页签
inTransform: false, //搜索框相关搜索条件下拉框是否在transform里
},
2020-03-25 18:38:13 +08:00
mainTableHeight: this.$tableHeight.normal, //主列表table高度
/*工具参数*/
tools: {
loading: false, //是否显示table加载动画
toTopBtnTop: this.$tableHeight.toTopBtnTop, //to-top按钮的top属性
tableHover: false, //控制滚动条和top按钮同时出现
showElementSet: false, //自定义列弹框是否显示
showTopBtn: false, //显示To top按钮
tablelable: [], //从缓存中加载的table header
dropCol: [], //自定义列工具的数据
},
tableId: 'dcTable', //需要分页的table的id用于记录每页数量
2020-07-15 22:11:33 +08:00
dc: {},
blankDc: {
2020-02-21 17:57:19 +08:00
id: '',
name: '',
location: '',
tel: '',
principal: '',
2020-02-24 20:27:14 +08:00
area: {
2020-07-16 17:33:20 +08:00
id: 0,
2020-02-24 20:27:14 +08:00
name: ''
}
2020-02-21 17:57:19 +08:00
},
2020-07-16 17:33:20 +08:00
rightBox: {
dc: {show: false},
trafficSetting: {show: false}
},
2020-02-21 17:57:19 +08:00
pageObj: {
pageNo: 1,
pageSize: 50,
2020-02-21 17:57:19 +08:00
total: 0
},
tableTitle: [
{
label: 'ID',
prop: 'id',
show: true,
width: 80
}, {
label: this.$t("overall.name"),
prop: 'name',
show: true,
}, {
label: this.$t('config.dc.area'),
prop: 'area',
show: true
}, {
label: this.$t("asset.location"),
prop: 'location',
show: true,
}, {
label: this.$t("config.dc.cabinetNum"),
prop: 'cabinetNum',
show: true,
2020-02-21 17:57:19 +08:00
}, {
label: this.$t("config.dc.assets"),
prop: 'assetStat',
2020-02-21 17:57:19 +08:00
show: true,
}, {
label: this.$t('asset.tel'),
2020-02-21 17:57:19 +08:00
prop: 'tel',
show: true,
}, {
label: this.$t('asset.principal'),
2020-02-21 17:57:19 +08:00
prop: 'principal',
show: true
}, {
label: this.$t('config.account.option'),
prop: 'option',
show: true,
width: 120
}
],
tableData: [],
userData: [],
searchMsg: { //给搜索框子组件传递的信息
zheze_none: true,
searchLabelList: [{
id: 10,
name: this.$t('overall.name'),
type: 'input',
label: 'name',
disabled: false
}],
},
searchLabel: {}, //搜索参数
tabShow: 1, // 控制显示一级页面和二级页面 1 dc 2cabinet
2020-02-21 17:57:19 +08:00
}
},
methods: {
elementsetShow(s, e) {
this.tools.showElementSet = true;
2020-02-21 17:57:19 +08:00
var eventfixed = {
shezhi: 0,
screen: 0
};
eventfixed[s] = 1;
e.preventDefault();
this.$store.commit('setHeaderTable', this.tools.tablelable);
2020-02-21 17:57:19 +08:00
this.$store.commit('setEventfixed', eventfixed);
const h = document.documentElement.clientHeight;
const w = document.documentElement.clientWidth;
const dw = this.$refs.elementset.$el.offsetWidth;
const dh = this.$refs.elementset.$el.offsetHeight;
let positionx =
e.clientX + dw <= w - 10 ? e.clientX + 14 : e.clientX + 14 - dw;
let positiony =
e.clientY + dh <= h - 10
? e.clientY + 20
: e.clientY + 20 - (e.clientY + dh - h);
this.$store.commit('setPosition', {positionx, positiony});
},
elementsetHide() {
//悬浮点击空白隐藏
this.$refs.elementset.elementsetHide();
},
assetStatClassName(param) {
if (param.column.label == this.$t("config.dc.assets")) {
return "asset-state";
}
return "";
},
2020-02-21 17:57:19 +08:00
tablelabelEmit(data) {
//获取子组件传过来的参数
this.$store.commit('setHeaderTable', data);
this.tools.tablelable = data;
2020-02-21 17:57:19 +08:00
},
jumpTo(data, id) {
bus.$emit("menu-change", data);
2020-02-21 17:57:19 +08:00
this.$router.push({
path: "/" + data,
query: {
t: +new Date()
}
});
},
2020-07-16 17:33:20 +08:00
edit(u) {
this.dc = JSON.parse(JSON.stringify(u));
if (!this.dc.area) {
this.$set(this.dc, 'area', {id: '', name: ''});
2020-02-24 20:27:14 +08:00
}
2020-07-16 17:33:20 +08:00
this.rightBox.dc.show = true;
2020-02-21 17:57:19 +08:00
},
2020-07-16 17:33:20 +08:00
configTraffic(u) {
this.dc = JSON.parse(JSON.stringify(u));
this.rightBox.trafficSetting.show = true;
2020-04-28 17:39:54 +08:00
},
2020-07-16 17:33:20 +08:00
detail(u) {
this.bottomBox.dc = JSON.parse(JSON.stringify(u));
if (!this.bottomBox.dc.area) {
this.$set(this.bottomBox.dc, 'area', {id: '', name: ''});
2020-02-24 20:27:14 +08:00
}
this.bottomBox.targetTab = "detail";
this.bottomBox.showSubList = true;
2020-03-27 15:41:26 +08:00
},
// 全屏
fullScreen() {
2020-07-15 22:11:33 +08:00
let vm = this;
this.$bottomBoxWindow.fullScreen(vm);
},
// 退出全屏
exitFullScreen() {
2020-07-15 22:11:33 +08:00
let vm = this;
this.$bottomBoxWindow.exitFullScreen(vm);
},
// 鼠标拖动二级列表
listResize(e) {
2020-07-15 22:11:33 +08:00
let vm = this;
this.$bottomBoxWindow.listResize(vm, e);
},
2020-03-27 15:41:26 +08:00
convertToDetail(obj) {
let detail = JSON.parse(JSON.stringify(obj));
return detail;
/*let detail = [];
2020-03-27 15:41:26 +08:00
detail.push({label: this.$t("overall.name"), value: obj.name});
detail.push({label: this.$t("config.dc.area"), value: obj.area.name});
detail.push({label: this.$t("asset.location"), value: obj.location});
detail.push({label: this.$t("config.dc.cabinetNum"), value: obj.cabinetNum});
let assets = this.$t('overall.result.total') + ' ' + obj.assetStat.total + '' + this.$t('asset.inStock') + ' ' + obj.assetStat.inStock + '' + this.$t('asset.notInStock') + ' ' + obj.assetStat.outStock;
detail.push({label: this.$t("config.dc.assets"), value: assets});
detail.push({label: this.$t("asset.tel"), value: obj.tel});
2020-03-27 15:41:26 +08:00
let principal = '';
for (let i = 0; i < this.userData.length; i++) {
if (this.userData[i].userId == obj.principal) {
principal = this.userData[i].username;
break;
}
}
detail.push({label: this.$t("asset.principal"), value: principal});
return detail;*/
2020-02-21 17:57:19 +08:00
},
2020-07-15 22:11:33 +08:00
add() {
this.dc = this.newDc();
2020-07-16 17:33:20 +08:00
this.rightBox.dc.show = true;
2020-07-15 22:11:33 +08:00
},
newDc() {
return JSON.parse(JSON.stringify(this.blankDc));
2020-02-24 20:27:14 +08:00
},
2020-07-16 17:33:20 +08:00
closeDcBox(refresh) {
this.rightBox.dc.show = false;
if (refresh) {
this.getTableData();
this.$store.commit("dcListChange");
2020-07-16 17:33:20 +08:00
}
},
closeTrafficBox(refresh) {
this.rightBox.trafficSetting.show = false;
if (refresh) {
this.getTableData();
}
},
del(u) {
2020-02-21 17:57:19 +08:00
this.$confirm(this.$t("tip.confirmDelete"), {
confirmButtonText: this.$t("tip.yes"),
cancelButtonText: this.$t("tip.no"),
type: 'warning'
}).then(() => {
this.$delete("idc?ids=" + u.id).then(response => {
2020-02-21 17:57:19 +08:00
if (response.code === 200) {
this.$message({duration: 1000, type: 'success', message: this.$t("tip.deleteSuccess")});
this.getTableData();
this.$store.commit("dcListChange");
2020-02-21 17:57:19 +08:00
} else {
this.$message.error(response.msg);
}
});
});
},
2020-07-16 17:33:20 +08:00
getTableData() {
2020-02-21 17:57:19 +08:00
this.$set(this.searchLabel, "pageNo", this.pageObj.pageNo);
this.$set(this.searchLabel, "pageSize", this.pageObj.pageSize);
this.tools.loading = true;
2020-02-21 17:57:19 +08:00
this.$get('idc', this.searchLabel).then(response => {
this.tools.loading = false;
2020-02-21 17:57:19 +08:00
if (response.code === 200) {
this.tableData = response.data.list;
this.pageObj.total = response.data.total
}
})
},
getUserData() {
2020-07-15 22:11:33 +08:00
return new Promise(resolve => {
this.$get('sys/user/list', {pageSize: -1, pageNo: 1}).then(response => {
if (response.code === 200) {
this.userData = response.data.list;
}
resolve();
});
});
2020-02-21 17:57:19 +08:00
},
pageNo(val) {
this.pageObj.pageNo = val;
this.getTableData();
},
pageSize(val) {
localStorage.setItem('nz-pageSize-' + localStorage.getItem('nz-username') + '-' + this.tableId, val);
2020-02-21 17:57:19 +08:00
this.pageObj.pageSize = val;
this.getTableData();
},
2020-07-15 22:11:33 +08:00
search(searchObj) {
let orderBy = '';
if(this.searchLabel.orderBy) {
orderBy = this.searchLabel.orderBy;
}
2020-02-21 17:57:19 +08:00
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);
}
2020-02-21 17:57:19 +08:00
this.getTableData();
},
2020-07-15 22:11:33 +08:00
showCabinet(dc) {
this.bottomBox.targetTab = 'cabinet';
this.bottomBox.dc = JSON.parse(JSON.stringify(dc));
this.bottomBox.showSubList = true;
},
//是否需要排序
2020-07-15 22:11:33 +08:00
sortableShow(prop) {
switch(prop) {
case 'id':
case 'name':
case 'area':
return'custom';
default : return false;
}
},
// prop字段
propTitle(prop){
switch(prop){
case 'id': return'i.id';
case 'name': return'i.name';
case 'area': return'sa.name';
default : return prop;
}
},
// 数据排序
tableDataSort(item){
2020-07-15 22:11:33 +08:00
let orderBy = '';
if(item.order === 'ascending'){
orderBy = item.prop;
}
2020-07-15 22:11:33 +08:00
if(item.order === 'descending'){
orderBy = '-' + item.prop;
}
this.$set(this.searchLabel, "orderBy", orderBy);
this.getTableData();
},
2020-03-25 18:38:13 +08:00
},
watch: {
'bottomBox.dc': {
2020-03-27 15:41:26 +08:00
deep: true,
handler(n) {
2020-07-16 17:33:20 +08:00
if (n.id) {
this.bottomBox.dcDetail = this.convertToDetail(n);
2020-07-16 17:33:20 +08:00
}
2020-03-27 15:41:26 +08:00
}
},
'bottomBox.showSubList': function(n) {
let vm = this;
this.$bottomBoxWindow.showSubListWatch(vm, n);
2020-02-21 17:57:19 +08:00
}
},
2020-03-25 18:38:13 +08:00
destroyed() {
window.onresize = null;
},
2020-02-21 17:57:19 +08:00
mounted() {
//是否存在分页缓存
let pageSize = localStorage.getItem('nz-pageSize-' + localStorage.getItem('nz-username') + '-' + this.tableId);
if (pageSize != 'undefined' && pageSize != null) {
2020-03-25 18:38:13 +08:00
this.pageObj.pageSize = pageSize;
}
2020-02-21 17:57:19 +08:00
this.getTableData();
this.$nextTick(function(){
this.getUserData();//绑定滚动条事件控制top按钮
let el = this.$refs.dcTable.$el.querySelector(".el-table__body-wrapper");
if (el._ps_) {
el.addEventListener("ps-scroll-y", () => {
if (el._ps_.scrollbarYTop > 100) {
this.bottomBox.showTopBtn = true;
} else {
this.bottomBox.showTopBtn = false;
}
});
el.addEventListener("mouseenter", () => {
this.tools.tableHover = true;
});
el.addEventListener("mouseleave", () => {
this.tools.tableHover = false;
});
window.onresize = function() {
el._ps_.update();
};
}
2020-02-21 17:57:19 +08:00
});
this.tools.tablelable = localStorage.getItem("nz-tableTitle-" + localStorage.getItem("nz-username") + "-" + this.$route.path)
2020-02-21 17:57:19 +08:00
? JSON.parse(localStorage.getItem("nz-tableTitle-" + localStorage.getItem("nz-username") + "-" + this.$route.path))
: this.tableTitle;
this.tools.dropCol = localStorage.getItem("nz-tableTitle-" + localStorage.getItem("nz-username") + "-" + this.$route.path)
2020-02-21 17:57:19 +08:00
? JSON.parse(localStorage.getItem("nz-tableTitle-" + localStorage.getItem("nz-username") + "-" + this.$route.path))
: this.tableTitle;
}
}
</script>