no message
Showing
1 changed file
with
24 additions
and
24 deletions
| 1 | <template> | 1 | <template> |
| 2 | <div> | 2 | <div> |
| 3 | <div class="box"> | 3 | <div class="box"> |
| 4 | 4 | ||
| 5 | <div class="mt20" /> | 5 | <div class="mt20" /> |
| 6 | <el-card> | 6 | <el-card> |
| 7 | <el-row :gutter="20"> | 7 | <el-row :gutter="20"> |
| 8 | <el-col :lg="12" :sm="24"> | 8 | <el-col :lg="12" :sm="24"> |
| 9 | <!--赛事日历--> | 9 | <!--赛事日历--> |
| 10 | 10 | ||
| 11 | <el-calendar v-model="currentDate"> | 11 | <el-calendar v-model="currentDate"> |
| 12 | <template #date-cell="data"> | 12 | <template #date-cell="data"> |
| 13 | 13 | ||
| 14 | <div | 14 | <div |
| 15 | :class="data.data.day==query.currentDate?'primaryDate':''" class="date" | 15 | :class="data.data.day==query.currentDate?'primaryDate':''" class="date" |
| 16 | @click="selectDate(data.data.day)" | 16 | @click="selectDate(data.data.day)" |
| 17 | > | 17 | > |
| 18 | {{ data.data.day.slice(8, 10) }} | 18 | {{ data.data.day.slice(8, 10) }} |
| 19 | </div> | 19 | </div> |
| 20 | 20 | ||
| 21 | </template> | 21 | </template> |
| 22 | </el-calendar> | 22 | </el-calendar> |
| 23 | 23 | ||
| 24 | </el-col> | 24 | </el-col> |
| 25 | <el-col :lg="12" :sm="24"> | 25 | <el-col :lg="12" :sm="24"> |
| 26 | <div class="calendarList"> | 26 | <div class="calendarList"> |
| ... | @@ -32,13 +32,13 @@ | ... | @@ -32,13 +32,13 @@ |
| 32 | <el-empty v-if="schList.length== 0" :image="`/img/order_no.png`" :image-size="200" /> | 32 | <el-empty v-if="schList.length== 0" :image="`/img/order_no.png`" :image-size="200" /> |
| 33 | </ul> | 33 | </ul> |
| 34 | </div> | 34 | </div> |
| 35 | 35 | ||
| 36 | </el-col> | 36 | </el-col> |
| 37 | </el-row> | 37 | </el-row> |
| 38 | </el-card> | 38 | </el-card> |
| 39 | <el-card class="mt20 mb20"> | 39 | <el-card class="mt20 mb20"> |
| 40 | <el-table :data="rank" stripe> | 40 | <el-table :data="rank" stripe> |
| 41 | <el-table-column align="center" label="名次" type="index"> | 41 | <el-table-column align="center" label="名次" type="index" width="100"> |
| 42 | <template #default="scope"> | 42 | <template #default="scope"> |
| 43 | <span v-if="scope.row.mingCi == 1" style="color:#F8A617">{{ scope.row.mingCi }}</span> | 43 | <span v-if="scope.row.mingCi == 1" style="color:#F8A617">{{ scope.row.mingCi }}</span> |
| 44 | <span v-else-if="scope.row.mingCi == 2" style="color:#778B92">{{ scope.row.mingCi }}</span> | 44 | <span v-else-if="scope.row.mingCi == 2" style="color:#778B92">{{ scope.row.mingCi }}</span> |
| ... | @@ -46,7 +46,7 @@ | ... | @@ -46,7 +46,7 @@ |
| 46 | <span v-else>{{ scope.row.mingCi }}</span> | 46 | <span v-else>{{ scope.row.mingCi }}</span> |
| 47 | </template> | 47 | </template> |
| 48 | </el-table-column> | 48 | </el-table-column> |
| 49 | 49 | ||
| 50 | <el-table-column label="国家" prop="name"> | 50 | <el-table-column label="国家" prop="name"> |
| 51 | <template #default="scope"> | 51 | <template #default="scope"> |
| 52 | <div> | 52 | <div> |
| ... | @@ -85,7 +85,7 @@ | ... | @@ -85,7 +85,7 @@ |
| 85 | </template> | 85 | </template> |
| 86 | </el-table-column> | 86 | </el-table-column> |
| 87 | </el-table> | 87 | </el-table> |
| 88 | 88 | ||
| 89 | </el-card> | 89 | </el-card> |
| 90 | <el-card v-for="(n,index) in cjList" class="mt20 mb20" hidden> | 90 | <el-card v-for="(n,index) in cjList" class="mt20 mb20" hidden> |
| 91 | <div class="leftboderTT">{{ language == 0 ? n.title : n.en_title }}</div> | 91 | <div class="leftboderTT">{{ language == 0 ? n.title : n.en_title }}</div> |
| ... | @@ -116,7 +116,7 @@ | ... | @@ -116,7 +116,7 @@ |
| 116 | </table> | 116 | </table> |
| 117 | </div> | 117 | </div> |
| 118 | </div> | 118 | </div> |
| 119 | 119 | ||
| 120 | </el-card> | 120 | </el-card> |
| 121 | <br><br> | 121 | <br><br> |
| 122 | </div> | 122 | </div> |
| ... | @@ -209,7 +209,7 @@ h3 { | ... | @@ -209,7 +209,7 @@ h3 { |
| 209 | width: 100%; | 209 | width: 100%; |
| 210 | max-width: 100%; | 210 | max-width: 100%; |
| 211 | margin-bottom: 20px; | 211 | margin-bottom: 20px; |
| 212 | 212 | ||
| 213 | td, th { | 213 | td, th { |
| 214 | padding: 8px; | 214 | padding: 8px; |
| 215 | font-size: 14px; | 215 | font-size: 14px; |
| ... | @@ -225,24 +225,24 @@ h3 { | ... | @@ -225,24 +225,24 @@ h3 { |
| 225 | --el-calendar-cell-width: 51px; | 225 | --el-calendar-cell-width: 51px; |
| 226 | text-align: center; | 226 | text-align: center; |
| 227 | --el-text-color-regular: #8E8D94; | 227 | --el-text-color-regular: #8E8D94; |
| 228 | 228 | ||
| 229 | :deep(.el-calendar__header) { | 229 | :deep(.el-calendar__header) { |
| 230 | justify-content: center; | 230 | justify-content: center; |
| 231 | } | 231 | } |
| 232 | 232 | ||
| 233 | :deep(.el-calendar__body) { | 233 | :deep(.el-calendar__body) { |
| 234 | border: 1px solid #F0F0F0; | 234 | border: 1px solid #F0F0F0; |
| 235 | padding: 0 | 235 | padding: 0 |
| 236 | } | 236 | } |
| 237 | 237 | ||
| 238 | :deep(.el-calendar-table .el-calendar-day) { | 238 | :deep(.el-calendar-table .el-calendar-day) { |
| 239 | padding: 1px; | 239 | padding: 1px; |
| 240 | } | 240 | } |
| 241 | 241 | ||
| 242 | :deep(.el-calendar-table td.is-selected) { | 242 | :deep(.el-calendar-table td.is-selected) { |
| 243 | background: transparent; | 243 | background: transparent; |
| 244 | } | 244 | } |
| 245 | 245 | ||
| 246 | :deep(.el-calendar__button-group) { | 246 | :deep(.el-calendar__button-group) { |
| 247 | display: none; | 247 | display: none; |
| 248 | } | 248 | } |
| ... | @@ -267,12 +267,12 @@ h3 { | ... | @@ -267,12 +267,12 @@ h3 { |
| 267 | padding: 12px 20px 0; | 267 | padding: 12px 20px 0; |
| 268 | overflow: hidden; | 268 | overflow: hidden; |
| 269 | height: 100%; | 269 | height: 100%; |
| 270 | 270 | ||
| 271 | ul { | 271 | ul { |
| 272 | overflow: auto; | 272 | overflow: auto; |
| 273 | height: 330px; | 273 | height: 330px; |
| 274 | margin: 0; | 274 | margin: 0; |
| 275 | 275 | ||
| 276 | li { | 276 | li { |
| 277 | background: #F6F9FE; | 277 | background: #F6F9FE; |
| 278 | margin: 7px 0 7px 20px; | 278 | margin: 7px 0 7px 20px; |
| ... | @@ -282,11 +282,11 @@ h3 { | ... | @@ -282,11 +282,11 @@ h3 { |
| 282 | font-weight: 500; | 282 | font-weight: 500; |
| 283 | font-size: 15px; | 283 | font-size: 15px; |
| 284 | cursor: pointer; | 284 | cursor: pointer; |
| 285 | 285 | ||
| 286 | label { | 286 | label { |
| 287 | color: #453DEA; | 287 | color: #453DEA; |
| 288 | margin-right: 15px; | 288 | margin-right: 15px; |
| 289 | 289 | ||
| 290 | &::before { | 290 | &::before { |
| 291 | content: ''; | 291 | content: ''; |
| 292 | background: #fff; | 292 | background: #fff; |
| ... | @@ -302,7 +302,7 @@ h3 { | ... | @@ -302,7 +302,7 @@ h3 { |
| 302 | } | 302 | } |
| 303 | } | 303 | } |
| 304 | } | 304 | } |
| 305 | 305 | ||
| 306 | li::before { | 306 | li::before { |
| 307 | content: ''; | 307 | content: ''; |
| 308 | background: linear-gradient(0deg, #8623FC, #453DEA); | 308 | background: linear-gradient(0deg, #8623FC, #453DEA); |
| ... | @@ -316,7 +316,7 @@ h3 { | ... | @@ -316,7 +316,7 @@ h3 { |
| 316 | margin: auto; | 316 | margin: auto; |
| 317 | z-index: 1; | 317 | z-index: 1; |
| 318 | } | 318 | } |
| 319 | 319 | ||
| 320 | li::after { | 320 | li::after { |
| 321 | content: ''; | 321 | content: ''; |
| 322 | left: -16px; | 322 | left: -16px; |
| ... | @@ -326,11 +326,11 @@ h3 { | ... | @@ -326,11 +326,11 @@ h3 { |
| 326 | position: absolute; | 326 | position: absolute; |
| 327 | top: 20px | 327 | top: 20px |
| 328 | } | 328 | } |
| 329 | 329 | ||
| 330 | li:hover { | 330 | li:hover { |
| 331 | color: #fff; | 331 | color: #fff; |
| 332 | background: linear-gradient(-90deg, #8623FC, #453DEA); | 332 | background: linear-gradient(-90deg, #8623FC, #453DEA); |
| 333 | 333 | ||
| 334 | label { | 334 | label { |
| 335 | color: #fff; | 335 | color: #fff; |
| 336 | } | 336 | } | ... | ... |
-
Please register or sign in to post a comment