From 025e46e11cb2962fd7692adfa401333758cc779b Mon Sep 17 00:00:00 2001 From: gaoluyang <2820782392@qq.com> Date: 星期二, 02 九月 2025 14:00:34 +0800 Subject: [PATCH] 修改组件 --- src/pages/work.vue | 181 ++++++++++++++++++++++----------------------- 1 files changed, 88 insertions(+), 93 deletions(-) diff --git a/src/pages/work.vue b/src/pages/work.vue index cc065f0..4ae851e 100644 --- a/src/pages/work.vue +++ b/src/pages/work.vue @@ -75,110 +75,105 @@ </template> <script setup> - import { ref } from "vue"; - import modal from "@/plugins/modal" - const current=ref(0); - const swiperDotIndex=ref(0); - const data=ref([{ - image: '/static/images/banner/banner01.jpg' - }, - { - image: '/static/images/banner/banner02.jpg' - }, - { - image: '/static/images/banner/banner03.jpg' - } - ]); - - function clickBannerItem(item) { - console.info(item) - }; - function changeSwiper(e) { - current.value = e.detail.current - } - function changeGrid(e) { - modal.showToast({ - title: '妯″潡寤鸿涓�', - mask: false, - icon:'loading', - duration: 1000 - }); - } - +import { ref } from "vue"; +import modal from "@/plugins/modal" +const current = ref(0); +const swiperDotIndex = ref(0); +const data = ref([ + { image: '/static/images/banner/banner01.jpg' }, + { image: '/static/images/banner/banner02.jpg' }, + { image: '/static/images/banner/banner03.jpg' } +]); + +function clickBannerItem(item) { + console.info(item) +}; +function changeSwiper(e) { + current.value = e.detail.current +} +function changeGrid(e) { + modal.showToast({ + title: '妯″潡寤鸿涓�', + mask: false, + icon: 'loading', + duration: 1000 + }); +} + </script> <style lang="scss"> +/* #ifndef APP-NVUE */ +page { + display: flex; + flex-direction: column; + box-sizing: border-box; + background-color: #fff; + min-height: 100%; + height: auto; +} + +view { + font-size: 14px; + line-height: inherit; +} + +/* #endif */ + +.text { + text-align: center; + font-size: 26rpx; + margin-top: 10rpx; +} + +.grid-item-box { + flex: 1; /* #ifndef APP-NVUE */ - page { - display: flex; - flex-direction: column; - box-sizing: border-box; - background-color: #fff; - min-height: 100%; - height: auto; - } - - view { - font-size: 14px; - line-height: inherit; - } - + display: flex; /* #endif */ + flex-direction: column; + align-items: center; + justify-content: center; + padding: 15px 0; +} - .text { - text-align: center; - font-size: 26rpx; - margin-top: 10rpx; - } +.uni-margin-wrap { + width: 690rpx; + width: 100%; + ; +} - .grid-item-box { - flex: 1; +.swiper { + height: 300rpx; +} + +.swiper-box { + height: 150px; +} + +.swiper-item { + /* #ifndef APP-NVUE */ + display: flex; + /* #endif */ + flex-direction: column; + justify-content: center; + align-items: center; + color: #fff; + height: 300rpx; + line-height: 300rpx; +} + +@media screen and (min-width: 500px) { + .uni-swiper-dot-box { + width: 400px; /* #ifndef APP-NVUE */ - display: flex; + margin: 0 auto; /* #endif */ - flex-direction: column; - align-items: center; - justify-content: center; - padding: 15px 0; + margin-top: 8px; } - .uni-margin-wrap { - width: 690rpx; + .image { width: 100%; - ; } - - .swiper { - height: 300rpx; - } - - .swiper-box { - height: 150px; - } - - .swiper-item { - /* #ifndef APP-NVUE */ - display: flex; - /* #endif */ - flex-direction: column; - justify-content: center; - align-items: center; - color: #fff; - height: 300rpx; - line-height: 300rpx; - } - - @media screen and (min-width: 500px) { - .uni-swiper-dot-box { - width: 400px; - /* #ifndef APP-NVUE */ - margin: 0 auto; - /* #endif */ - margin-top: 8px; - } - - .image { - width: 100%; - } - } +} </style> -- Gitblit v1.9.3