From c2b7142602445280382b1c1eeefa12601b4801ba Mon Sep 17 00:00:00 2001 From: zhongshujie <2862698242@qq.com> Date: 星期一, 28 四月 2025 10:48:44 +0800 Subject: [PATCH] 样式优化 --- src/views/directory/index.vue | 18 ++++++++++++++---- 1 files changed, 14 insertions(+), 4 deletions(-) diff --git a/src/views/directory/index.vue b/src/views/directory/index.vue index b056e02..61591bc 100644 --- a/src/views/directory/index.vue +++ b/src/views/directory/index.vue @@ -169,8 +169,7 @@ <div v-for="(item, index) in universityList" :key="index"> <div class="table-title" - v-if="item.studentList && item.studentList.length > 0" - > + v-if="item.studentList && item.studentList.length > 0"> <div class="table-title-left"> <p class="table-title-name">{{ item.unitName }}</p> <p class="table-title-degree">{{ item.academicDegreeName }}</p> @@ -180,8 +179,7 @@ </div> <div class="table-title-right" - @click="item.isShow = !item.isShow" - > + @click="item.isShow = !item.isShow"> <img :src="[item.isShow ? topIcon : bottomIcon]" alt="" /> </div> </div> @@ -794,4 +792,16 @@ font-size: 14px; color: #937950; } + +::v-deep .el-loading-spinner { + .el-loading-text { + font-size: 14px; + color: #937950; + } + + .el-icon-loading { + font-size: 14px; + color: #937950; + } +} </style> -- Gitblit v1.9.1