Files
profitManage/src/views/earnManage/switch/switchRelevantData.vue
2025-10-10 18:13:25 +08:00

80 lines
3.0 KiB
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<template>
<div class="app-container">
<!-- 表格数据 -->
<el-table v-loading="loading" :data="roleList">
<template v-for="(item,index) of columns">
<el-table-column :label="item.label" :prop="item.prop" :sortable="item.sortable" :width="item.width" v-if="item.visible" :show-overflow-tooltip="true">
<template v-if="item.slotName" #default="scope">
<span v-if="scope.row && scope.row[item.prop]">{{scope.row[item.prop]}}/{{scope.row.createTime}}</span>
</template>
</el-table-column>
</template>
</el-table>
<pagination v-show="total > 0" :total="total" :page.sync="queryParams.pageNum" :limit.sync="queryParams.pageSize" @pagination="getList" />
<div style="float: right;margin-top: 20px;">
<el-button type="primary" @click="goBack">返回</el-button>
</div>
</div>
</template>
<script setup>
import {relatedBandWidth} from "@/api/disRevenue/earnManage";
export default {
name: 'SwitchRelevantData',
data() {
return {
roleList: [],
loading: true,
total: 0,
dateRange: [],
switchId: '',
// 列显隐信息
columns: [],
queryParams: {
pageNum: 1,
pageSize: 10
}
}
},
created() {
this.switchId = this.$route.query && this.$route.query.id;
this.columsList(this.$route.query && this.$route.query.bandwidthType);
this.getList();
},
methods: {
columsList(num) {
let type = false;
if (num === '4') {
type = true;
}
this. columns = [
{label: `时间`, prop: 'createTime', visible: !type},
{label: `业务代码`, prop: 'businessCode',visible: !type},
{label: `业务代码`, prop: 'businessId',visible: type},
{label: `95带宽值Mbps/日`, prop: 'bandwidth95Daily', slotName: true, visible: type},
{label: `有效95带宽值Mbps/日`, prop: 'effectiveAvgMonthlyBandwidth95', slotName: true, visible: type},
{label: `包端带宽值Mbps/日`, prop: 'packageBandwidthDaily', slotName: true, visible: type},
{label: `流量端口`, prop: 'name', visible: !type},
{label: `发送流量值bytes/s`, prop: 'outSpeed', visible: !type},
{label: `接收流量值bytes/s`, prop: 'inSpeed', visible: !type},
];
},
/** 查询角色列表 */
getList() {
this.loading = true;
relatedBandWidth(Object.assign({}, this.queryParams, {id: this.switchId})).then(response => {
this.loading = false;
this.roleList = response && response.rows;
this.total = response && response.total || response && response.data.length;
})
},
goBack() {
this.$router.back();
}
}
}
</script>
<style scoped>
</style>