42 lines
879 B
Plaintext
42 lines
879 B
Plaintext
<template>
|
|
<PageWrapper>
|
|
<a-card shadow="never" size="small" class="proCard tabsCard">
|
|
<a-tabs v-model="activeName">
|
|
<a-tab-pane name="basic" label="基本设置">
|
|
<BasicSetting />
|
|
</a-tab-pane>
|
|
</a-tabs>
|
|
</a-card>
|
|
</PageWrapper>
|
|
</template>
|
|
<script lang="ts" setup>
|
|
import { ref } from 'vue';
|
|
import { PageWrapper } from '@/components/Page';
|
|
import BasicSetting from './BasicSetting.vue';
|
|
const activeName = ref('basic');
|
|
</script>
|
|
<style lang="less" scoped>
|
|
.thing-cell {
|
|
margin: 0 -16px 10px;
|
|
padding: 5px 16px;
|
|
|
|
&:hover {
|
|
background: #f3f3f3;
|
|
cursor: pointer;
|
|
}
|
|
}
|
|
|
|
.thing-cell-on {
|
|
background: #f0faff;
|
|
color: #165DFF;
|
|
|
|
:deep(.n-thing-main .n-thing-header .n-thing-header__title) {
|
|
color: #165DFF;
|
|
}
|
|
|
|
&:hover {
|
|
background: #f0faff;
|
|
}
|
|
}
|
|
</style>
|