中航光电热表web
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

42 lines
748 B

8 months ago
<template>
<div style="width: 100%;height: 100%;transform-origin: center;">
8 months ago
<!-- <work-base2 v-if="setting.styleRadio=='2'"></work-base2> -->
<work-base></work-base>
8 months ago
8 months ago
</div>
</template>
<script>
import workBase from './components/workbase.vue';
8 months ago
import workBase2 from './components/workbase2.vue';
8 months ago
import { mapGetters } from 'vuex';
export default {
name: 'wel',
components:{
8 months ago
workBase,
workBase2
},
8 months ago
data() {
return {
activeNames: ['1', '2', '3', '5'],
logActiveNames: ['42'],
};
},
computed: {
8 months ago
...mapGetters(['userInfo','setting']),
8 months ago
},
methods: {
handleChange(val) {
window.console.log(val);
},
},
};
</script>
<style>
.el-font-size {
font-size: 14px;
}
</style>