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.
49 lines
889 B
49 lines
889 B
<template>
|
|
<el-scrollbar>
|
|
<!-- <el-config-provider :locale="locale">-->
|
|
<NuxtLayout :name="layout">
|
|
<NuxtPage></NuxtPage>
|
|
</NuxtLayout>
|
|
<!-- </el-config-provider>-->
|
|
<!-- AppConf-->
|
|
</el-scrollbar>
|
|
</template>
|
|
<script setup>
|
|
|
|
// import zhCn from 'element-plus/lib/locale/lang/zh-cn'
|
|
// const locale = computed(()=> zhCn)
|
|
// import TabLayout from "~/layouts/TabLayout.vue";
|
|
|
|
const layout = 'tab-layout'
|
|
|
|
</script>
|
|
|
|
|
|
<style lang="scss">
|
|
$prefix-cls: '#{$name-prefix}-mai-wrap';
|
|
|
|
.#{$prefix-cls} {
|
|
padding: 110px 120px;
|
|
|
|
&-content {
|
|
margin-top: -60px;
|
|
margin-left: 50px;
|
|
width: calc(100% - 300px);
|
|
h2 {
|
|
font-size: 36px;
|
|
line-height: 50px;
|
|
font-weight: 600;
|
|
margin-bottom: 47px;
|
|
}
|
|
}
|
|
|
|
&.full{
|
|
padding: 110px 290px;
|
|
.#{$prefix-cls}-content{
|
|
width: 100%;
|
|
margin: 0;
|
|
}
|
|
}
|
|
}
|
|
</style>
|