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/table/settings/dcTable.vue

207 lines
6.5 KiB
Vue
Raw Normal View History

2021-04-13 20:33:12 +08:00
<template>
<el-table
id="dcTable"
2021-04-13 20:33:12 +08:00
ref="dataTable"
:data="tableData"
:height="height"
border
@header-dragend="dragend"
@sort-change="tableDataSort"
@selection-change="selectionChange"
>
<el-table-column
:resizable="false"
align="center"
type="selection"
width="55">
</el-table-column>
<el-table-column
v-for="(item, index) in customTableTitle"
v-if="item.show"
:key="`col-${index}`"
:fixed="item.fixed"
:label="item.label"
:min-width="`${item.minWidth}`"
:prop="item.prop"
:resizable="true"
:sort-orders="['ascending', 'descending']"
:sortable="item.sortable"
2021-04-13 20:33:12 +08:00
:width="`${item.width}`"
class="data-column"
>
<template slot="header">
<span class="data-column__span">{{item.label}}</span>
2021-04-13 20:33:12 +08:00
<div class="col-resize-area"></div>
</template>
<template slot-scope="scope" :column="item">
<template v-if="item.prop === 'principal'">
<template v-if="scope.row.adminUser">{{ scope.row.adminUser.username }}</template>
2021-04-13 20:33:12 +08:00
<template v-else>-</template>
</template>
<template v-else-if="item.prop === 'state'">
<el-switch
v-model="scope.row.state"
2021-05-27 14:09:02 +08:00
:disabled="!hasButton('dc_edit') || !hasButton('dc_edit')"
2021-04-13 20:33:12 +08:00
active-color="#ee9d3f"
active-value="ON"
inactive-value="OFF"
2021-06-02 16:55:17 +08:00
@change="(val)=>{$emit('statusChange', scope.row)}"
2021-04-13 20:33:12 +08:00
/>
</template>
<template v-else-if="item.prop === 'longitude'">
<template v-if="regNumTest(scope.row.longitude)">{{scope.row.longitude}}</template>
<template v-else>-</template>
</template>
<template v-else-if="item.prop === 'latitude'">
<template v-if="regNumTest(scope.row.latitude)">{{scope.row.latitude}}</template>
<template v-else>-</template>
</template>
<template v-else-if="item.prop === 'assetNum'">
<span style="cursor: pointer" class="asset-num" @click="showBottomBox('asset', scope.row)">
2021-04-30 17:02:43 +08:00
<i class="nz-icon nz-icon-overview-project monitorColor" :class="scope.row[item.prop]>0?'color23BF9A':'color23BF9A'"/>
{{scope.row[item.prop]}}
</span>
</template>
<template v-else-if="item.prop === 'alertNum'">
<span style="cursor: pointer" class="alert-num" @click="showBottomBox('alertMessageTab', scope.row)">
<i class="nz-icon nz-icon-overview-alert" :class="scope.row[item.prop]>0?'colorEF7458':'color23BF9A'"/>
{{scope.row[item.prop]}}
</span>
</template>
2021-04-13 20:33:12 +08:00
<template v-else-if="item.prop === 'cabinetNum'">
<span style="cursor: pointer" class="cabinet-num" @click="showBottomBox('cabinet', scope.row)">
2021-04-30 17:02:43 +08:00
<i class="nz-icon nz-icon-cabinet monitorColor" :class="scope.row[item.prop]>0?'color23BF9A':'colorEF7458'"/>
{{scope.row[item.prop]}}
</span>
2021-04-13 20:33:12 +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
:resizable="false"
:width="operationWidth"
fixed="right">
<div slot="header" class="table-operation-title">{{$t('overall.option')}}</div>
<div slot-scope="scope" class="table-operation-items">
2021-05-27 14:09:02 +08:00
<button class="table-operation-item" v-has="'dc_edit'" @click="tableOperation(['edit', scope.row])"><i class="nz-icon nz-icon-edit"></i></button>
2021-05-19 14:26:09 +08:00
<el-dropdown size="medium" v-has="['dc_delete']" trigger="hover" @command="tableOperation">
2021-04-13 20:33:12 +08:00
<div class="table-operation-item table-operation-item--more">
2021-05-27 13:53:42 +08:00
<i class="nz-icon nz-icon-more3"></i>
2021-04-13 20:33:12 +08:00
</div>
<el-dropdown-menu slot="dropdown">
<el-dropdown-item v-has="'dc_delete'" :command="['delete', scope.row]"><i class="nz-icon nz-icon-delete"></i><span class="operation-dropdown-text">{{$t('overall.delete')}}</span></el-dropdown-item>
2021-04-13 20:33:12 +08:00
</el-dropdown-menu>
</el-dropdown>
</div>
</el-table-column>
</el-table>
</template>
<script>
import table from '@/components/common/mixin/table'
import { showTableTooltip, hideTableTooltip } from '@/components/common/js/tools'
2021-04-13 20:33:12 +08:00
export default {
name: 'dcTable',
mixins: [table],
data () {
return {
regNum: /^[0-9]+.?[0-9]*/,
tableTitle: [
{
label: 'ID',
prop: 'id',
show: true,
width: 80,
sortable: 'custom'
2021-04-13 20:33:12 +08:00
}, {
label: this.$t('overall.name'),
prop: 'name',
show: true,
sortable: 'custom'
2021-04-13 20:33:12 +08:00
}, {
label: this.$t('asset.location'),
prop: 'location',
show: true
}, {
label: this.$t('config.dc.cabinetNum'),
prop: 'cabinetNum',
show: true,
sortable: 'custom'
2021-04-13 20:33:12 +08:00
}, {
label: this.$t('config.dc.assets'),
prop: 'assetNum',
show: true,
sortable: 'custom'
}, {
label: this.$t('config.dc.alert'),
prop: 'alertNum',
2021-04-13 20:33:12 +08:00
show: true
}, {
label: this.$t('asset.tel'),
prop: 'tel',
show: false
2021-04-13 20:33:12 +08:00
}, {
label: this.$t('asset.principal'),
prop: 'principal',
show: false
2021-04-13 20:33:12 +08:00
}, {
label: this.$t('config.dc.longitude'),
prop: 'longitude',
show: false
}, {
label: this.$t('config.dc.latitude'),
prop: 'latitude',
show: false
}, {
label: this.$t('config.dc.state'),
prop: 'state',
show: true,
sortable: 'custom'
2021-04-13 20:33:12 +08:00
}
]
}
},
mounted () {
console.log(this.customTableTitle)
},
2021-04-13 20:33:12 +08:00
methods: {
showTableTooltip,
hideTableTooltip,
2021-04-13 20:33:12 +08:00
regNumTest (val) { // 校验是否是数字
return this.regNum.test(val)
},
messageStyle (title, row) {
if (title.prop === 'alertNum') {
if (row.alertNum > 0) {
return 'danger'
} else {
return 'success'
}
}
if (title.label === 'assettNum') {
if (row.state === 3) {
return 'suspended'
} else {
if (row.endpointDownNum > 0) {
return 'danger'
} else {
return 'success'
}
}
}
return ''
}
2021-04-13 20:33:12 +08:00
}
}
</script>
<style scoped>
.colorEF7458{
color: #EF7458;
}
.color23BF9A{
color: #23BF9A;
}
</style>