@@ -43,12 +43,12 @@ | |||||
</div> | </div> | ||||
{{ $t("shop.title") }} | {{ $t("shop.title") }} | ||||
</div> | </div> | ||||
<div class="myRouter-item" @click="router.push('/myAPI')"> | |||||
<!-- <div class="myRouter-item" @click="router.push('/myAPI')"> | |||||
<div class="icon"> | <div class="icon"> | ||||
<el-icon><i-ep-DocumentAdd /></el-icon> | <el-icon><i-ep-DocumentAdd /></el-icon> | ||||
</div> | </div> | ||||
{{ $t("API.title") }} | {{ $t("API.title") }} | ||||
</div> | |||||
</div> --> | |||||
<el-menu | <el-menu | ||||
default-active="" | default-active="" | ||||
class="el-menu-vertical-demo" | class="el-menu-vertical-demo" | ||||
@@ -2,6 +2,7 @@ | |||||
export {} | export {} | ||||
declare global { | declare global { | ||||
const EffectScope: typeof import('vue')['EffectScope'] | const EffectScope: typeof import('vue')['EffectScope'] | ||||
const ElForm: typeof import('element-plus/es')['ElForm'] | |||||
const ElMessage: typeof import('element-plus/es')['ElMessage'] | const ElMessage: typeof import('element-plus/es')['ElMessage'] | ||||
const ElMessageBox: typeof import('element-plus/es')['ElMessageBox'] | const ElMessageBox: typeof import('element-plus/es')['ElMessageBox'] | ||||
const asyncComputed: typeof import('@vueuse/core')['asyncComputed'] | const asyncComputed: typeof import('@vueuse/core')['asyncComputed'] | ||||
@@ -270,6 +271,7 @@ import { UnwrapRef } from 'vue' | |||||
declare module 'vue' { | declare module 'vue' { | ||||
interface ComponentCustomProperties { | interface ComponentCustomProperties { | ||||
readonly EffectScope: UnwrapRef<typeof import('vue')['EffectScope']> | readonly EffectScope: UnwrapRef<typeof import('vue')['EffectScope']> | ||||
readonly ElForm: UnwrapRef<typeof import('element-plus/es')['ElForm']> | |||||
readonly ElMessage: UnwrapRef<typeof import('element-plus/es')['ElMessage']> | readonly ElMessage: UnwrapRef<typeof import('element-plus/es')['ElMessage']> | ||||
readonly ElMessageBox: UnwrapRef<typeof import('element-plus/es')['ElMessageBox']> | readonly ElMessageBox: UnwrapRef<typeof import('element-plus/es')['ElMessageBox']> | ||||
readonly asyncComputed: UnwrapRef<typeof import('@vueuse/core')['asyncComputed']> | readonly asyncComputed: UnwrapRef<typeof import('@vueuse/core')['asyncComputed']> | ||||
@@ -504,6 +504,12 @@ | |||||
v-for="item in soundOptions" | v-for="item in soundOptions" | ||||
:key="item.value" | :key="item.value" | ||||
:value="item.id" | :value="item.id" | ||||
:label="(lanChange == 'zh-cn' | |||||
? item.displayName + ` (${item.sex == 1 ? '男' : '女'})` | |||||
: item.localName + | |||||
` (${item.sex == 1 ? 'male' : 'female'})`) + | |||||
returnAge(item.ageType) | |||||
" | |||||
> {{ (lanChange == 'zh-cn' | > {{ (lanChange == 'zh-cn' | ||||
? item.displayName + ` (${item.sex == 1 ? '男' : '女'})` | ? item.displayName + ` (${item.sex == 1 ? '男' : '女'})` | ||||
: item.localName + | : item.localName + | ||||
@@ -111,8 +111,8 @@ | |||||
<iframe | <iframe | ||||
v-show="iframeBody" | v-show="iframeBody" | ||||
id="myIframe" | id="myIframe" | ||||
width="220PX" | |||||
height="220PX" | |||||
width="210PX" | |||||
height="205PX" | |||||
frameborder="0" | frameborder="0" | ||||
></iframe> | ></iframe> | ||||
</div> | </div> | ||||
@@ -610,14 +610,14 @@ function findStatus() { | |||||
.codeImg { | .codeImg { | ||||
display: flex; | display: flex; | ||||
margin: auto; | margin: auto; | ||||
justify-content: space-evenly; | |||||
// justify-content: space-evenly; | |||||
align-items: center; | align-items: center; | ||||
width: 220PX; | width: 220PX; | ||||
height: 220PX; | height: 220PX; | ||||
border: 1px solid #ccc; | border: 1px solid #ccc; | ||||
border-radius: 15px; | border-radius: 15px; | ||||
overflow: hidden; | overflow: hidden; | ||||
padding: 10px; | |||||
padding: 13px; | |||||
img { | img { | ||||
width: 100%; | width: 100%; | ||||
height: 100%; | height: 100%; | ||||