问题修改

This commit is contained in:
cdf
2025-03-06 14:44:33 +08:00
parent 72051ba10e
commit 452e0f3dbb
21 changed files with 1913 additions and 43 deletions

View File

@@ -4,10 +4,12 @@
<el-col>
<el-tabs v-model.trim="activeName" @tab-click="handleClick" type="border-card">
<el-tab-pane label="主网监测点台帐" name="second" :style="'height:' + vh + ';'">
<Monitoringpoint v-if="activeName == 'second'"></Monitoringpoint>
</el-tab-pane>
<el-tab-pane label="主网用户台账" name="Typical" :style="'height:' + vh + ';'">
<Typical :flag="1" v-if="activeName == 'Typical'"></Typical>
</el-tab-pane>
<el-tab-pane label="主网用户台账统计" name="statistics" :style="'height:' + vh + ';'">
<statistics v-if="activeName == 'statistics'"></statistics>
</el-tab-pane>
</el-tabs>
</el-col>
@@ -16,18 +18,20 @@
</template>
<script>
import Monitoringpoint from '../../components/Monitoringpoint'
import statistics from '@/views/Account-management/components/uploadGw/statistics'
import Typical from '@/views/Account-management/components/uploadGw/Monitoringpoint'
export default {
name: 'uploadGw',
components: {
Monitoringpoint
Typical,
statistics
},
data() {
return {
vh: '',
activeName: 'first',
activeName: 'Typical',
device: ''
}
},