wms-antdvue/.svn/pristine/46/468922c731fade32c5adb346ae17a1d14e270209.svn-base
2024-11-07 16:33:03 +08:00

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>