jiangchengfeiyi-xiaochengxu/pages/booking/CostumeDisplay/CostumeDisplay.vue
2024-12-04 13:33:43 +08:00

223 lines
4.8 KiB
Vue

<template>
<!-- <view v-for="(item,index) in label" >
<view>{{item.name}}</view>
<image :src="item.image"></image>
<view>{{item.intro}}</view>
<view>{{item.price}}</view>
</view> -->
<view class="flex-col page">
<view class="flex-col section">
<text class="self-start text">服装展示</text>
<view class="flex-col self-stretch mt-21">
<view class="flex-row items-center mt-10 list-item" v-for="(item, index) in label" :key="index" @click="goToText(index)">
<image
class="shrink-0 image_2"
:src="item.image"
/>
<view class="flex-col flex-1 ml-11">
<view class="flex-col self-stretch">
<view class="flex-row justify-end self-stretch group">
<text class="font">详细信息</text>
<image
class="image"
:src="item.image"
/>
</view>
<text class="self-start font_2 text_2 mt-3">{{item.name}}</text>
</view>
<view class="self-stretch group_2 mt-5">
<text class="font_4">服装简介:</text>
<text class="font_3">
{{item.intro}}
</text>
</view>
<text class="self-end font_5 mt-5">¥{{item.price}}</text>
</view>
</view>
</view>
</view>
<view class="mt-48 flex-row items-center section_2">
<view class="flex-col items-center shrink-0 section_3">
<image
class="image_3"
src="https://ide.code.fun/api/image?token=674eb236797f850011f0c44a&name=4b56fed14a39630ca2312edf6e34c024.png"
/>
<text class="mt-2 text_4">客服</text>
</view>
<view class="ml-34 flex-col justify-start items-center flex-1 text-wrapper">
<text class="text_3">现在去预约</text>
</view>
</view>
</view>
</template>
<script setup>
import { ref,onMounted } from 'vue'
import { onLoad } from '@dcloudio/uni-app'
import { baseUrl } from '../../../api/request';
const list = ref([{}])
const label = ref([{}])
onMounted(()=>{
getLabel()
})
onLoad((options)=>{
list.value = JSON.parse(options.info)
console.log(list.value,'id')
})
const getLabel = async ()=>{
const res = await uni.request({
url:baseUrl + '/clothesInfo/list/label',
method:'POST',
header:{
cookie:wx.getAccountInfoSync('cookie')
},
data:{
id:list.value
}
})
console.log(res)
if(res.data.code === 1){
label.value = res.data.data
}else{
uin.showtoast({
icon:'error',
title:'获取失败'
})
}
}
const goToText = (index)=>{
uni.navigateTo({
url:"/pages/booking/CostumeDetails/CostumeDetails?info=" + JSON.stringify(label.value[index].id)
})
console.log(label.value[index].id)
}
</script>
<style lang="scss" scoped>
.mt-21 {
margin-top: 39.38rpx;
}
.ml-11 {
margin-left: 20.63rpx;
}
.mt-3 {
margin-top: 5.63rpx;
}
.mt-5 {
margin-top: 9.38rpx;
}
.page {
padding-top: 69.38rpx;
background-color: #f5f5dc;
width: 100%;
overflow-y: auto;
overflow-x: hidden;
height: 100%;
}
.section {
margin: 0 18.75rpx;
padding: 37.5rpx 30rpx 129.38rpx;
background-color: #fffef8;
border-radius: 18.75rpx;
}
.text {
color: #000000;
font-size: 30rpx;
font-family: Open Sans;
line-height: 27.71rpx;
}
.list-item {
padding: 22.5rpx 22.5rpx 22.5rpx 30rpx;
background-color: #fff3c3;
border-radius: 9.38rpx;
}
.list-item:first-child {
margin-top: 0;
}
.image_2 {
border-radius: 9.38rpx;
width: 148.13rpx;
height: 165rpx;
}
.group {
padding: 0 3.75rpx;
}
.font {
font-size: 18.75rpx;
font-family: Open Sans;
line-height: 17.44rpx;
color: #323232;
}
.image {
width: 15rpx;
height: 15rpx;
}
.font_2 {
font-size: 26.25rpx;
font-family: Open Sans;
line-height: 22.5rpx;
color: #323232;
}
.text_2 {
line-height: 24.26rpx;
}
.group_2 {
line-height: 22.5rpx;
}
.font_4 {
font-size: 18.75rpx;
font-family: Open Sans;
line-height: 22.5rpx;
color: #323232;
}
.font_3 {
font-size: 18.75rpx;
font-family: Open Sans;
line-height: 22.5rpx;
color: #828282;
}
.font_5 {
font-size: 33.75rpx;
font-family: Times New Roman;
line-height: 24.73rpx;
color: #ff3c3c;
}
.section_2 {
background-color: #fffef8;
position: fixed;
bottom: 0;
width: 100%;
}
.section_3 {
padding: 15rpx 0;
background-color: #ffc470;
width: 118.13rpx;
height: 114.38rpx;
}
.image_3 {
width: 52.5rpx;
height: 52.5rpx;
}
.text_4 {
color: #fffef8;
font-size: 26.25rpx;
font-family: Inter;
line-height: 24.17rpx;
}
.text-wrapper {
margin-right: 26.25rpx;
padding: 26.25rpx 0;
background-color: #fbb612;
border-radius: 75rpx;
height: 82.5rpx;
}
.text_3 {
color: #ffffff;
font-size: 30rpx;
font-family: Inter;
line-height: 27.86rpx;
}
@import url("../../../common/css/global.css");
</style>