题库维护。刷题软件数据后台
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

18 lines
457 B

<template>
<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>
</template>
<script setup name="QuestionSetting">
import { checkPermi } from '@/utils/permission'
import SelectSource from './Components/SelectSource.vue'
const settingName = ref(1)
</script>
<style lang="scss" scoped></style>