2021-04-13 20:33:12 +08:00
|
|
|
<template>
|
|
|
|
|
<el-table
|
2021-04-23 20:06:58 +08:00
|
|
|
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']"
|
2021-05-07 19:10:28 +08:00
|
|
|
:sortable="item.sortable"
|
2021-04-13 20:33:12 +08:00
|
|
|
:width="`${item.width}`"
|
|
|
|
|
class="data-column"
|
|
|
|
|
>
|
|
|
|
|
<template slot="header">
|
2021-05-25 17:58:38 +08:00
|
|
|
<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.principal">
|
|
|
|
|
<template v-for="item in userData">
|
|
|
|
|
<template v-if="scope.row.principal == item.userId">{{item.username}}</template>
|
|
|
|
|
</template>
|
|
|
|
|
</template>
|
|
|
|
|
<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>
|
2021-04-23 20:06:58 +08:00
|
|
|
<template v-else-if="item.prop === 'assetNum'">
|
2021-06-07 17:45:13 +08:00
|
|
|
<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'"/>
|
2021-04-23 20:06:58 +08:00
|
|
|
{{scope.row[item.prop]}}
|
|
|
|
|
</span>
|
|
|
|
|
</template>
|
|
|
|
|
<template v-else-if="item.prop === 'alertNum'">
|
2021-06-07 17:45:13 +08:00
|
|
|
<span style="cursor: pointer" class="alert-num" @click="showBottomBox('alertMessageTab', scope.row)">
|
2021-04-23 20:06:58 +08:00
|
|
|
<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'">
|
2021-06-07 17:45:13 +08:00
|
|
|
<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'"/>
|
2021-04-23 20:06:58 +08:00
|
|
|
{{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">
|
2021-06-16 17:17:18 +08:00
|
|
|
<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'
|
2021-04-23 20:06:58 +08:00
|
|
|
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,
|
2021-05-07 19:10:28 +08:00
|
|
|
width: 80,
|
|
|
|
|
sortable:'custom'
|
2021-04-13 20:33:12 +08:00
|
|
|
}, {
|
|
|
|
|
label: this.$t('overall.name'),
|
|
|
|
|
prop: 'name',
|
2021-05-07 19:10:28 +08:00
|
|
|
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',
|
2021-05-07 19:10:28 +08:00
|
|
|
show: true,
|
|
|
|
|
sortable:'custom'
|
2021-04-13 20:33:12 +08:00
|
|
|
}, {
|
|
|
|
|
label: this.$t('config.dc.assets'),
|
2021-04-23 20:06:58 +08:00
|
|
|
prop: 'assetNum',
|
2021-05-07 19:10:28 +08:00
|
|
|
show: true,
|
|
|
|
|
sortable:'custom'
|
2021-04-27 17:38:58 +08:00
|
|
|
}, {
|
2021-04-23 20:06:58 +08:00
|
|
|
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',
|
2021-04-23 20:06:58 +08:00
|
|
|
show: false
|
2021-04-13 20:33:12 +08:00
|
|
|
}, {
|
|
|
|
|
label: this.$t('asset.principal'),
|
|
|
|
|
prop: 'principal',
|
2021-04-23 20:06:58 +08:00
|
|
|
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',
|
2021-05-07 19:10:28 +08:00
|
|
|
show: true,
|
|
|
|
|
sortable:'custom'
|
2021-04-13 20:33:12 +08:00
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
methods: {
|
2021-04-27 17:38:58 +08:00
|
|
|
showTableTooltip,
|
|
|
|
|
hideTableTooltip,
|
2021-04-13 20:33:12 +08:00
|
|
|
regNumTest (val) { // 校验是否是数字
|
|
|
|
|
return this.regNum.test(val)
|
2021-04-23 20:06:58 +08:00
|
|
|
},
|
|
|
|
|
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-27 17:38:58 +08:00
|
|
|
}
|
2021-04-13 20:33:12 +08:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</script>
|
2021-04-23 20:06:58 +08:00
|
|
|
<style scoped>
|
|
|
|
|
.colorEF7458{
|
|
|
|
|
color: #EF7458;
|
|
|
|
|
}
|
|
|
|
|
.color23BF9A{
|
|
|
|
|
color: #23BF9A;
|
|
|
|
|
}
|
|
|
|
|
</style>
|