mirror of
https://github.com/yangjian102621/geekai.git
synced 2025-09-18 01:06:39 +08:00
opt: optimize mobile images page styles
This commit is contained in:
parent
0cb192135d
commit
8900e72e45
@ -1,13 +1,13 @@
|
|||||||
<template>
|
<template>
|
||||||
<div class="mobile-image container">
|
<div class="mobile-image container">
|
||||||
<van-tabs v-model:active="activeName" class="my-tab" animated sticky>
|
<van-tabs v-model:active="activeName" class="my-tab" animated sticky>
|
||||||
<van-tab title="MidJourney" name="mj">
|
<van-tab title="MJ" name="mj">
|
||||||
<image-mj/>
|
<image-mj/>
|
||||||
</van-tab>
|
</van-tab>
|
||||||
<van-tab title="Stable-Diffusion" name="sd">
|
<van-tab title="SD" name="sd">
|
||||||
<image-sd/>
|
<image-sd/>
|
||||||
</van-tab>
|
</van-tab>
|
||||||
<van-tab title="DALL-E" name="dall">
|
<van-tab title="DALL" name="dall">
|
||||||
<van-empty description="功能正在开发中"/>
|
<van-empty description="功能正在开发中"/>
|
||||||
</van-tab>
|
</van-tab>
|
||||||
</van-tabs>
|
</van-tabs>
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
<div class="img-wall container">
|
<div class="img-wall container">
|
||||||
<div class="content">
|
<div class="content">
|
||||||
<van-tabs v-model:active="activeName" animated sticky>
|
<van-tabs v-model:active="activeName" animated sticky>
|
||||||
<van-tab title="MidJourney" name="mj">
|
<van-tab title="MJ" name="mj">
|
||||||
<van-list
|
<van-list
|
||||||
v-model:error="data['mj'].error"
|
v-model:error="data['mj'].error"
|
||||||
v-model:loading="data['mj'].loading"
|
v-model:loading="data['mj'].loading"
|
||||||
@ -23,7 +23,7 @@
|
|||||||
</van-cell>
|
</van-cell>
|
||||||
</van-list>
|
</van-list>
|
||||||
</van-tab>
|
</van-tab>
|
||||||
<van-tab title="StableDiffusion" name="sd">
|
<van-tab title="SD" name="sd">
|
||||||
<van-list
|
<van-list
|
||||||
v-model:error="data['sd'].error"
|
v-model:error="data['sd'].error"
|
||||||
v-model:loading="data['sd'].loading"
|
v-model:loading="data['sd'].loading"
|
||||||
@ -43,7 +43,7 @@
|
|||||||
</van-cell>
|
</van-cell>
|
||||||
</van-list>
|
</van-list>
|
||||||
</van-tab>
|
</van-tab>
|
||||||
<van-tab title="DALLE3" name="dalle3">
|
<van-tab title="DALL" name="dalle3">
|
||||||
<van-empty description="功能正在开发中"/>
|
<van-empty description="功能正在开发中"/>
|
||||||
</van-tab>
|
</van-tab>
|
||||||
</van-tabs>
|
</van-tabs>
|
||||||
@ -57,8 +57,7 @@
|
|||||||
<script setup>
|
<script setup>
|
||||||
import {onMounted, onUnmounted, ref} from "vue";
|
import {onMounted, onUnmounted, ref} from "vue";
|
||||||
import {httpGet} from "@/utils/http";
|
import {httpGet} from "@/utils/http";
|
||||||
import {showConfirmDialog, showDialog, showFailToast, showImagePreview, showNotify} from "vant";
|
import {showConfirmDialog, showFailToast, showImagePreview, showNotify} from "vant";
|
||||||
import {Delete} from "@element-plus/icons-vue";
|
|
||||||
import Clipboard from "clipboard";
|
import Clipboard from "clipboard";
|
||||||
import {ElMessage} from "element-plus";
|
import {ElMessage} from "element-plus";
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user