From 8b3880c31ceb67416a6eee67ed059d3c17f3d9ec Mon Sep 17 00:00:00 2001 From: 杨磊 <505174330@qq.com> Date: 星期一, 28 四月 2025 10:50:42 +0800 Subject: [PATCH] Merge branch 'master' of http://182.92.203.7:2001/r/wyyDatabase --- 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 3b4d41b..2d7af1d 100644 --- a/src/views/directory/index.vue +++ b/src/views/directory/index.vue @@ -177,8 +177,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> @@ -188,8 +187,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> @@ -805,4 +803,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