190 lines
4.1 KiB
Vue
190 lines
4.1 KiB
Vue
<template>
|
|
<view class="flex-col justify-start relative page" :style="{ backgroundImage: 'url(' + bkgUrl + ')'}">
|
|
<view class="flex-row equal-division">
|
|
<view class="flex-col items-center group equal-division-item">
|
|
<image
|
|
class="image"
|
|
:src="bookUrl + '/myPhotoProducts/xz-gl.png'"
|
|
/>
|
|
<text class="font text mt-10">写真预约</text>
|
|
</view>
|
|
<view class="flex-col items-center group equal-division-item">
|
|
<image
|
|
class="image"
|
|
:src="bookUrl + '/myPhotoProducts/fz.png'"
|
|
/>
|
|
<text class="font text_2 mt-10">服装租赁</text>
|
|
</view>
|
|
</view>
|
|
<view class="divider pos"></view>
|
|
<view class="section_2 pos_2"></view>
|
|
<view class="flex-col pos_3">
|
|
<view
|
|
class="flex-col justify-start items-center text-wrapper_1 list-item mt-19"
|
|
v-for="(item, index) in items"
|
|
:key="index"
|
|
>
|
|
<text class="font_2 text_11">入门款</text>
|
|
</view>
|
|
</view>
|
|
<view class="flex-col group_2 pos_4">
|
|
<view class="flex-row justify-between list-item_2 mt-12" v-for="(item, index) in items_1" :key="index">
|
|
<view class="flex-row">
|
|
<image
|
|
class="image_2"
|
|
src="https://ide.code.fun/api/image?token=67dd8f7cdefdb1001119a623&name=44f1a80f5d889d8ec63f758b61082674.png"
|
|
/>
|
|
<view class="flex-col items-start ml-7">
|
|
<text class="font_2 text_9">汉服—曲裾系列</text>
|
|
<text class="font_2 text_10 mt-50">129元起</text>
|
|
</view>
|
|
</view>
|
|
<view class="flex-col justify-start items-center self-start text-wrapper_2">
|
|
<text class="font_3">立即预约</text>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script setup>
|
|
import {ref} from 'vue'
|
|
import { bookUrl } from '../../../common/globalImagesUrl';
|
|
const bkgUrl = ref(bookUrl + '/myPhotoProducts/bkg.png')
|
|
const items = ref([null, null, null])
|
|
const items_1 = ref([null, null, null])
|
|
</script>
|
|
|
|
<style scoped lang="scss">
|
|
.mt-19 {
|
|
margin-top: 35.63rpx;
|
|
}
|
|
.ml-7 {
|
|
margin-left: 13.13rpx;
|
|
}
|
|
.page {
|
|
background-size: 100% 100%;
|
|
background-repeat: no-repeat;
|
|
width: 100%;
|
|
overflow-y: auto;
|
|
overflow-x: hidden;
|
|
height: 100vh;
|
|
}
|
|
.equal-division {
|
|
position: absolute;
|
|
left: 23.38rpx;
|
|
right: 25.37rpx;
|
|
top: 18.13rpx;
|
|
}
|
|
.group {
|
|
flex: 1 1 350.63rpx;
|
|
}
|
|
.equal-division-item {
|
|
padding: 7.31rpx 0 9.99rpx;
|
|
}
|
|
.image {
|
|
width: 176.01rpx;
|
|
height: 176.01rpx;
|
|
}
|
|
.font {
|
|
font-size: 33.75rpx;
|
|
font-family: FZSongKeBenXiuKaiS-R-GB;
|
|
line-height: 32.83rpx;
|
|
}
|
|
.text {
|
|
color: #c35c5d;
|
|
}
|
|
.text_2 {
|
|
color: #323232;
|
|
line-height: 32.44rpx;
|
|
}
|
|
.divider {
|
|
background-color: #818181;
|
|
height: 1.88rpx;
|
|
}
|
|
.pos {
|
|
position: absolute;
|
|
left: 31.88rpx;
|
|
right: 31.88rpx;
|
|
top: 280.31rpx;
|
|
}
|
|
.section_2 {
|
|
background-color: #ffffff96;
|
|
border-radius: 18.75rpx 18.75rpx 0rpx 0rpx;
|
|
width: 159.38rpx;
|
|
height: 1198.13rpx;
|
|
}
|
|
.pos_2 {
|
|
position: absolute;
|
|
left: 0;
|
|
top: 309.38rpx;
|
|
}
|
|
.pos_3 {
|
|
position: absolute;
|
|
left: 0;
|
|
top: 309.38rpx;
|
|
}
|
|
.text-wrapper_1 {
|
|
padding: 60.38rpx 0 60.11rpx;
|
|
background-color: #faddde;
|
|
border-radius: 18.75rpx;
|
|
width: 159.38rpx;
|
|
}
|
|
.list-item:first-child {
|
|
margin-top: 0;
|
|
}
|
|
.font_2 {
|
|
font-size: 26.25rpx;
|
|
font-family: FZSongKeBenXiuKaiS-R-GB;
|
|
line-height: 25.16rpx;
|
|
color: #323232;
|
|
}
|
|
.text_11 {
|
|
line-height: 24rpx;
|
|
}
|
|
.group_2 {
|
|
width: 555rpx;
|
|
}
|
|
.pos_4 {
|
|
position: absolute;
|
|
right: 16.88rpx;
|
|
top: 309.38rpx;
|
|
}
|
|
.list-item_2 {
|
|
padding: 13.13rpx 16.88rpx 12.58rpx;
|
|
background-color: #ffffff;
|
|
border-radius: 18.75rpx;
|
|
}
|
|
.list-item_2:first-child {
|
|
margin-top: 0;
|
|
}
|
|
.image_2 {
|
|
margin-bottom: 2.42rpx;
|
|
border-radius: 9.38rpx;
|
|
width: 120rpx;
|
|
height: 142.5rpx;
|
|
}
|
|
.text_9 {
|
|
line-height: 25.54rpx;
|
|
}
|
|
.text_10 {
|
|
font-size: 28.13rpx;
|
|
}
|
|
.text-wrapper_2 {
|
|
margin-right: 5.61rpx;
|
|
margin-top: 69.38rpx;
|
|
padding: 14.93rpx 0 16.69rpx;
|
|
background-color: #ffb6b9;
|
|
border-radius: 28.13rpx;
|
|
width: 108.75rpx;
|
|
height: 48.75rpx;
|
|
}
|
|
.font_3 {
|
|
font-size: 18.75rpx;
|
|
font-family: FZSongKeBenXiuKaiS-R-GB;
|
|
line-height: 17.14rpx;
|
|
color: #ffffff;
|
|
}
|
|
@import url(../../../common/css/global.css);
|
|
</style>
|