This commit is contained in:
binbin_pan 2024-12-20 00:15:53 +08:00
parent 1765100a56
commit 6573ff18ea
1 changed files with 7 additions and 6 deletions

View File

@ -14,7 +14,7 @@
<div v-for="(stageItem, stageIndex) in listStage" :key="stageIndex" :title="stageItem.stageName">
<div class="item-stage" @click="handleShow(stageItem)">
<span style="font-size: 18px; margin: 0 10px">{{ stageItem.stageName }}</span>
<u-icon :name="stageItem.isShow ? 'arrow-down' : 'arrow-up'" size="20" />
<u-icon :name="!stageItem.isShow ? 'arrow-down' : 'arrow-up'" size="20" style="margin: 0 5px" />
</div>
<div v-if="stageItem.isShow">
<div v-for="(content, conIndex) in stageItem.listStageContent" :key="conIndex">
@ -173,7 +173,7 @@ export default {
this.$verificationToken()
uni.request({
method: 'post',
url: config.bmwUrl + '/studyWork/StudyWorkAll',
url: config.bmwUrl + '/studyWork/StudyWorkAllApp',
data: params,
header: {
'Content-Type': 'application/x-www-form-urlencoded',
@ -205,7 +205,7 @@ export default {
stageId: content.stageId, // id
stageContentId: content.id, // id
stageType: content.stageType, //
studyCourseId: content.forgeId || '',
studyCourseId: item.id || '',
sourceId: item.id, // id
path: item.path, //
studyDuration: item.studyDuration || 0, //
@ -342,7 +342,7 @@ export default {
font-style: 20px;
.item-stage {
height: 50px;
height: 30px;
margin: 8px 0;
font-size: 16px;
display: flex;
@ -444,12 +444,13 @@ export default {
.list-wrapper {
padding: 10px;
min-height: 90px;
min-height: 60px;
height: auto;
display: flex;
justify-content: space-between;
align-items: center;
/* padding: 20px 0; */
margin-bottom: 10px;
margin-bottom: 3px;
padding-bottom: 5px;
border-bottom: 1px solid #f0f0f0;
color: #b0b0b0;