题库维护。刷题软件数据后台
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.
ss-tiku-manage-web/src/views/Question/Setting/index.vue

19 lines
457 B

2 weeks ago
<template>
1 week ago
<div>
<el-tabs v-model="settingName">
<el-tab-pane label="选择题库" :name="1" v-if="checkPermi(['Question:Setting:DataSource'])">
<SelectSource />
</el-tab-pane>
</el-tabs>
</div>
2 weeks ago
</template>
1 week ago
<script setup name="QuestionSetting">
import { checkPermi } from '@/utils/permission'
import SelectSource from './Components/SelectSource.vue'
const settingName = ref(1)
</script>
2 weeks ago
<style lang="scss" scoped></style>