<template> <view class="flex-col justify-start relative page" :style="{ backgroundImage: 'url(' + bkgUrl + ')'}"> <view class="flex-row justify-between items-center section_2 pos"> <view class="flex-row items-center"> <image class="shrink-0 image" :src="clothesRentUrl + '/clotesRentSubmitOrder/dzf.png'" /> <text class="ml-10 font text">张三 15888610253</text> </view> <view class="flex-row"> <text class="font_2 text_2">更换联系人</text> <image class="ml-2 shrink-0 image_2" :src="clothesRentUrl + '/clotesRentSubmitOrder/yjt.png'" /> </view> </view> <view class="flex-col section_3 pos_2"> <view class="flex-row justify-between"> <view class="flex-row"> <image class="image_3" src="https://ide.code.fun/api/image?token=67dd57af4ae84d00122a84d1&name=9e6e4f59936d62d5d7cfd08e1612a1d7.png" /> <view class="flex-col items-start group_2 ml-15"> <text class="font text_3">汉服—曲裾系列</text> <text class="mt-64 font_3">¥129.00</text> </view> </view> <view class="flex-col items-center self-start group"> <image class="image_4" :src="clothesRentUrl + '/clotesRentSubmitOrder/nav.png'" /> <text class="font_2 text_4 mt-11">提货地址</text> </view> </view> <view class="flex-row justify-between items-baseline group_3"> <text class="font">租赁天数</text> <text class="font_3 text_5">X3</text> </view> <view class="flex-row justify-between items-baseline group_4"> <text class="font text_6">总计</text> <text class="text_7">¥129.00</text> </view> </view> <view class="flex-row justify-between items-center section_4 pos_3"> <view class="flex-row items-baseline"> <text class="font_4 text_8">定金:</text> <text class="font_4 text_9">¥129.00</text> </view> <view class="flex-col justify-start items-center text-wrapper"><text class="font text_10">确定</text></view> </view> </view> </template> <script setup> import {ref} from 'vue' import { clothesRentUrl } from '../../../common/globalImagesUrl'; const bkgUrl = ref(clothesRentUrl + '/clothesRentSubmitOrder/bkg.png') </script> <style scoped lang="scss"> .ml-15 { margin-left: 28.13rpx; } .mt-11 { margin-top: 20.63rpx; } .page { background-color: #ffffff; background-size: 100% 100%; background-repeat: no-repeat; width: 100%; overflow-y: auto; overflow-x: hidden; height: 100vh; } .section_2 { padding: 30rpx 15rpx 30rpx 24.38rpx; background-color: #ffffff; border-radius: 18.75rpx; } .pos { position: absolute; left: 22.5rpx; right: 24.38rpx; top: 37.5rpx; } .image { width: 50.63rpx; height: 50.63rpx; } .font { font-size: 30rpx; font-family: FZSongKeBenXiuKaiS-R-GB; line-height: 28.84rpx; color: #323232; } .text { color: #818181; line-height: 25.89rpx; } .font_2 { font-size: 26.25rpx; font-family: FZSongKeBenXiuKaiS-R-GB; line-height: 25.54rpx; } .text_2 { margin: 3.75rpx 0; color: #e79ea1; } .image_2 { width: 30rpx; height: 30rpx; } .section_3 { padding: 18.75rpx 18.75rpx 41.25rpx 18.75rpx; background-color: #ffffff; border-radius: 18.75rpx; } .pos_2 { position: absolute; left: 22.5rpx; right: 24.38rpx; top: 168.75rpx; } .image_3 { border-radius: 9.38rpx; width: 161.25rpx; height: 176.25rpx; } .group_2 { margin-top: 3.75rpx; } .text_3 { line-height: 29.18rpx; } .font_3 { font-size: 30rpx; font-family: FZSongKeBenXiuKaiS-R-GB; line-height: 20.04rpx; color: #323232; } .group { // margin-right: 22.5rpx; } .image_4 { width: 46.88rpx; height: 46.88rpx; } .text_4 { color: #323232; line-height: 25.22rpx; } .group_3 { margin-top: 37.5rpx; } .text_5 { margin-right: 18.75rpx; } .group_4 { margin-top: 22.5rpx; } .text_6 { line-height: 28.13rpx; } .text_7 { color: #c35c5d; font-size: 33.75rpx; font-family: FZSongKeBenXiuKaiS-R-GB; line-height: 22.54rpx; } .section_4 { padding: 26.25rpx; background-color: #ffffff; } .pos_3 { position: fixed; bottom: 0; left: 0; right: 0; } .font_4 { font-size: 37.5rpx; font-family: FZSongKeBenXiuKaiS-R-GB; } .text_8 { color: #323232; line-height: 34.42rpx; } .text_9 { margin-left: -7.5rpx; color: #c35c5d; line-height: 25.05rpx; } .text-wrapper { margin-right: 3.75rpx; padding: 22.5rpx 0; background-color: #e79ea1; border-radius: 187.5rpx; width: 241.88rpx; height: 76.88rpx; } .text_10 { color: #ffffff; line-height: 28.01rpx; } @import url(../../../common/css/global.css); </style>