|
@@ -23,10 +23,10 @@
|
|
|
<div class="choose">
|
|
|
<div class="all_choose" v-for="(item, index) in CourseType[0]" :key="index"
|
|
|
:style="{ margin: !CourseTypeJson[item.id].length && 0 }">
|
|
|
- <div v-if="CourseTypeJson[item.id].length"><span>{{ item.name }}</span>:</div>
|
|
|
+ <span v-if="CourseTypeJson[item.id].length">{{ item.name }}:</span>
|
|
|
<div class="typeCss" v-if="CourseTypeJson[item.id].length">
|
|
|
<div class="cName" @click="getCourse(item.name, '', item.id, 1)"
|
|
|
- :class="typeE.indexOf(item.id) != -1 ? 'isCType' : ''" style="min-width: fit-content;width: auto;">
|
|
|
+ :class="typeE.indexOf(item.id) != -1 ? 'isCType' : ''">
|
|
|
全部
|
|
|
</div>
|
|
|
<div v-for="(item1, index1) in CourseTypeJson[item.id]" :key="index + '-' + index1" :label="item1.id"
|
|
@@ -1082,24 +1082,21 @@ export default {
|
|
|
display: flex;
|
|
|
flex-direction: row;
|
|
|
align-items: baseline;
|
|
|
- margin: 10px 0;
|
|
|
+ /* margin: 2px 0; */
|
|
|
width: 100%;
|
|
|
}
|
|
|
|
|
|
-.all_choose>div:nth-child(1) span {
|
|
|
- text-align-last: justify;
|
|
|
- width: 100%;
|
|
|
+.all_choose>span {
|
|
|
+ min-width: 80px;
|
|
|
display: block;
|
|
|
+ letter-spacing: 14px;
|
|
|
}
|
|
|
|
|
|
-.all_choose>div:nth-child(1) {
|
|
|
- min-width: 80px;
|
|
|
- width: 80px;
|
|
|
+.all_choose>span:nth-child(1) {
|
|
|
font-weight: bold;
|
|
|
- margin-right: 10px;
|
|
|
- display: flex;
|
|
|
}
|
|
|
|
|
|
+
|
|
|
.all_choose>>>.el-checkbox-group {
|
|
|
display: flex;
|
|
|
flex-direction: row;
|