67c08943 by zhangmeng

国旗

1 parent dfaca9ae
...@@ -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>
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!