mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/learning-system-portal.git
synced 2025-12-18 15:26:45 +08:00
勋章样式
This commit is contained in:
31
src/components/Portal/medalDlg.vue
Normal file
31
src/components/Portal/medalDlg.vue
Normal file
@@ -0,0 +1,31 @@
|
||||
<template>
|
||||
<!-- <el-dialog
|
||||
:close-on-click-modal="false"
|
||||
:visible.sync="interestCollection"
|
||||
:append-to-body="true" top="7vh" @close="closeDialog" custom-class="hobby-dialog">
|
||||
<div class="interest_title">
|
||||
<span class="text_84">请选择您的</span>
|
||||
<span class="text_85">学习兴趣</span>
|
||||
<span class="text_86">,至少三个,可随时调整</span>
|
||||
</div>
|
||||
<div style="margin-top:0px;min-width: 770px;max-width:950px;">
|
||||
|
||||
<div class="interest" v-for="(sys,index) in sysTypeListMap" :key="sys.id">
|
||||
<p class="portal-title-tow interest-title">{{sys.name}}</p>
|
||||
<el-checkbox-group v-model="checkboxGroup" v-if="sys.children.length > 0">
|
||||
<el-checkbox size="medium" border v-for="ch in sys.children" :label="ch.id" :key="ch.id">{{ch.name}}</el-checkbox>
|
||||
</el-checkbox-group>
|
||||
</div>
|
||||
</div>
|
||||
<div slot="footer" class="dialog-footer">
|
||||
<div><el-button type="primary" class="btn-one" @click="saveInterest()">生成我的兴趣偏好</el-button></div>
|
||||
<div><el-button @click="notYet()" class="btn-tow" type="text">暂不选择</el-button></div>
|
||||
</div>
|
||||
</el-dialog> -->
|
||||
</template>
|
||||
|
||||
<script>
|
||||
</script>
|
||||
|
||||
<style>
|
||||
</style>
|
||||
Reference in New Issue
Block a user