国旗
Showing
1 changed file
with
13 additions
and
1 deletions
| ... | @@ -165,7 +165,11 @@ | ... | @@ -165,7 +165,11 @@ |
| 165 | <el-table-column label="COUNTRY" min-width="200"> | 165 | <el-table-column label="COUNTRY" min-width="200"> |
| 166 | <template #default="scope"> | 166 | <template #default="scope"> |
| 167 | <div> | 167 | <div> |
| 168 | <span :class="`flag-icon flag-icon-${scope.row.code}`" /> | 168 | <!-- <span :class="`flag-icon flag-icon-${scope.row.code}`" />--> |
| 169 | <span v-if="scope.row.code!='tw'" :class="`flag-icon flag-icon-${scope.row.code}`" /> | ||
| 170 | <span v-else class="flag-icon"> | ||
| 171 | <img :src="hkImage" alt="" class="hkimg"> | ||
| 172 | </span> | ||
| 169 | {{ language == 0 ? scope.row.name : scope.row.enName }} | 173 | {{ language == 0 ? scope.row.name : scope.row.enName }} |
| 170 | </div> | 174 | </div> |
| 171 | </template> | 175 | </template> |
| ... | @@ -432,6 +436,7 @@ import AffixInvitation from '/@/viewsPc/match/components/affix-invitation.vue' | ... | @@ -432,6 +436,7 @@ import AffixInvitation from '/@/viewsPc/match/components/affix-invitation.vue' |
| 432 | import { useStorage } from '@vueuse/core/index' | 436 | import { useStorage } from '@vueuse/core/index' |
| 433 | import useUserStore from '/@/store/modules/user' | 437 | import useUserStore from '/@/store/modules/user' |
| 434 | import clubImage from '@/assets/logo/club.png' | 438 | import clubImage from '@/assets/logo/club.png' |
| 439 | import hkImage from '/@/assets/nationalFlag/hk.png' | ||
| 435 | 440 | ||
| 436 | 441 | ||
| 437 | const language = useStorage('language', 0) | 442 | const language = useStorage('language', 0) |
| ... | @@ -1376,4 +1381,11 @@ function applyInvitation() { | ... | @@ -1376,4 +1381,11 @@ function applyInvitation() { |
| 1376 | top: 40%; | 1381 | top: 40%; |
| 1377 | 1382 | ||
| 1378 | } | 1383 | } |
| 1384 | |||
| 1385 | .hkimg { | ||
| 1386 | width: 19px; | ||
| 1387 | height: 14px; | ||
| 1388 | position: absolute; | ||
| 1389 | top: 0; | ||
| 1390 | } | ||
| 1379 | </style> | 1391 | </style> | ... | ... |
-
Please register or sign in to post a comment