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