瀏覽代碼

edit qrcode

ctt_dev
chutingting 1 年之前
父節點
當前提交
0a714db591
共有 4 個檔案被更改,包括 14 行新增6 行删除
  1. +2
    -2
      src/layout/index.vue
  2. +2
    -0
      src/types/auto-imports.d.ts
  3. +6
    -0
      src/views/createVideo/index.vue
  4. +4
    -4
      src/views/myStore/index.vue

+ 2
- 2
src/layout/index.vue 查看文件

@@ -43,12 +43,12 @@
</div>
{{ $t("shop.title") }}
</div>
<div class="myRouter-item" @click="router.push('/myAPI')">
<!-- <div class="myRouter-item" @click="router.push('/myAPI')">
<div class="icon">
<el-icon><i-ep-DocumentAdd /></el-icon>
</div>
{{ $t("API.title") }}
</div>
</div> -->
<el-menu
default-active=""
class="el-menu-vertical-demo"


+ 2
- 0
src/types/auto-imports.d.ts 查看文件

@@ -2,6 +2,7 @@
export {}
declare global {
const EffectScope: typeof import('vue')['EffectScope']
const ElForm: typeof import('element-plus/es')['ElForm']
const ElMessage: typeof import('element-plus/es')['ElMessage']
const ElMessageBox: typeof import('element-plus/es')['ElMessageBox']
const asyncComputed: typeof import('@vueuse/core')['asyncComputed']
@@ -270,6 +271,7 @@ import { UnwrapRef } from 'vue'
declare module 'vue' {
interface ComponentCustomProperties {
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 ElMessageBox: UnwrapRef<typeof import('element-plus/es')['ElMessageBox']>
readonly asyncComputed: UnwrapRef<typeof import('@vueuse/core')['asyncComputed']>


+ 6
- 0
src/views/createVideo/index.vue 查看文件

@@ -504,6 +504,12 @@
v-for="item in soundOptions"
:key="item.value"
:value="item.id"
:label="(lanChange == 'zh-cn'
? item.displayName + `&nbsp; (${item.sex == 1 ? '男' : '女'})`
: item.localName +
`&nbsp; (${item.sex == 1 ? 'male' : 'female'})`) +
returnAge(item.ageType)
"
> {{ (lanChange == 'zh-cn'
? item.displayName + `&nbsp; (${item.sex == 1 ? '男' : '女'})`
: item.localName +


+ 4
- 4
src/views/myStore/index.vue 查看文件

@@ -111,8 +111,8 @@
<iframe
v-show="iframeBody"
id="myIframe"
width="220PX"
height="220PX"
width="210PX"
height="205PX"
frameborder="0"
></iframe>
</div>
@@ -610,14 +610,14 @@ function findStatus() {
.codeImg {
display: flex;
margin: auto;
justify-content: space-evenly;
// justify-content: space-evenly;
align-items: center;
width: 220PX;
height: 220PX;
border: 1px solid #ccc;
border-radius: 15px;
overflow: hidden;
padding: 10px;
padding: 13px;
img {
width: 100%;
height: 100%;


Loading…
取消
儲存