38 lines
841 B
Vue
38 lines
841 B
Vue
|
|
<template>
|
||
|
|
<div class="resource-management">
|
||
|
|
<h1 class="page-title">资源管理</h1>
|
||
|
|
|
||
|
|
<el-tabs v-model="activeTab" class="resource-tabs">
|
||
|
|
<el-tab-pane label="文章储备" name="articles">
|
||
|
|
<ArticleManagement />
|
||
|
|
</el-tab-pane>
|
||
|
|
<el-tab-pane label="数据记录" name="data">
|
||
|
|
<DataRecords />
|
||
|
|
</el-tab-pane>
|
||
|
|
</el-tabs>
|
||
|
|
</div>
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<script setup lang="ts">
|
||
|
|
import { ref } from 'vue';
|
||
|
|
import { ElTabs, ElTabPane } from 'element-plus';
|
||
|
|
import ArticleManagement from './components/ArticleManagement.vue';
|
||
|
|
import DataRecords from './components/DataRecords.vue';
|
||
|
|
|
||
|
|
const activeTab = ref('articles');
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<style lang="scss" scoped>
|
||
|
|
.resource-management {
|
||
|
|
padding: 20px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.page-title {
|
||
|
|
font-size: 28px;
|
||
|
|
font-weight: 600;
|
||
|
|
color: #141F38;
|
||
|
|
margin-bottom: 24px;
|
||
|
|
}
|
||
|
|
</style>
|
||
|
|
|