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/projectTable.vue

172 lines
5.1 KiB
Vue
Raw Normal View History

2021-04-13 10:03:49 +08:00
<template>
<el-table
id="userTable"
ref="dataTable"
:data="tableData"
:height="height"
2021-04-30 17:11:34 +08:00
style="width: calc(100% - 25px)"
2021-04-13 10:03:49 +08:00
border
@header-dragend="dragend"
@sort-change="tableDataSort"
@selection-change="selectionChange"
2021-04-13 10:03:49 +08:00
>
<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']"
:width="`${item.width}`"
class="data-column"
>
<template slot="header">
<span>{{item.label}}</span>
<div class="col-resize-area"></div>
</template>
<template slot-scope="scope" :column="item">
<template v-if="item.prop === 'name'">
<span class="">
{{scope.row[item.prop]}}
</span>
</template>
<template v-else-if="item.prop === 'moduleNum'" >
<span class="module-num" @click="jumpModule(scope.row)">
<i class="nz-icon nz-icon-overview-module monitorColor"/>
{{scope.row[item.prop]}}
</span>
2021-04-13 10:03:49 +08:00
</template>
<template v-else-if="item.prop === 'endpointNum'">
<span class="endpoint-num" @click="jumpEndpoint(scope.row)" >
<i class="nz-icon nz-icon-overview-endpoint monitorColor"/>
{{scope.row[item.prop]}}
</span>
2021-04-13 10:03:49 +08:00
</template>
<template v-else-if="item.prop === 'alertNum'">
<span class="alert-num">
<i class="nz-icon nz-icon-overview-alert" :class="scope.row[item.prop]>0?'colorEF7458':'color23BF9A'"/>
{{scope.row[item.prop]}}
</span>
2021-04-13 10:03:49 +08:00
</template>
<span v-else>{{scope.row[item.prop] ? scope.row[item.prop] : ''}}</span>
</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">
<button class="table-operation-item" @click="changeProjectTopo( scope.row)"><i class="nz-icon nz-icon-view1"></i></button>
<el-dropdown size="medium" trigger="hover" @command="tableOperation">
<div class="table-operation-item table-operation-item--more">
<span></span><i class="nz-icon nz-icon-arrow-down"></i>
</div>
<el-dropdown-menu slot="dropdown">
2021-04-22 15:52:32 +08:00
<el-dropdown-item :command="['edit', scope.row]" v-has="'project_edit'"><i class="nz-icon nz-icon-edit"></i><span class="operation-dropdown-text">{{$t('overall.edit')}}</span></el-dropdown-item>
<el-dropdown-item :command="['delete', scope.row, `sys/user?ids=${scope.row.id}`]" :disabled="scope.row.id === 1" v-has="'project_delete'"><i class="nz-icon nz-icon-delete"></i><span class="operation-dropdown-text">{{$t('overall.delete')}}</span></el-dropdown-item>
2021-04-13 10:03:49 +08:00
</el-dropdown-menu>
</el-dropdown>
</div>
</el-table-column>
</el-table>
</template>
<script>
import table from '@/components/common/mixin/table'
export default {
name: 'userTable',
mixins: [table],
data () {
return {
tableTitle: [ // 原始table列
{
label: 'ID',
prop: 'id',
show: true,
width: 80
}, {
label: this.$t('project.project.project'),
prop: 'name',
show: true,
minWidth: 150
2021-04-13 10:03:49 +08:00
}, {
label: this.$t('project.module.module'),
prop: 'moduleNum',
show: true,
width: 150
}, {
label: this.$t('project.endpoint.endpoint'),
prop: 'endpointNum',
show: true,
width: 150
}, {
label: this.$t('project.endpoint.alerts'),
2021-04-13 10:03:49 +08:00
prop: 'alertNum',
show: true,
width: 150
},
{
label: this.$t('overall.remark'),
prop: 'remark',
show: false,
2021-04-13 10:03:49 +08:00
minWidth: 150
}
]
}
},
methods: {
changeProjectTopo (project) {
this.$store.commit('currentProjectChange', project)
},
jumpModule (row) {
localStorage.setItem('moduleProjectId', row.id)
this.$router.push({ path: '/monitor/module' })
},
jumpEndpoint (row) {
localStorage.setItem('endpointProjectId', row.id)
this.$router.push({ path: '/monitor/endpoint' })
2021-04-13 10:03:49 +08:00
}
},
computed: {
isCurrentUser () {
return function (username) {
return localStorage.getItem('nz-username') === username
}
}
}
}
</script>
<style scoped lang="scss">
.module-num{
font-size: 14px;
font-weight: 400;
cursor: pointer;
padding: 0 3px;
cursor: pointer;
.nz-icon-overview-module{
color: rgb(122, 208, 188)
}
}
.alert-num{
padding: 0 3px;
cursor: pointer;
border-radius: 2px;
}
.colorEF7458{
color: #EF7458;
}
.color23BF9A{
color: #23BF9A;
}
</style>