问题修改
This commit is contained in:
@@ -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: ''
|
||||
}
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user