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.
|
|
|
<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>
|