This commit is contained in:
Silent YANG 2024-06-29 06:48:01 +08:00
parent a44fa906bd
commit 3f1e49cc28
5 changed files with 86 additions and 1 deletions

View file

@ -161,6 +161,9 @@ export default {
'cps.dtmfid': 'DTMF ID',
'global.upload': 'Upload',
'global.loginUpload': '(Login to upload and share)',
'bl': 'Multi-booting',
'cs': 'Coming Soon',
'oi': 'Operating Instructions: ',
...localeSettings,
...localeMessageBox,
...localeLogin,

View file

@ -161,6 +161,9 @@ export default {
'cps.dtmfid': 'DTMF ID',
'global.upload': '上传',
'global.loginUpload': '(登录可上传分享)',
'bl': '多系统',
'cs': '敬请期待',
'oi': '操作说明:',
...localeSettings,
...localeMessageBox,
...localeLogin,

View file

@ -61,6 +61,16 @@ const LIST: AppRouteRecordRaw = {
requiresAuth: true,
roles: ['*'],
},
},
{
path: 'bl',
name: 'BL',
component: () => import('@/views/list/bl/index.vue'),
meta: {
locale: 'bl',
requiresAuth: true,
roles: ['*'],
},
}
],
};

View file

@ -5,7 +5,7 @@
<a-col :span="24">
<a-card class="general-card" :title="$t('idea.diy')" :loading="loading">
<t-space direction="vertical">
<div>操作说明<t-link theme="primary" href="https://github.com/losehu/uv-k5-firmware-custom" target="_blank">https://github.com/losehu/uv-k5-firmware-custom</t-link></div>
<div>{{ $t('oi') }}<t-link theme="primary" href="https://github.com/losehu/uv-k5-firmware-custom" target="_blank">https://github.com/losehu/uv-k5-firmware-custom</t-link></div>
<a-radio-group v-for="item in state.showSort" v-model="state.flag[item]" type="button">
<a-radio v-for="subItem in state.disMatrix[item]" :value="subItem[0]"
:disabled="subItem[1]">{{ state.disName[item].get(subItem[0]) }}</a-radio>

View file

@ -0,0 +1,69 @@
<template>
<div class="container">
<Breadcrumb :items="[$t('menu.list'), $t('bl')]" />
<a-card class="general-card">
<template #title>
{{ $t('bl') }} {{ $t('global.onStart') }}
</template>
<t-divider>{{ $t('cs') }}</t-divider>
</a-card>
</div>
</template>
<script lang="ts" setup>
</script>
<script lang="ts">
export default {
name: 'BL',
};
</script>
<style scoped lang="less">
:deep(::-webkit-scrollbar-thumb){
border-radius: 0 !important;
}
:deep(.scrollbar::-webkit-scrollbar) {
height: 10px;
}
:deep(.t-table__content::-webkit-scrollbar) {
height: 15px;
}
.container {
padding: 0 20px 20px 20px;
}
:deep(.arco-table-th) {
&:last-child {
.arco-table-th-item-title {
margin-left: 16px;
}
}
}
.action-icon {
margin-left: 12px;
cursor: pointer;
}
.active {
color: #0960bd;
background-color: #e3f4fc;
}
.setting {
display: flex;
align-items: center;
width: 200px;
.title {
margin-left: 12px;
cursor: pointer;
}
}
.ttable {
:deep(.t-table__affixed-header-elm-wrap){
height: 60px !important;
}
:deep(.t-table__content){
scrollbar-width: auto !important;
}
}
</style>