|
@@ -15,7 +15,7 @@
|
|
<SvgIcon icon-class="menu-2" size="24" />
|
|
<SvgIcon icon-class="menu-2" size="24" />
|
|
<template v-for="(item, m) in menuList">
|
|
<template v-for="(item, m) in menuList">
|
|
<span :key="m">{{ item }}</span>
|
|
<span :key="m">{{ item }}</span>
|
|
- <span v-if="index < menuList.length - 1" :key="`separator-${m}`" class="separator">/</span>
|
|
|
|
|
|
+ <span v-if="m < menuList.length - 1" :key="`separator-${m}`" class="separator">/</span>
|
|
</template>
|
|
</template>
|
|
</span>
|
|
</span>
|
|
<CoursewarePreview :data="data" />
|
|
<CoursewarePreview :data="data" />
|
|
@@ -306,7 +306,7 @@ export default {
|
|
}
|
|
}
|
|
|
|
|
|
.content {
|
|
.content {
|
|
- width: 1106px;
|
|
|
|
|
|
+ width: calc($courseware-width + 6px);
|
|
margin: 24px auto 0;
|
|
margin: 24px auto 0;
|
|
background-color: #fff;
|
|
background-color: #fff;
|
|
border: 3px solid #f44444;
|
|
border: 3px solid #f44444;
|
|
@@ -325,30 +325,6 @@ export default {
|
|
border-top-left-radius: 12px;
|
|
border-top-left-radius: 12px;
|
|
border-bottom-right-radius: 16px;
|
|
border-bottom-right-radius: 16px;
|
|
}
|
|
}
|
|
-
|
|
|
|
- .courserware {
|
|
|
|
- display: flex;
|
|
|
|
- flex-direction: column;
|
|
|
|
- row-gap: 6px;
|
|
|
|
- width: 100%;
|
|
|
|
- min-height: 500px;
|
|
|
|
- padding: 24px;
|
|
|
|
- background-color: #fff;
|
|
|
|
- background-repeat: no-repeat;
|
|
|
|
- border-bottom-right-radius: 12px;
|
|
|
|
- border-bottom-left-radius: 12px;
|
|
|
|
-
|
|
|
|
- .row {
|
|
|
|
- display: grid;
|
|
|
|
- gap: 16px;
|
|
|
|
-
|
|
|
|
- .col {
|
|
|
|
- display: grid;
|
|
|
|
- gap: 16px;
|
|
|
|
- overflow: auto;
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|