2024-10-18 14:49:08 +00:00
|
|
|
|
<template>
|
2024-12-18 11:37:51 +00:00
|
|
|
|
<view class="flex-row relative page">
|
|
|
|
|
<view class="flex-row justify-center items-center section_2 pos">
|
|
|
|
|
<image class="image"
|
2024-12-21 13:23:49 +00:00
|
|
|
|
src="https://carbon2.obs.cn-north-4.myhuaweicloud.com:443/feiyi%2Ftest%2F0%2FVrgKnxCu-sousuo.png" />
|
2024-12-18 11:37:51 +00:00
|
|
|
|
<text class="font text ml-4">搜索订单</text>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="flex-col section_44">
|
|
|
|
|
<view class="flex-row justify-between self-stretch groupp">
|
|
|
|
|
<view class="font_22" :class="{ active: orderStatus === '全部', selected: isSelected('全部') }"
|
|
|
|
|
@click="changeTab('全部')">
|
|
|
|
|
全部
|
2024-11-09 09:43:22 +00:00
|
|
|
|
</view>
|
2024-12-18 11:37:51 +00:00
|
|
|
|
<view class="font_22" :class="{ active: orderStatus === '待支付', selected: isSelected('待支付') }"
|
|
|
|
|
@click="changeTab('待支付')">
|
|
|
|
|
待支付
|
2024-11-09 09:43:22 +00:00
|
|
|
|
</view>
|
2024-12-18 11:37:51 +00:00
|
|
|
|
<view class="font_22" :class="{ active: orderStatus === '待发货', selected: isSelected('待发货') }"
|
|
|
|
|
@click="changeTab('待发货')">
|
|
|
|
|
待发货
|
2024-11-09 09:43:22 +00:00
|
|
|
|
</view>
|
2024-12-18 11:37:51 +00:00
|
|
|
|
<view class="font_22" :class="{ active: orderStatus === '已发货', selected: isSelected('已发货') }"
|
|
|
|
|
@click="changeTab('已发货')">
|
|
|
|
|
已发货
|
|
|
|
|
</view>
|
|
|
|
|
<view class="font_22" :class="{ active: orderStatus === '已退款', selected: isSelected('已退款') }"
|
|
|
|
|
@click="changeTab('已退款')">
|
|
|
|
|
售后/退款
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<view class="flex-col pos_8">
|
|
|
|
|
<view class="flex-col section_4 list-item_1 mt-14" v-for="(order, index) in Status.displayedOrders"
|
2024-12-21 13:23:49 +00:00
|
|
|
|
:key="order.id" @click="goToText(order)">
|
2024-12-18 11:37:51 +00:00
|
|
|
|
<view class="flex-col">
|
|
|
|
|
<!-- <text class="self-end font_3 text_5">交易关闭</text> -->
|
|
|
|
|
<view class="flex-row items-center self-stretch mt-2">
|
|
|
|
|
<text class="font_4">订单编号:</text>
|
|
|
|
|
<text class="font_5 ml-5">{{order.orderNumber}}</text>
|
2024-11-09 09:43:22 +00:00
|
|
|
|
</view>
|
|
|
|
|
</view>
|
2024-12-18 11:37:51 +00:00
|
|
|
|
<view class="flex-col group">
|
2024-12-21 13:23:49 +00:00
|
|
|
|
<view class="flex-row justify-between list-item group_3" v-for="(item,goodIndex) in order.orderItemList"
|
|
|
|
|
:key="goodIndex">
|
2024-12-18 11:37:51 +00:00
|
|
|
|
<view class="flex-row">
|
2024-12-21 13:23:49 +00:00
|
|
|
|
<image class="image_2" :src="item.goodSnapshot.goodImg.split(';')[0]" />
|
2024-12-18 11:37:51 +00:00
|
|
|
|
<view class="flex-col self-start group_1 ml-18">
|
|
|
|
|
<view class="flex-row self-stretch">
|
|
|
|
|
<text class="font">{{ item.goodSnapshot.name }}</text>
|
|
|
|
|
<text class="font text_10">【{{ item.goodSnapshot.type }}】</text>
|
|
|
|
|
</view>
|
2024-12-21 13:23:49 +00:00
|
|
|
|
<text class="self-start font_7 text_12 mt-36">x{{ item.quantity }}</text>
|
2024-12-18 11:37:51 +00:00
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="flex-row items-center self-start group_2">
|
2024-12-21 13:23:49 +00:00
|
|
|
|
¥ {{ item.goodSnapshot.price }}
|
2024-11-09 09:43:22 +00:00
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
2024-12-18 11:37:51 +00:00
|
|
|
|
<view class="divider view_1"></view>
|
2024-12-21 13:23:49 +00:00
|
|
|
|
<!-- <view class="flex-row justify-end group_5">
|
2024-11-09 09:43:22 +00:00
|
|
|
|
<view v-if="order.orderStatus==='待支付'" class="font text_18">去支付</view>
|
|
|
|
|
<view v-if="order.orderStatus==='待发货'" class="font text_18">取消订单</view>
|
|
|
|
|
<view v-if="order.orderStatus==='已发货'" class="font text_18">确认收货</view>
|
2024-12-18 11:37:51 +00:00
|
|
|
|
<view v-if="order.orderStatus==='已退款'" class="font text_18">售后详情</view>
|
2024-12-21 13:23:49 +00:00
|
|
|
|
</view> -->
|
2024-12-18 11:37:51 +00:00
|
|
|
|
<view class="flex-row justify-end items-center view">
|
|
|
|
|
<text class="font_9 text_16">总 金额:</text>
|
|
|
|
|
<image class="image_4 image_5"
|
2024-12-21 13:23:49 +00:00
|
|
|
|
src="https://carbon2.obs.cn-north-4.myhuaweicloud.com:443/feiyi%2Ftest%2F0%2FJmxvlQvD-rmbpink.png" />
|
2024-12-18 11:37:51 +00:00
|
|
|
|
<text class="font_8 text_17">{{order.totalAmount}}</text>
|
|
|
|
|
</view>
|
2024-12-19 07:52:16 +00:00
|
|
|
|
<!-- <view class="flex-row justify-end group_7"> -->
|
|
|
|
|
<!-- <view class="flex-col justify-start items-center text-wrapper"><text
|
2024-12-18 11:37:51 +00:00
|
|
|
|
class="font text_18">删除记录</text></view>
|
2024-12-19 07:52:16 +00:00
|
|
|
|
<view class="flex-col justify-start items-center text-wrapper_2 ml-14" v-if="order.orderStatus==='待支付'">
|
|
|
|
|
<text class="font_3">去支付</text>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="flex-col justify-start items-center text-wrapper_2 ml-14" v-if="order.orderStatus==='待发货'">
|
|
|
|
|
<text class="font_3">取消订单</text>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="flex-col justify-start items-center text-wrapper_2 ml-14" v-if="order.orderStatus==='已发货'">
|
|
|
|
|
<text class="font_3">确认收货</text>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="flex-col justify-start items-center text-wrapper_2 ml-14" v-if="order.orderStatus==='已退款'">
|
|
|
|
|
<text class="font_3">已退款</text>
|
|
|
|
|
</view> -->
|
|
|
|
|
<!-- </view> -->
|
2024-12-21 13:23:49 +00:00
|
|
|
|
<view @click.stop>
|
2024-12-19 07:52:16 +00:00
|
|
|
|
<view class="flex-row justify-end group_7" v-if="order.orderStatus==='待支付'">
|
2024-12-21 13:23:49 +00:00
|
|
|
|
<view class="flex-col justify-start items-center text-wrapper" @click="cancelOrder(order)"><text
|
2024-12-19 07:52:16 +00:00
|
|
|
|
class="font text_18">取消订单</text></view>
|
2024-12-21 13:23:49 +00:00
|
|
|
|
<view class="flex-col justify-start items-center text-wrapper_2 ml-14" @click="goToPay(order)">
|
2024-12-19 07:52:16 +00:00
|
|
|
|
<text class="font_3">去支付</text>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="flex-row justify-end group_7" v-if="order.orderStatus==='待发货'">
|
2024-12-18 11:37:51 +00:00
|
|
|
|
<view class="flex-col justify-start items-center text-wrapper_2 ml-14">
|
|
|
|
|
<text class="font_3">联系客服</text>
|
2024-12-19 07:52:16 +00:00
|
|
|
|
</view>
|
|
|
|
|
</view>
|
2025-01-02 02:07:36 +00:00
|
|
|
|
<view class="flex-row justify-end group_7" v-if="order.orderStatus==='待收货'">
|
2024-12-19 07:52:16 +00:00
|
|
|
|
<view class="flex-col justify-start items-center text-wrapper_2 ml-14">
|
|
|
|
|
<text class="font_3">查看物流</text>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="flex-row justify-end group_7" v-if="order.orderStatus==='已退款'">
|
|
|
|
|
<view class="flex-col justify-start items-center text-wrapper"><text
|
|
|
|
|
class="font text_18">删除订单</text></view>
|
2024-11-09 09:43:22 +00:00
|
|
|
|
</view>
|
2024-12-21 13:23:49 +00:00
|
|
|
|
</view>
|
2024-11-09 09:43:22 +00:00
|
|
|
|
</view>
|
2024-12-18 11:37:51 +00:00
|
|
|
|
</view>
|
2024-11-09 09:43:22 +00:00
|
|
|
|
</view>
|
|
|
|
|
</view>
|
2024-10-18 14:49:08 +00:00
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script setup>
|
2024-12-21 13:23:49 +00:00
|
|
|
|
import { ref,onMounted,toRaw } from 'vue';
|
|
|
|
|
import { baseUrl } from '@/api/request';
|
|
|
|
|
import { onLoad } from "@dcloudio/uni-app";
|
|
|
|
|
const Status = ref({
|
|
|
|
|
orderStatus: '全部',
|
|
|
|
|
orders: [],
|
|
|
|
|
displayedOrders: [],
|
|
|
|
|
})
|
|
|
|
|
const orderStatus = ''
|
|
|
|
|
const currentColor = ref(0);
|
|
|
|
|
const isSelected = (tab) => Status.value.orderStatus === tab
|
2024-12-19 07:52:16 +00:00
|
|
|
|
onMounted(async () => {
|
|
|
|
|
await Getorder()
|
|
|
|
|
if (Status.value.orderStatus === '全部') {
|
|
|
|
|
Status.value.displayedOrders = Status.value.orders;
|
2024-12-21 13:23:49 +00:00
|
|
|
|
console.log('Status.value.displayedOrders--->',Status.value.displayedOrders);
|
2024-12-19 07:52:16 +00:00
|
|
|
|
} else {
|
|
|
|
|
Status.value.displayedOrders = Status.value.orders.filter((order) => {
|
|
|
|
|
switch (Status.value.orderStatus) {
|
|
|
|
|
case '待支付':
|
|
|
|
|
return order.orderStatus === '待支付'
|
|
|
|
|
case '待发货':
|
|
|
|
|
return order.orderStatus === '待发货'
|
|
|
|
|
case '已发货':
|
|
|
|
|
return order.orderStatus === '已发货'
|
|
|
|
|
case '已退款':
|
|
|
|
|
return order.orderStatus === '已退款'
|
|
|
|
|
default:
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
}
|
2024-12-21 13:23:49 +00:00
|
|
|
|
getFonts()
|
2024-12-19 07:52:16 +00:00
|
|
|
|
})
|
|
|
|
|
|
2024-11-15 06:22:52 +00:00
|
|
|
|
const userInfo = wx.getStorageSync('userInfo')
|
2024-11-09 09:43:22 +00:00
|
|
|
|
const Getorder = async () => {
|
|
|
|
|
const res = await uni.request({
|
|
|
|
|
url: baseUrl + '/order/list',
|
|
|
|
|
method: 'POST',
|
2024-11-15 06:22:52 +00:00
|
|
|
|
header: {
|
2024-12-18 11:37:51 +00:00
|
|
|
|
cookie: wx.getStorageSync('cookie')
|
2024-12-21 13:23:49 +00:00
|
|
|
|
}
|
2024-12-19 07:52:16 +00:00
|
|
|
|
})
|
2024-11-09 09:43:22 +00:00
|
|
|
|
if (res.data.code === 1) {
|
2024-12-19 07:52:16 +00:00
|
|
|
|
Status.value.orders = res.data.data
|
2024-12-21 13:23:49 +00:00
|
|
|
|
console.log('Status.value.orders--->',Status.value.orders);
|
2024-11-09 09:43:22 +00:00
|
|
|
|
} else {
|
2024-12-19 07:52:16 +00:00
|
|
|
|
console.log('没拿到用户数据')
|
2024-11-09 09:43:22 +00:00
|
|
|
|
}
|
2024-12-19 07:52:16 +00:00
|
|
|
|
}
|
|
|
|
|
const zt = ref({
|
|
|
|
|
tab:''
|
|
|
|
|
})
|
|
|
|
|
onLoad((options)=>{
|
|
|
|
|
zt.value.tab = JSON.parse(options.zt)
|
|
|
|
|
changeTab(zt.value.tab)
|
|
|
|
|
})
|
2024-11-09 09:43:22 +00:00
|
|
|
|
const changeTab = (tab) => {
|
|
|
|
|
if (tab === '全部') {
|
|
|
|
|
Status.value.displayedOrders = Status.value.orders;
|
|
|
|
|
Status.value.orderStatus = '全部';
|
|
|
|
|
} else {
|
|
|
|
|
Status.value.displayedOrders = Status.value.orders.filter((order) => {
|
|
|
|
|
switch (tab) {
|
|
|
|
|
case '待支付':
|
|
|
|
|
return order.orderStatus === '待支付';
|
|
|
|
|
case '待发货':
|
|
|
|
|
return order.orderStatus === '待发货';
|
2025-01-02 02:07:36 +00:00
|
|
|
|
case '待收货':
|
|
|
|
|
return order.orderStatus === '待收货';
|
2024-12-18 11:37:51 +00:00
|
|
|
|
case '已退款':
|
|
|
|
|
return order.orderStatus === '已退款';
|
2024-11-09 09:43:22 +00:00
|
|
|
|
default:
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2024-12-19 07:52:16 +00:00
|
|
|
|
})
|
|
|
|
|
Status.value.orderStatus = tab
|
2024-11-09 09:43:22 +00:00
|
|
|
|
}
|
2024-12-19 07:52:16 +00:00
|
|
|
|
}
|
2024-12-21 13:23:49 +00:00
|
|
|
|
const goToText = (orderInfo) => {
|
|
|
|
|
console.log(orderInfo);
|
|
|
|
|
uni.navigateTo({
|
|
|
|
|
url: '../../../pages/order/product-paysuccess/product-paysuccess?oid=' + JSON.stringify(orderInfo.id)
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
const cancelOrder = async (order) => { //取消订单
|
|
|
|
|
console.log(order);
|
|
|
|
|
uni.showModal({
|
|
|
|
|
title: '提示',
|
|
|
|
|
content: '确定要取消订单吗?',
|
|
|
|
|
success:(e) => {
|
|
|
|
|
if(e.confirm) {
|
|
|
|
|
postCancelOrder(order)
|
|
|
|
|
} else if(e.cancel) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
const goToPay = async (order) => {
|
|
|
|
|
wxPay(order.id) //调用微信支付
|
|
|
|
|
}
|
|
|
|
|
const wxPay = async( oid )=> { //传入订单id
|
|
|
|
|
try {
|
|
|
|
|
const res = await uni.request({
|
|
|
|
|
url: baseUrl + '/wechat/payment/create',
|
|
|
|
|
method: 'POST',
|
|
|
|
|
header: {
|
|
|
|
|
'cookie': wx.getStorageSync("cookie")
|
|
|
|
|
},
|
|
|
|
|
data: { id: oid }
|
|
|
|
|
})
|
|
|
|
|
const paymentData = res.data.data
|
|
|
|
|
wx.requestPayment({
|
|
|
|
|
appid: paymentData.appId,
|
|
|
|
|
nonceStr: paymentData.nonceStr,
|
|
|
|
|
package: paymentData.packageVal,
|
|
|
|
|
paySign: paymentData.paySign,
|
|
|
|
|
timeStamp: paymentData.timeStamp,
|
|
|
|
|
signType: paymentData.signType,
|
|
|
|
|
success(res) {
|
|
|
|
|
uni.showModal({
|
|
|
|
|
content: '支付成功',
|
|
|
|
|
showCancel: false
|
|
|
|
|
})
|
|
|
|
|
uni.redirectTo({
|
|
|
|
|
url: '/pages/order/product-paysuccess/product-paysuccess?oid=' + JSON.stringify(oid)
|
|
|
|
|
})
|
|
|
|
|
console.log('支付成功res--->',res);
|
|
|
|
|
},
|
|
|
|
|
fail(e) {
|
|
|
|
|
// uni.showModal({
|
|
|
|
|
// content: '支付失败,原因为:' + e.errMsg,
|
|
|
|
|
// showCancel: false
|
|
|
|
|
// })
|
|
|
|
|
// console.log('e.errMsg--->',e.errMsg);
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
}catch(error) {
|
|
|
|
|
console.error('支付请求失败',error);
|
|
|
|
|
uni.showModal({
|
|
|
|
|
content: '支付请求失败,请重试。',
|
|
|
|
|
showCancel: false
|
2024-11-09 09:43:22 +00:00
|
|
|
|
})
|
|
|
|
|
}
|
2024-12-21 13:23:49 +00:00
|
|
|
|
}
|
|
|
|
|
const postCancelOrder = async(order)=>{ //向后端发送取消订单请求
|
|
|
|
|
const res = await uni.request({
|
|
|
|
|
url: baseUrl + '/order/cancel/id',
|
|
|
|
|
method: 'POST',
|
|
|
|
|
header: {
|
|
|
|
|
cookie: wx.getStorageSync('cookie')
|
|
|
|
|
},
|
|
|
|
|
data: { id: order.id }
|
|
|
|
|
})
|
|
|
|
|
console.log('取消订单的信息--->',res.data);
|
|
|
|
|
if(res.data.code === 1) {
|
|
|
|
|
Getorder() //成功请求后获取订单信息
|
|
|
|
|
uni.redirectTo({
|
|
|
|
|
url: '/pages/mine/mineorders/mineorders?zt=' + JSON.stringify(Status.value.orderStatus)
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
//获取字体
|
|
|
|
|
const getFonts =()=>{
|
|
|
|
|
uni.loadFontFace({
|
|
|
|
|
family: 'FangZhengFonts',
|
|
|
|
|
source: `url("https://carbon2.obs.cn-north-4.myhuaweicloud.com/fonts/FangZhengFonts.TTF")`,
|
|
|
|
|
success:(res) =>{
|
|
|
|
|
console.log('success',res);
|
|
|
|
|
},
|
|
|
|
|
fail:(err) => {
|
|
|
|
|
console.log('err',err);
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
}
|
2024-10-18 14:49:08 +00:00
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
2024-12-21 13:23:49 +00:00
|
|
|
|
.groupp {
|
|
|
|
|
padding: 22.5rpx 0 18.75rpx;
|
|
|
|
|
}
|
|
|
|
|
.section_44 {
|
|
|
|
|
padding-left: 33.75rpx;
|
|
|
|
|
padding-right: 30rpx;
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 120rpx;
|
|
|
|
|
margin-top: 80rpx;
|
|
|
|
|
}
|
|
|
|
|
.ml-5 {
|
|
|
|
|
margin-left: 9.38rpx;
|
|
|
|
|
}
|
|
|
|
|
.font_22.selected {
|
|
|
|
|
position: relative;
|
|
|
|
|
}
|
|
|
|
|
.font_22.selected::after {
|
|
|
|
|
content: '';
|
|
|
|
|
position: absolute;
|
|
|
|
|
bottom: -5px; // 调整线条距离底部的距离
|
|
|
|
|
left: 0;
|
|
|
|
|
right: 0;
|
|
|
|
|
height: 2px; // 调整线条的粗细
|
|
|
|
|
background-color: #f6aaa4; // 调整线条颜色
|
|
|
|
|
transition: all 0.3s ease; // 添加过渡效果
|
|
|
|
|
}
|
|
|
|
|
.page {
|
|
|
|
|
padding: 46.88rpx 22.5rpx 401.25rpx;
|
|
|
|
|
background-color: #ffffff;
|
|
|
|
|
background-image: url('https://carbon2.obs.cn-north-4.myhuaweicloud.com:443/feiyi%2Ftest%2F0%2FQfLHXSAU-feiyigongfangbeijin.png');
|
|
|
|
|
background-size: 100% 100%;
|
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
|
height: 100vh;
|
|
|
|
|
width: 100%;
|
|
|
|
|
overflow-y: auto;
|
|
|
|
|
overflow-x: hidden;
|
|
|
|
|
}
|
|
|
|
|
.section_2 {
|
|
|
|
|
padding: 9.38rpx 0;
|
|
|
|
|
background-color: #ffffff;
|
|
|
|
|
border-radius: 75rpx;
|
|
|
|
|
}
|
|
|
|
|
.pos {
|
|
|
|
|
position: absolute;
|
|
|
|
|
left: 35.63rpx;
|
|
|
|
|
right: 35.63rpx;
|
|
|
|
|
top: 46.88rpx;
|
|
|
|
|
}
|
|
|
|
|
.image {
|
|
|
|
|
width: 37.5rpx;
|
|
|
|
|
height: 37.5rpx;
|
|
|
|
|
}
|
|
|
|
|
.font {
|
|
|
|
|
font-size: 26.25rpx;
|
|
|
|
|
font-family: FangZhengFonts;
|
|
|
|
|
line-height: 25.54rpx;
|
|
|
|
|
color: #323232;
|
|
|
|
|
}
|
|
|
|
|
.text {
|
|
|
|
|
color: #c0c0c0;
|
|
|
|
|
line-height: 25.84rpx;
|
|
|
|
|
}
|
|
|
|
|
.font_2 {
|
|
|
|
|
font-size: 30rpx;
|
|
|
|
|
font-family: FangZhengFonts;
|
|
|
|
|
line-height: 28.84rpx;
|
|
|
|
|
color: #323232;
|
|
|
|
|
}
|
|
|
|
|
.font_22 {
|
|
|
|
|
font-size: 30rpx;
|
|
|
|
|
font-family: FangZhengFonts;
|
|
|
|
|
line-height: 27.81rpx;
|
|
|
|
|
color: #323232;
|
|
|
|
|
}
|
|
|
|
|
.text_2 {
|
|
|
|
|
line-height: 28.48rpx;
|
|
|
|
|
}
|
|
|
|
|
.pos_2 {
|
|
|
|
|
position: absolute;
|
|
|
|
|
left: 33.99rpx;
|
|
|
|
|
top: 146.36rpx;
|
|
|
|
|
}
|
|
|
|
|
.text_3 {
|
|
|
|
|
line-height: 28.24rpx;
|
|
|
|
|
}
|
|
|
|
|
.pos_3 {
|
|
|
|
|
position: absolute;
|
|
|
|
|
left: 147.66rpx;
|
|
|
|
|
top: 146.14rpx;
|
|
|
|
|
}
|
|
|
|
|
.pos_4 {
|
|
|
|
|
position: absolute;
|
|
|
|
|
left: 295.78rpx;
|
|
|
|
|
top: 145.78rpx;
|
|
|
|
|
}
|
|
|
|
|
.pos_5 {
|
|
|
|
|
position: absolute;
|
|
|
|
|
right: 214.22rpx;
|
|
|
|
|
top: 145.78rpx;
|
|
|
|
|
}
|
|
|
|
|
.text_4 {
|
|
|
|
|
line-height: 29.53rpx;
|
|
|
|
|
}
|
|
|
|
|
.pos_6 {
|
|
|
|
|
position: absolute;
|
|
|
|
|
right: 34.22rpx;
|
|
|
|
|
top: 147.07rpx;
|
|
|
|
|
}
|
|
|
|
|
.section_3 {
|
|
|
|
|
background-color: #ffaaa5;
|
|
|
|
|
width: 73.13rpx;
|
|
|
|
|
height: 5.63rpx;
|
|
|
|
|
}
|
|
|
|
|
.pos_7 {
|
|
|
|
|
position: absolute;
|
|
|
|
|
left: 30rpx;
|
|
|
|
|
top: 182.81rpx;
|
|
|
|
|
}
|
|
|
|
|
.pos_8 {
|
|
|
|
|
position: absolute;
|
|
|
|
|
left: 22.5rpx;
|
|
|
|
|
right: 30rpx;
|
|
|
|
|
top: 217.5rpx;
|
|
|
|
|
}
|
|
|
|
|
.section_4 {
|
|
|
|
|
padding: 34.61rpx 15rpx 31.88rpx;
|
|
|
|
|
background-color: #ffffff;
|
|
|
|
|
border-radius: 31.88rpx;
|
|
|
|
|
}
|
|
|
|
|
.list-item_1:first-child {
|
|
|
|
|
margin-top: 0;
|
|
|
|
|
}
|
|
|
|
|
.font_3 {
|
|
|
|
|
font-size: 26.25rpx;
|
|
|
|
|
font-family: FangZhengFonts;
|
|
|
|
|
line-height: 25.54rpx;
|
|
|
|
|
color: #ffaaa5;
|
|
|
|
|
}
|
|
|
|
|
.text_5 {
|
|
|
|
|
margin-right: 8.08rpx;
|
|
|
|
|
line-height: 24.62rpx;
|
|
|
|
|
}
|
|
|
|
|
.font_4 {
|
|
|
|
|
font-size: 22.5rpx;
|
|
|
|
|
font-family: FangZhengFonts;
|
|
|
|
|
line-height: 22.14rpx;
|
|
|
|
|
color: #818181;
|
|
|
|
|
}
|
|
|
|
|
.font_5 {
|
|
|
|
|
font-size: 22.5rpx;
|
|
|
|
|
font-family: FangZhengFonts;
|
|
|
|
|
line-height: 15.04rpx;
|
|
|
|
|
color: #818181;
|
|
|
|
|
}
|
|
|
|
|
.group {
|
|
|
|
|
margin-top: 29.21rpx;
|
|
|
|
|
}
|
|
|
|
|
.list-item:first-child {
|
|
|
|
|
margin-top: 0;
|
|
|
|
|
}
|
|
|
|
|
.image_2 {
|
|
|
|
|
border-radius: 9.38rpx;
|
|
|
|
|
width: 146.25rpx;
|
|
|
|
|
height: 144.38rpx;
|
|
|
|
|
}
|
|
|
|
|
.group_1 {
|
|
|
|
|
margin-top: 2.33rpx;
|
|
|
|
|
}
|
|
|
|
|
.text_10 {
|
|
|
|
|
line-height: 25.01rpx;
|
|
|
|
|
}
|
|
|
|
|
.font_7 {
|
|
|
|
|
font-size: 26.25rpx;
|
|
|
|
|
font-family: Open Sans;
|
|
|
|
|
line-height: 19.29rpx;
|
|
|
|
|
color: #323232;
|
|
|
|
|
}
|
|
|
|
|
.text_12 {
|
|
|
|
|
margin-left: 5.34rpx;
|
|
|
|
|
line-height: 18.73rpx;
|
|
|
|
|
}
|
|
|
|
|
.group_2 {
|
|
|
|
|
margin-right: 8.23rpx;
|
|
|
|
|
margin-top: 89.19rpx;
|
|
|
|
|
}
|
|
|
|
|
.font_6 {
|
|
|
|
|
font-size: 33.75rpx;
|
|
|
|
|
font-family: Open Sans;
|
|
|
|
|
line-height: 25.54rpx;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
color: #323232;
|
|
|
|
|
}
|
|
|
|
|
.text_11 {
|
|
|
|
|
margin-left: 25.03rpx;
|
|
|
|
|
line-height: 24.88rpx;
|
|
|
|
|
}
|
|
|
|
|
.image_3 {
|
|
|
|
|
margin-left: -90.66rpx;
|
|
|
|
|
width: 30rpx;
|
|
|
|
|
height: 26.25rpx;
|
|
|
|
|
}
|
|
|
|
|
.font_8 {
|
|
|
|
|
font-size: 26.25rpx;
|
|
|
|
|
font-family: Open Sans;
|
|
|
|
|
line-height: 19.29rpx;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
color: #323232;
|
|
|
|
|
}
|
|
|
|
|
.text_13 {
|
|
|
|
|
margin-left: 61.14rpx;
|
|
|
|
|
}
|
|
|
|
|
.divider {
|
|
|
|
|
background-color: #dad2d2;
|
|
|
|
|
height: 0.81rpx;
|
|
|
|
|
}
|
|
|
|
|
.view_1 {
|
|
|
|
|
margin: 30.43rpx 28.13rpx 0 39.38rpx;
|
|
|
|
|
}
|
|
|
|
|
.group_5 {
|
|
|
|
|
margin-top: 49.41rpx;
|
|
|
|
|
padding: 0 21.21rpx;
|
|
|
|
|
color: #ffaaa5;
|
|
|
|
|
}
|
|
|
|
|
.font_9 {
|
|
|
|
|
font-size: 26.25rpx;
|
|
|
|
|
font-family: FangZhengFonts;
|
|
|
|
|
line-height: 25.54rpx;
|
|
|
|
|
color: #000000;
|
|
|
|
|
}
|
|
|
|
|
.text_14 {
|
|
|
|
|
line-height: 24.62rpx;
|
|
|
|
|
}
|
|
|
|
|
.text_15 {
|
|
|
|
|
margin-top: 2.17rpx;
|
|
|
|
|
line-height: 24rpx;
|
|
|
|
|
}
|
|
|
|
|
.view {
|
|
|
|
|
margin-top: 19.93rpx;
|
|
|
|
|
padding: 0 19.54rpx;
|
|
|
|
|
}
|
|
|
|
|
.text_16 {
|
|
|
|
|
margin-right: 6.99rpx;
|
|
|
|
|
line-height: 24.3rpx;
|
|
|
|
|
}
|
|
|
|
|
.image_4 {
|
|
|
|
|
width: 31.88rpx;
|
|
|
|
|
height: 30rpx;
|
|
|
|
|
}
|
|
|
|
|
.image_5 {
|
|
|
|
|
margin-right: -8.29rpx;
|
|
|
|
|
}
|
|
|
|
|
.text_17 {
|
|
|
|
|
color: #ffaaa5;
|
|
|
|
|
line-height: 19.39rpx;
|
|
|
|
|
}
|
|
|
|
|
.group_7 {
|
|
|
|
|
margin-top: 52.5rpx;
|
|
|
|
|
padding: 0 9.38rpx;
|
|
|
|
|
}
|
|
|
|
|
.text-wrapper {
|
|
|
|
|
padding: 13.86rpx 0 13.52rpx;
|
|
|
|
|
background-color: #fffef8;
|
|
|
|
|
border-radius: 75rpx;
|
|
|
|
|
width: 155.63rpx;
|
|
|
|
|
height: 56.25rpx;
|
|
|
|
|
border: solid 1.88rpx #cbcbcb;
|
|
|
|
|
}
|
|
|
|
|
.text_18 {
|
|
|
|
|
line-height: 25.13rpx;
|
|
|
|
|
}
|
|
|
|
|
.text-wrapper_2 {
|
|
|
|
|
padding: 13.46rpx 0 13.5rpx;
|
|
|
|
|
background-color: #fffef8;
|
|
|
|
|
border-radius: 75rpx;
|
|
|
|
|
width: 155.63rpx;
|
|
|
|
|
height: 56.25rpx;
|
|
|
|
|
border: solid 1.88rpx #ffaaa5;
|
|
|
|
|
}
|
|
|
|
|
.group_3 {
|
|
|
|
|
margin-top: 15rpx;
|
|
|
|
|
}
|
|
|
|
|
@import url("../../../common/css/global.css");
|
2024-11-05 12:08:32 +00:00
|
|
|
|
</style>
|