| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229 |
- <template>
- <!-- 智能绘画 -->
- <div class="home-container">
- <!-- 展开收起侧边栏 -->
- <div
- class="icon-expand"
- :style="{
- backgroundColor: drawerVisible ? '#44449c' : '#7F70C840',
- left: drawerVisible ? '18%' : '0'
- }"
- @click="toggleDrawer"
- >
- <span
- class="vertical-lines"
- :style="{
- color: drawerVisible ? '#8a78d0' : 'white'
- }"
- >||</span
- >
- </div>
- <!-- 左侧折叠面板 -->
- <LeftPanel ref="leftPanelRef" v-if="drawerVisible"/>
- <div class="left-group2">
- <div class="title-box">
- <div class="box-icon" @click="goBack">
- <el-icon class="left-icon"><ArrowLeftBold /></el-icon>
- 返回首页|智能绘画
- </div>
- </div>
- <div class="img-box">
- <p>
- <img
- src="@/assets/images/color.png"
- class="avatar user"
- />
- </p>
- <p>期待你的画作喔~</p>
- </div>
- </div>
- <!-- 右侧TextToImage组件 -->
- <TextToImage />
- </div>
- </template>
- <script setup>
- import { ref } from 'vue'
- import { useRouter } from 'vue-router'
- import { ArrowLeftBold } from '@element-plus/icons-vue'
- import LeftPanel from '@/components/LeftPanel.vue'
- import TextToImage from '@/components/ai/image/TextToImage.vue'
- import {homeRoutes} from "@/router/index.js";
- const router = useRouter()
- const leftPanelRef = ref(null)
- // 返回上一页
- const goBack = () => {
- router.push(homeRoutes.home);
- }
- // 添加抽屉显示状态
- const drawerVisible = ref(true)
- // 添加切换抽屉显示状态的函数
- const toggleDrawer = () => {
- drawerVisible.value = !drawerVisible.value
- }
- </script>
- <style scoped lang="scss">
- @use 'sass:math';
- // 定义rpx转换函数
- @function rpx($px) {
- @return math.div($px, 750) * 100vw;
- }
- /* 添加过渡样式 */
- .drawer-slide-enter-active,
- .drawer-slide-leave-active {
- transition: all 0.3s ease;
- }
- .drawer-slide-enter-from,
- .drawer-slide-leave-to {
- transform: translateX(-100%);
- opacity: 0;
- }
- :deep(.el-image-viewer__wrapper) {
- z-index: 10000 !important;
- }
- .icon-expand {
- width: rpx(8);
- height: rpx(35);
- border-top-right-radius: rpx(5);
- border-bottom-right-radius: rpx(5);
- z-index: 50;
- position: absolute;
- top: 50%;
- left: 18%;
- transform: translateY(-50%);
- background-color: #44449c;
- cursor: pointer; // 添加鼠标指针样式
- clip-path: polygon(0 0, 100% 15%, 100% 85%, 0 100%);
- display: flex;
- justify-content: center;
- align-items: center;
- transition: all 0.3s ease;
- }
- .icon-expand .vertical-lines {
- color: #8a78d0;
- font-size: rpx(10);
- }
- .menu-icon {
- width:rpx(11);
- height: rpx(11);
- margin-right: rpx(2);
- }
- // 侧边栏
- .left-group1 {
- width: rpx(135);
- height: 100%;
- background: linear-gradient(to bottom, #001169, #8a78d0);
- }
- .home-container {
- position: fixed;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- display: flex;
- flex-direction: row;
- gap: rpx(0);
- background: linear-gradient(
- to bottom,
- #e2ddfc,
- #f1effd
- ); /* 设置悬停、聚焦、点击状态下的背景色 */
- }
- // 侧边栏
- .left-group {
- width: rpx(135);
- height: 100%;
- background: linear-gradient(to bottom, #001169, #8a78d0);
- }
- .mb-2 {
- color: black;
- margin-top: rpx(1);
- }
- .tac ::v-deep(.el-menu) {
- background-color: transparent;
- border: none;
- width: 100%;
- margin-top: rpx(55);
- margin-left: rpx(10);
- }
- .el-menu-item {
- width: rpx(115);
- height: rpx(25);
- margin-bottom: rpx(5);
- border-radius: rpx(6);
- color: white;
- font-size: rpx(8);
- }
- .el-menu-item .el-icon svg {
- font-size: rpx(15);
- color: white;
- }
- .el-menu ::v-deep(.el-menu-item:hover),
- .el-menu ::v-deep(.el-menu-item:focus),
- .el-menu ::v-deep(.el-menu-item:active) {
- background: linear-gradient(
- to bottom,
- #ffefb0,
- #ffcc00
- ); /* 设置悬停、聚焦、点击状态下的背景色 */
- box-shadow: 0 8px 8px rgb(0, 0, 0, 0.3);
- color: black;
- font-size: rpx(8);
- }
- .el-menu-vertical-demo .el-menu-item.is-active {
- /* 可根据需求修改选中样式 */
- background: linear-gradient(
- to bottom,
- #ffefb0,
- #ffcc00
- ); /* 设置悬停、聚焦、点击状态下的背景色 */
- box-shadow: 0 8px 8px rgb(0, 0, 0, 0.3);
- color: black;
- font-size: rpx(8);
- }
- // 侧边栏
- .left-group2 {
- width: rpx(150);
- height: 100%;
- background-color: #ece9fd;
- }
- .left-group2 img {
- width: fit-content;
- height: rpx(100);
- margin: rpx(5);
- }
- .title-box {
- height: rpx(50);
- }
- .box-icon {
- width: 100%;
- height: 100%;
- flex: 1;
- display: flex; // 添加 flex 布局
- align-items: center; // 垂直居中
- color: black; // 设置图标颜色为白色
- padding-left: rpx(15);
- font-size: rpx(10); // 设置图标大小,可按需调整
- cursor: pointer; // 添加鼠标指针样式
- }
- // .box-icon .left-icon {
- // margin-left: rpx(10);
- // margin-right: rpx(5); // 设置图标和文字之间的间距 ;
- // }
- //左侧展览区图标
- .img-box {
- margin-top: rpx(50);
- color: #a39dce;
- }
- </style>
|