jiangchengfeiyi-xiaochengxu/pages/home/home.vue

292 lines
6.2 KiB
Vue
Raw Normal View History

2024-10-18 14:49:08 +00:00
<template>
2025-03-24 03:33:28 +00:00
<view class="flex-col justify-start relative page" :style="{ backgroundImage: 'url(' + bkgPubilcPath + ')' }">
<view class="section" :style="{ backgroundImage: 'url(' + bkgPubilcPath + ')' }"></view>
2025-03-16 16:46:57 +00:00
<image class="image pos" :src="homeUrl + '/flower.png'" />
2025-03-25 12:58:10 +00:00
<text class="text pos_6">手作传艺|锦绣邀约</text>
2024-12-12 02:14:25 +00:00
<text class="font pos_2"></text>
<text class="font pos_3"></text>
<text class="font pos_4"></text>
<text class="font pos_5"></text>
<view class="grid pos_7">
<view class="flex-row grid-item" @click="jump_xiezhen">
<image
class="shrink-0 self-center image_2"
2025-03-16 16:46:57 +00:00
:src="homeUrl + '/xzyy.png'"
2024-12-12 02:14:25 +00:00
/>
<view class="ml-4 flex-col items-center flex-1 self-start group">
<text class="font_2 text_2">写真预约</text>
2025-03-25 12:58:10 +00:00
<text class="mt-14 font_3 text_3">锦绣华服即刻预约</text>
2024-10-18 14:49:08 +00:00
</view>
</view>
2024-12-12 02:14:25 +00:00
<view class="flex-row items-center grid-item_2" @click="jump_feiyi">
<image
class="shrink-0 image_3"
2025-03-16 16:46:57 +00:00
:src="homeUrl + '/jyty.png'"
2024-12-12 02:14:25 +00:00
/>
<view class="flex-col items-center flex-1 ml-7">
2025-03-16 13:35:20 +00:00
<text class="font_2">技艺体验</text>
2025-03-25 12:58:10 +00:00
<text class="mt-14 font_3">古艺新学手作体验</text>
2024-10-18 14:49:08 +00:00
</view>
</view>
2024-12-12 02:14:25 +00:00
<view class="flex-row grid-item_3" @click="jump_store">
<image
class="shrink-0 self-center image_5"
2025-03-16 16:46:57 +00:00
:src="homeUrl + '/tjsp.png'"
2024-12-12 02:14:25 +00:00
/>
<view class="flex-col items-center flex-1 self-start group_2 ml-7">
2025-03-25 12:58:10 +00:00
<text class="font_2 text_5">手作商城</text>
<text class="mt-12 font_3 text_6">传统工艺匠心好物</text>
2024-10-18 14:49:08 +00:00
</view>
</view>
2025-03-09 10:55:38 +00:00
<view class="flex-row relative grid-item_4" @click="jumpToActivity">
2024-12-12 02:14:25 +00:00
<image
class="shrink-0 self-center image_4"
2025-03-16 16:46:57 +00:00
:src="homeUrl + '/hdzx.png'"
2024-12-12 02:14:25 +00:00
/>
2025-03-25 12:58:10 +00:00
<text class="self-start font_2 text_4">活动日记</text>
<text class="font_3 pos_8">活动点滴邀您共阅</text>
2024-12-12 02:14:25 +00:00
</view>
2024-10-18 14:49:08 +00:00
</view>
</view>
</template>
<script setup>
import {inject, ref} from 'vue'
2024-11-05 06:39:58 +00:00
import { baseUrl, testUrl , suiUrl} from '@/api/request';
import { onShow,onLoad } from "@dcloudio/uni-app";
2025-03-12 13:15:24 +00:00
import { getFonts } from '../../common/globalFont';
2025-03-19 07:16:09 +00:00
import { getZSFont } from '../../common/globalFont';
2025-03-24 03:33:28 +00:00
import { homeUrl,bkgPubilcPath } from '../../common/globalImagesUrl';
2025-03-17 10:10:19 +00:00
const bkgUrl = ref(homeUrl + '/bkg.png')
2024-11-05 06:39:58 +00:00
onShow(() => {
uni.removeStorageSync('businessId')
})
onLoad(()=>{
getFonts()
2025-03-19 07:16:09 +00:00
getZSFont()
2025-03-24 14:42:31 +00:00
getMyUser()
wx.showShareMenu({
withShareTicket: true,
menus: ["shareAppMessage","shareTimeline"]
})
})
2024-11-05 06:39:58 +00:00
const getMyUser = async () =>{
const res = await uni.request({
url: baseUrl + '/user/get/login',
method: 'GET',
header: {
// 读取JSESSIONID
'cookie': wx.getStorageSync("cookie")
}
})
2025-01-02 02:07:36 +00:00
console.log('获取用户信息==>',res.data)
2025-03-24 14:42:31 +00:00
if( res.data.code === 40100 ) {
// uni.navigateTo({
// url: '/pages/login/login'
// })
uni.showToast({
icon: 'error',
title: "未登录"
})
}
2024-11-05 06:39:58 +00:00
}
const jump_xiezhen =()=>{ //跳转写真预约
2024-10-20 05:16:38 +00:00
uni.navigateTo({
2025-03-22 15:09:53 +00:00
url: '/pages/book/myPhotoProducts/myPhotoProducts'
2024-10-20 05:16:38 +00:00
})
}
2024-12-12 02:14:25 +00:00
const jump_feiyi =()=>{ //跳转非遗工坊
uni.navigateTo({
url: '/pages/workshop/index/index'
})
}
const jump_store =()=>{
uni.switchTab({
url: '/pages/store-home/main/testMain'
2024-12-12 02:14:25 +00:00
})
}
2025-03-09 10:55:38 +00:00
const jumpToActivity = () => {
uni.navigateTo({
2025-03-19 07:16:09 +00:00
url: '../activity/activityMain/activityMain'
2025-03-09 10:55:38 +00:00
})
}
2025-03-12 13:15:24 +00:00
//为了上架的提示框
2025-03-09 10:55:38 +00:00
const showTest = ref(false)
const showStop =()=>{
2025-03-09 10:55:38 +00:00
showTest.value = true
// uni.navigateTo({
// url: '../activity/activityHome/activityHome'
// })
}
2024-10-18 14:49:08 +00:00
</script>
<style lang="scss" scoped>
2025-03-01 05:33:28 +00:00
2024-12-12 02:14:25 +00:00
.ml-7 {
margin-left: 4.13rpx;
2024-10-18 14:49:08 +00:00
}
.page {
2025-03-17 10:10:19 +00:00
// background-image: url(https://123.249.108.160:8888/api/file/downloadFile?objectKey=feiyi/miniProgram/home/bkg.png);
2024-12-12 02:14:25 +00:00
background-size: 100% 100%;
background-repeat: no-repeat;
2024-10-18 14:49:08 +00:00
width: 100%;
overflow-y: auto;
overflow-x: hidden;
2025-03-16 13:35:20 +00:00
height: 100vh;
2024-10-18 14:49:08 +00:00
}
.section {
2025-03-16 13:35:20 +00:00
// height: 1415.63rpx;
2024-10-18 14:49:08 +00:00
}
2024-12-12 02:14:25 +00:00
.image {
opacity: 0.35;
2025-03-16 13:35:20 +00:00
width: 86vw;
height: 127.5vw;
2024-10-18 14:49:08 +00:00
}
.pos {
position: absolute;
left: 0;
top: 0;
}
.text {
color: #C35C5D;
2024-12-12 02:14:25 +00:00
font-size: 37.5rpx;
2025-03-24 03:33:28 +00:00
font-family: 'FangZhengFonts';
2024-12-12 02:14:25 +00:00
line-height: 36.92rpx;
2024-10-18 14:49:08 +00:00
}
2024-12-12 02:14:25 +00:00
.pos_6 {
position: absolute;
left: 50%;
2025-03-16 13:35:20 +00:00
bottom: 30%;
2024-12-12 02:14:25 +00:00
transform: translateX(-50%);
2024-10-18 14:49:08 +00:00
}
2024-12-12 02:14:25 +00:00
.font {
font-size: 168.75rpx;
2025-03-19 07:16:09 +00:00
font-family: ZhongShanFonts;
2024-12-12 02:14:25 +00:00
line-height: 202.5rpx;
color: #C35C5D;
2024-10-18 14:49:08 +00:00
}
2024-12-12 02:14:25 +00:00
.pos_2 {
position: absolute;
right: 156.19rpx;
top: 71.25rpx;
2024-10-18 14:49:08 +00:00
}
2024-12-12 02:14:25 +00:00
.pos_3 {
position: absolute;
right: 114.81rpx;
top: 273.43rpx;
2024-10-18 14:49:08 +00:00
}
2024-12-12 02:14:25 +00:00
.pos_4 {
position: absolute;
right: 165.41rpx;
top: 474.62rpx;
2024-10-18 14:49:08 +00:00
}
2024-12-12 02:14:25 +00:00
.pos_5 {
position: absolute;
right: 114.81rpx;
2025-03-16 13:35:20 +00:00
top: 676.8rpx;
2024-12-12 02:14:25 +00:00
}
.grid {
width: 646.88rpx;
height: 305.63rpx;
display: grid;
grid-template-rows: repeat(2, minmax(0, 1fr));
grid-template-columns: repeat(2, minmax(0, 1fr));
row-gap: 56.38rpx;
column-gap: 80.76rpx;
}
.pos_7 {
position: absolute;
2025-03-16 13:35:20 +00:00
left: 0;
right: 0;
bottom: 50rpx;
margin: 0 auto;
2024-10-18 14:49:08 +00:00
}
2024-12-12 02:14:25 +00:00
.grid-item {
padding: 22.5rpx 11.25rpx 22.5rpx 18.75rpx;
background-color: #ffffff;
border-radius: 46.88rpx;
2024-10-18 14:49:08 +00:00
}
2024-12-12 02:14:25 +00:00
.image_2 {
width: 73.13rpx;
height: 78.75rpx;
2024-10-18 14:49:08 +00:00
}
2024-12-12 02:14:25 +00:00
.group {
margin-top: 11.25rpx;
2024-10-18 14:49:08 +00:00
}
2024-12-12 02:14:25 +00:00
.font_2 {
2024-10-18 14:49:08 +00:00
font-size: 28.13rpx;
2025-03-24 03:33:28 +00:00
font-family: 'FangZhengFonts';
2024-12-12 02:14:25 +00:00
line-height: 26.47rpx;
2025-03-16 13:35:20 +00:00
color: #323232;
2024-10-18 14:49:08 +00:00
}
2024-12-12 02:14:25 +00:00
.text_2 {
line-height: 27.36rpx;
2024-10-18 14:49:08 +00:00
}
2024-12-12 02:14:25 +00:00
.grid-item_2 {
padding: 22.5rpx 3.75rpx 22.5rpx 15rpx;
background-color: #ffffff;
border-radius: 46.88rpx;
2024-10-18 14:49:08 +00:00
}
2024-12-12 02:14:25 +00:00
.image_3 {
width: 76.88rpx;
height: 76.88rpx;
2024-10-18 14:49:08 +00:00
}
2024-12-12 02:14:25 +00:00
.grid-item_3 {
padding: 22.5rpx 3.75rpx 22.5rpx 11.25rpx;
background-color: #ffffff;
border-radius: 46.88rpx;
2024-10-18 14:49:08 +00:00
}
2024-12-12 02:14:25 +00:00
.image_5 {
width: 80.63rpx;
height: 78.75rpx;
2024-10-18 14:49:08 +00:00
}
2024-12-12 02:14:25 +00:00
.group_2 {
margin-top: 15rpx;
2024-10-18 14:49:08 +00:00
}
2024-12-12 02:14:25 +00:00
.text_5 {
line-height: 27.02rpx;
2024-10-18 14:49:08 +00:00
}
2024-12-12 02:14:25 +00:00
.font_3 {
font-size: 18.75rpx;
2025-03-24 03:33:28 +00:00
font-family: 'FangZhengFonts';
2024-12-12 02:14:25 +00:00
line-height: 17.29rpx;
2025-03-27 05:52:23 +00:00
// color: #faddde;
color: #F29FA3;
2024-10-18 14:49:08 +00:00
}
2024-12-12 02:14:25 +00:00
.text_3 {
line-height: 18.09rpx;
2024-10-18 14:49:08 +00:00
}
2024-12-12 02:14:25 +00:00
.text_6 {
line-height: 18.09rpx;
2024-10-18 14:49:08 +00:00
}
2024-12-12 02:14:25 +00:00
.grid-item_4 {
padding: 16.88rpx 9.38rpx;
background-color: #ffffff;
border-radius: 46.88rpx;
width: 281.25rpx;
2024-10-18 14:49:08 +00:00
}
2024-12-12 02:14:25 +00:00
.image_4 {
width: 103.13rpx;
height: 91.88rpx;
2024-10-18 14:49:08 +00:00
}
2024-12-12 02:14:25 +00:00
.text_4 {
margin-left: 18.75rpx;
margin-top: 15rpx;
2024-10-18 14:49:08 +00:00
}
2024-12-12 02:14:25 +00:00
.pos_8 {
position: absolute;
right: 18.14rpx;
2024-12-12 02:14:25 +00:00
bottom: 24.28rpx;
2024-10-18 14:49:08 +00:00
}
2025-03-01 05:33:28 +00:00
/* 隐藏滚动条 */
::-webkit-scrollbar {
display: none;
}
2024-10-18 14:49:08 +00:00
@import url(../../common/css/global.css);
</style>