订单相关页面

This commit is contained in:
yuanteng0011 2024-10-19 16:31:40 +08:00
parent bc491f8fb0
commit 117330e15b
70 changed files with 2571 additions and 223 deletions

View File

@ -1,6 +1,5 @@
{
"pages": [
{
"path" : "pages/home/home",
"style" :
@ -73,13 +72,6 @@
"navigationBarTitleText" : ""
}
},
{
"path" : "pages/Shopping-cart/address/address",
"style" :
{
"navigationBarTitleText" : ""
}
},
{
"path" : "pages/order/product-close/product-close",
@ -91,7 +83,6 @@
},
{
"path" : "pages/Shopping-cart/Phone/Phone",
"style" :
{
"navigationBarTitleText" : "",
@ -127,7 +118,28 @@
}
},
{
"path" : "pages/Shopping-cart/ReceivingInformation/ReceivingInformation",
"path" : "pages/Shopping-cart/newaddress_Info/newaddress_Info",
"style" :
{
"navigationBarTitleText" : ""
}
},
{
"path" : "pages/Shopping-cart/address/address",
"style" :
{
"navigationBarTitleText" : ""
}
},
{
"path" : "pages/order/product-waitpay/product-waitpay",
"style" :
{
"navigationBarTitleText" : ""
}
},
{
"path" : "pages/order/paysuccess/paysuccess",
"style" :
{
"navigationBarTitleText" : ""
@ -144,6 +156,7 @@
}
},
"tabBar": {
"backgroundColor": "#F7E7C6",
"list": [
{
"pagePath": "pages/home/home",

View File

@ -1,11 +1,11 @@
<template>
<view class="flex-col page">
<view class="flex-col list">
<view class="flex-col list-item mt-9" v-for="(item, index) in items" :key="index">
<view class="flex-col list-item mt-9" v-for="(item, index) in address" :key="index">
<view class="flex-row justify-between items-center">
<view class="flex-row items-center">
<text class="font">张三</text>
<text class="font_2 ml-9">15888610253</text>
<text class="font">{{ item.name }}</text>
<text class="font_2 ml-9">{{ item.phone }}</text>
<view class="flex-col justify-start items-center shrink-0 text-wrapper ml-9">
<text class="text">默认</text>
</view>
@ -13,27 +13,78 @@
<view class="flex-row">
<image
class="image"
src="https://ide.code.fun/api/image?token=6710a29d1511d900114ac910&name=6ff8502391df0676ffa6f9a4c72cf204.png"
:src="detele"
/>
<image
class="ml-12 image"
src="https://ide.code.fun/api/image?token=6710a29d1511d900114ac910&name=33bb1d0b853cc38a598105b3dab0d494.png"
:src="update"
/>
</view>
</view>
<view class="mt-10 flex-col items-start">
<text class="font_3">黑龙江省哈尔滨市呼兰区 学院路街道288号哈</text>
<text class="mt-2 font_3">尔华德学院</text>
<text class="font_3">{{ item.address }}</text>
<!-- <text class="mt-2 font_3"></text> -->
</view>
</view>
</view>
<view class="flex-col justify-start items-center section mt-455">
<view class="flex-col justify-start items-center text-wrapper_2"><text class="font text_2">新增地址</text></view>
<view class="flex-col justify-start items-center text-wrapper_2" @click="jump"><text class="font text_2">新增地址</text></view>
</view>
</view>
</template>
<script>
<script setup>
import {ref} from 'vue'
import detele from '@/pages/Shopping-cart/address/img/delete.png';
import update from '@/pages/Shopping-cart/address/img/update.png';
const address = ref([
{
"name" : "张三",
"phone" : "15888610253",
"address" : "黑龙江省哈尔滨市呼兰区学院路街道288号哈尔滨华德学院 //测试换行"
},
{
"name" : "张三",
"phone" : "15888610253",
"address" : "黑龙江省哈尔滨市呼兰区学院路街道288号哈尔滨华德学院 //测试换行"
},
{
"name" : "张三",
"phone" : "15888610253",
"address" : "黑龙江省哈尔滨市呼兰区学院路街道288号哈尔滨华德学院 //测试换行"
},
{
"name" : "张三",
"phone" : "15888610253",
"address" : "黑龙江省哈尔滨市呼兰区学院路街道288号哈尔滨华德学院 //测试换行"
},
{
"name" : "张三",
"phone" : "15888610253",
"address" : "黑龙江省哈尔滨市呼兰区学院路街道288号哈尔滨华德学院 //测试换行"
},
{
"name" : "张三",
"phone" : "15888610253",
"address" : "黑龙江省哈尔滨市呼兰区学院路街道288号哈尔滨华德学院 //测试换行"
},
{
"name" : "张三",
"phone" : "15888610253",
"address" : "黑龙江省哈尔滨市呼兰区学院路街道288号哈尔滨华德学院 //测试换行"
},
{
"name" : "张三",
"phone" : "15888610253",
"address" : "黑龙江省哈尔滨市呼兰区学院路街道288号哈尔滨华德学院 //测试换行"
}
])
const jump =()=> {
uni.navigateTo({
url: '../../../pages/Shopping-cart/newaddress_Info/newaddress_Info'
})
}
</script>
<style lang="scss" scoped>
@ -52,7 +103,8 @@
width: 100%;
overflow-y: auto;
overflow-x: hidden;
height: 100%;
height: 100vh;
// overflow: hidden;
}
.list {
padding: 0 20.99rpx;
@ -92,6 +144,7 @@
font-size: 22.9rpx;
font-family: Open Sans;
line-height: 21.07rpx;
padding-top: 5rpx;
}
.image {
border-radius: 9.54rpx;
@ -105,10 +158,12 @@
color: #818181;
}
.section {
padding: 17.18rpx 0;
// padding: 17.18rpx 0;
background-color: #ffffff;
}
.text-wrapper_2 {
position: fixed;
bottom: 25rpx;
padding: 26.72rpx 0;
background-color: #ffa948;
border-radius: 47.71rpx;

Binary file not shown.

After

Width:  |  Height:  |  Size: 585 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 724 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 895 B

View File

@ -17,7 +17,7 @@
<input class="text-wrapper_3" />
<image
class="image pos"
src="https://ide.code.fun/api/image?token=67129056333411001274117b&name=8e3367aacd1814a70862602117adf69a.png"
:src="dingwei"
/>
</view>
</view>
@ -29,18 +29,26 @@
<text class="font_2">设为默认收货地址</text>
<image
class="image_2"
src="https://ide.code.fun/api/image?token=67129056333411001274117b&name=e203b4dc8e651412f3cf963bb5454732.png"
:src="selected"
/>
</view>
</view>
</view>
<view class="flex-col justify-start items-center section_3 mt-462">
<view class="flex-col justify-start items-center text-wrapper_4"><text class="text_8">保存并使用</text></view>
<view class="flex-col justify-start items-center text-wrapper_4" @click="jump"><text class="text_8">保存并使用</text></view>
</view>
</view>
</template>
<script>
<script setup>
import {ref} from 'vue'
import dingwei from '@/pages/Shopping-cart/newaddress_Info/img/dingwei.png'
import selected from '@/pages/Shopping-cart/newaddress_Info/img/selected.png'
const jump =()=> {
uni.navigateTo({
url: '../../../pages/Shopping-cart/address/address'
})
}
</script>
<style lang="scss" scoped>

View File

@ -9,7 +9,7 @@
/>
</view>
<view class="mt-16 flex-col">
<view class="flex-col list-item" v-for="(item, index) in items" :key="index">
<view class="flex-col list-item" v-for="(item, index) in address" :key="index">
<view class="flex-row justify-between items-center self-stretch">
<view class="flex-row items-center">
<image
@ -41,10 +41,13 @@
</template>
<script setup>
import {ref} from 'vue'
const address = ref([null,null,null])
</script>
<style lang="scss" scoped>
.ml-9 {
margin-left: 16.88rpx;

Binary file not shown.

After

Width:  |  Height:  |  Size: 104 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 551 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 145 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 145 B

View File

@ -0,0 +1,192 @@
<template>
<view class="flex-col page">
<view class="flex-row justify-center items-center">
<image
class="image"
:src="success" />
<text class="text ml-11">支付成功</text>
</view>
<view class="flex-row justify-between group mt-47">
<view class="flex-col justify-start items-center text-wrapper"><text class="font text_2">返回首页</text></view>
<view class="flex-col justify-start items-center text-wrapper_2"><text class="font text_3">查看订单</text></view>
</view>
<view class="flex-col mt-47">
<view class="flex-row justify-center items-center">
<image
class="image_2"
:src="xian" />
<text class="text_4 ml-11">更多精选商品</text>
<image
class="image_2 ml-11"
:src="xian2" />
</view>
<view class="grid mt-19">
<view class="flex-col grid-item" v-for="(item, index) in products" :key="index">
<image
class="shrink-0 image_3"
:src="item.product_img"
/>
<text class="font_2 text_5">{{ item.product_type }}{{ item.product_name }}</text>
<view class="flex-row items-center group_2">
<image
class="image_4"
:src="rmb" />
<text class="font_3">{{ item.product_value }}.00</text>
</view>
</view>
</view>
</view>
</view>
</template>
<script setup>
import {ref} from 'vue'
import success from '@/pages/order/paysuccess/img/success.png'
import xian from '@/pages/order/paysuccess/img/xian.png'
import xian2 from '@/pages/order/paysuccess/img/xian2.png'
import rmb from '@/pages/order/paysuccess/img/rmb.png'
import product from '@/pages/order/paysuccess/img/product.png'
const products = ref([
{
product_img : product,
product_type : "非遗手工艺体验",
product_name : "玉雕-古法制玉体验",
product_value: 99
},
{
product_img : product,
product_type : "非遗手工艺体验",
product_name : "玉雕-古法制玉体验",
product_value: 99
},
{
product_img : product,
product_type : "非遗手工艺体验",
product_name : "玉雕-古法制玉体验",
product_value: 99
},
{
product_img : product,
product_type : "非遗手工艺体验",
product_name : "玉雕-古法制玉体验",
product_value: 99
}
])
</script>
<style lang="scss" scoped>
.mt-47 {
margin-top: 88.13rpx;
}
.ml-11 {
margin-left: 20.63rpx;
}
.mt-19 {
margin-top: 35.63rpx;
}
.page {
padding: 183.75rpx 13.59rpx 41.25rpx 16.41rpx;
background-color: #fffaf0;
width: 100%;
overflow-y: auto;
overflow-x: hidden;
height: 100%;
}
.image {
width: 56.25rpx;
height: 52.5rpx;
}
.text {
color: #000000;
font-size: 45rpx;
font-family: Inter;
line-height: 41.66rpx;
}
.group {
padding: 0 66.09rpx;
}
.text-wrapper {
padding: 23.34rpx 0 23.87rpx;
background-color: #fffef8;
border-radius: 75rpx;
width: 221.25rpx;
height: 78.75rpx;
border: solid 1.88rpx #818181;
}
.font {
font-size: 30rpx;
font-family: Inter;
line-height: 27.71rpx;
color: #fbb612;
}
.text_2 {
line-height: 27.79rpx;
}
.text-wrapper_2 {
padding: 23.42rpx 0 23.89rpx;
background-color: #fffef8;
border-radius: 75rpx;
width: 221.25rpx;
height: 78.75rpx;
border: solid 1.88rpx #818181;
}
.text_3 {
line-height: 27.69rpx;
}
.image_2 {
width: 251.25rpx;
height: 1.88rpx;
}
.text_4 {
color: #323232;
font-size: 30rpx;
font-family: Open Sans;
line-height: 27.71rpx;
}
.grid {
margin-left: 11.72rpx;
margin-right: 14.53rpx;
height: 965.63rpx;
display: grid;
grid-template-rows: repeat(2, minmax(0, 1fr));
grid-template-columns: repeat(2, minmax(0, 1fr));
row-gap: 30.13rpx;
column-gap: 28.26rpx;
}
.grid-item {
padding-bottom: 28.26rpx;
background-color: #ffffff;
border-radius: 18.75rpx;
border: solid 1.88rpx #818181;
}
.image_3 {
border-radius: 18.75rpx 18.75rpx 0rpx 0rpx;
width: 333.75rpx;
height: 322.5rpx;
}
.font_2 {
font-size: 24.38rpx;
font-family: Open Sans;
line-height: 30rpx;
color: #000000;
}
.text_5 {
margin: 8.42rpx 6.69rpx 0 12.06rpx;
}
.group_2 {
margin-top: 17.83rpx;
padding: 0 22.37rpx;
}
.image_4 {
width: 26.25rpx;
height: 26.25rpx;
}
.font_3 {
font-size: 30rpx;
font-family: Times New Roman;
line-height: 20.68rpx;
color: #fbb612;
}
@import url(../../../common/css/global.css);
</style>

Binary file not shown.

After

Width:  |  Height:  |  Size: 657 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 34 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 555 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 624 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 663 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 679 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 482 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 692 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 492 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 356 B

View File

@ -0,0 +1,547 @@
<template>
<view class="flex-col page">
<view class="flex-col justify-start">
<view class="flex-col group">
<view class="flex-col section">
<view class="flex-row justify-between">
<view class="flex-col">
<text class="self-center font text">{{ address.address }}</text>
<view class="flex-row items-center self-stretch">
<image
class="shrink-0 image_2"
:src="dingwei"
/>
<text class="font_2 text_2 ml-7">{{ address.detail }}</text>
</view>
</view>
<view class="flex-row self-start group_2">
<image
class="image_3"
:src="you_cheng"
/>
<text class="font_3 text_3">更换地址</text>
</view>
</view>
<view class="flex-row items-baseline group_3 mt-4">
<text class="font_2 text_4">{{ address.name }}</text>
<text class="font_2 text_5">{{ address.phone }}</text>
</view>
</view>
<view class="flex-col section_2 mt-8" v-for="(item , index) in product_object" :key="index">
<view class="flex-row">
<image
class="image_4"
:src="item.product_img" />
<view class="flex-col self-start group_4 ml-17">
<view class="flex-row self-stretch">
<text class="font">{{ item.product_name }}</text>
<text class="font ml-4">{{ item.product_type }}</text>
</view>
<text class="self-start font_2 text_6 mt-12">已选种类{{ item.selected_style }}</text>
<view class="flex-row self-stretch mt-12" >
<view class="flex-col justify-start items-center text-wrapper">
<text class="font_2 text_7">#{{ item.tag[0] }}</text>
</view>
<view class="flex-col justify-start items-center text-wrapper_2 ml-6">
<text class="font_2 text_8">#{{ item.tag[1] }}</text>
</view>
<view class="flex-col justify-start items-center text-wrapper_3 ml-6">
<text class="font_2 text_9">#{{ item.tag[2] }}</text>
</view>
</view>
</view>
</view>
<view class="flex-row justify-between items-center group_5">
<view class="flex-row items-center group_6">
<text class="text_10">{{ item.product_price }}</text>
<image
class="shrink-0 image_7 image_8"
:src="item.rmb_img"
/>
<text class="font text_11">.00</text>
</view>
<view class="flex-row">
<image
class="image_5"
:src="item.min_img" />
<view class="flex-col justify-start items-center text-wrapper_4 ml-2">
<text class="font text_12">1</text>
</view>
<image
class="image_6 ml-2"
:src="item.add_img"
/>
</view>
</view>
<view class="flex-row justify-end items-center group_7">
<view class="group_8">
<text class="font_2 text_13">购买商品均视为同意</text>
<text class="font_2 text_14">用户须知</text>
</view>
<image
class="shrink-0 image_9 ml-2"
:src="yiwen"
/>
</view>
</view>
<view class="flex-col section_3 mt-8">
<view class="flex-row justify-between items-center group_9">
<view class="flex-row">
<text class="font_4 text_15">商品总价</text>
<text class="font_5 text_16 ml-7">{{ num }}件商品</text>
</view>
<view class="flex-row items-center">
<image
class="shrink-0 image_10"
:src="rmb_36px"
/>
<text class="font_6">138.00</text>
</view>
</view>
<view class="flex-col mt-25">
<view class="flex-row justify-between group_10">
<text class="font_4 text_17">优惠券</text>
<view class="flex-row group_11">
<image
class="image_7 image_11"
:src="you_hei"
/>
<text class="font_5 text_18">{{ youhuijuan_num }}张优惠券可用</text>
</view>
</view>
<view class="flex-col mt-9">
<view class="flex-row justify-between items-center group_12">
<text class="font_4 text_19">{{ manjian }}{{ manjian1 }}优惠</text>
<view class="flex-row items-center">
<image
class="shrink-0 image_10 image_12"
:src="rmb_cheng"
/>
<text class="font_3 text_20"></text>
<text class="font_6 text_21"> {{ manjian1 }}.00 </text>
</view>
</view>
<view class="flex-row justify-between items-center group_13">
<text class="font_4 text_22">合计</text>
<view class="flex-row items-center">
<image
class="shrink-0 image_10"
:src="rmb_36px"
/>
<text class="font_6">{{ sumprice }}.00</text>
</view>
</view>
</view>
</view>
</view>
<view class="flex-col section_1 mt-8">
<text class="self-start font_7">订单备注</text>
<textarea class="text-wrapper_5 mt-11" placeholder="备注建议提前协商(250字以内)"></textarea>
</view>
</view>
</view>
<view class="flex-row justify-between items-center section_4 mt-194" >
<view class="flex-row items-center">
<image
class="shrink-0 image_10 image_13"
:src="rmb_huang"
/>
<text class="font_7 text_24">应付</text>
<text class="text_25">{{ sumprice }}.</text>
<text class="font_6 text_27">00</text>
</view>
<view class="flex-col justify-start items-center text-wrapper_6" @click="jump_pay"><text class="font_4 text_26">微信支付</text></view>
</view>
</view>
</template>
<script setup>
import {ref} from 'vue'
import add from '@/pages/order/product-waitpay/img/add.png';
import dingwei from '@/pages/order/product-waitpay/img/dingwei.png';
import product from '@/pages/order/product-waitpay/img/product.png';
import rmb_32 from '@/pages/order/product-waitpay/img/rmb_32.png';
import rmb_36px from '@/pages/order/product-waitpay/img/rmb_36px.png';
import rmb_cheng from '@/pages/order/product-waitpay/img/rmb_cheng.png';
import rmb_huang from '@/pages/order/product-waitpay/img/rmb_huang.png';
import short from '@/pages/order/product-waitpay/img/short.png';
import yiwen from '@/pages/order/product-waitpay/img/yiwen.png';
import you_cheng from '@/pages/order/product-waitpay/img/you_cheng.png';
import you_hei from '@/pages/order/product-waitpay/img/you_hei.png';
const jump_pay =()=> {
console.log(123)
uni.navigateTo({
url: '../../../pages/order/paysuccess/paysuccess'
})
}
const address = ref(
{
address : "黑龙江省哈尔滨市呼兰区",
detail : "学院路街道288号哈尔滨华德学院",
name : '张三',
phone : '15888610253'
}
)
const product_object = ref([
{
product_name : "非遗绒花",
product_type : "材料包",
selected_style : "紫色",
product_num : 1,
product_price : 138,
product_img : product,
rmb_img : rmb_32,
min_img : short,
add_img : add,
tag : ["绒花","体验包","送亲友"]
}
])
const num = ref(1)
const price = ref(138)
const youhuijuan_num = ref(1)
const manjian = ref(120)
const manjian1 = ref(50)
const sumprice = ref(88)
</script>
<style lang="scss" scoped>
.ml-17 {
margin-left: 31.88rpx;
}
.ml-7 {
margin-left: 13.13rpx;
}
.mt-25 {
margin-top: 46.88rpx;
}
.mt-9 {
margin-top: 16.88rpx;
}
.mt-11 {
margin-top: 20.63rpx;
}
.mt-194 {
margin-top: 363.75rpx;
}
.page {
padding-bottom: 65.63rpx;
background-color: #fffaf0;
width: 100%;
// overflow-y: auto;
overflow-x: hidden;
height: 100vh;
overflow: hidden;
}
.group {
padding: 16.88rpx 15rpx 0 16.88rpx;
}
.section {
padding: 20.81rpx 13.26rpx 15.07rpx 18.62rpx;
background-color: #fffef8;
border-radius: 18.75rpx;
border: solid 1.88rpx #818181;
}
.font {
font-size: 26.25rpx;
font-family: Open Sans;
line-height: 24.43rpx;
color: #323232;
}
.text {
line-height: 24.39rpx;
}
.image_2 {
width: 43.13rpx;
height: 43.13rpx;
}
.font_2 {
font-size: 22.5rpx;
font-family: Open Sans;
line-height: 22.16rpx;
color: #818181;
}
.text_2 {
line-height: 20.83rpx;
}
.group_2 {
margin-right: 3.77rpx;
margin-top: 35.31rpx;
width: 130.05rpx;
}
.image_3 {
margin-left: 105.67rpx;
width: 24.38rpx;
height: 24.38rpx;
}
.font_3 {
font-size: 26.25rpx;
font-family: Open Sans;
line-height: 24.43rpx;
color: #fb8b05;
}
.text_3 {
margin-left: -130.05rpx;
line-height: 24.23rpx;
}
.group_3 {
padding: 0 58.2rpx;
}
.text_4 {
color: #5a5a5a;
line-height: 20.38rpx;
}
.text_5 {
line-height: 16.54rpx;
}
.section_2 {
padding: 20.49rpx 18.64rpx 18.88rpx 22.37rpx;
background-color: #fffef8;
border-radius: 18.75rpx;
border: solid 1.88rpx #818181;
}
.image_4 {
border-radius: 9.38rpx;
width: 146.25rpx;
height: 165rpx;
}
.group_4 {
margin-top: 4.07rpx;
}
.text_6 {
margin-left: 2.1rpx;
line-height: 20.79rpx;
}
.text-wrapper {
padding: 9.22rpx 0 7.56rpx;
background-color: #ffad4a78;
border-radius: 5.63rpx;
width: 84.38rpx;
height: 37.5rpx;
}
.text_7 {
line-height: 20.72rpx;
}
.text-wrapper_2 {
padding: 9.07rpx 0 7.59rpx;
background-color: #ffad4a78;
border-radius: 5.63rpx;
width: 121.88rpx;
height: 37.5rpx;
}
.text_8 {
line-height: 20.83rpx;
}
.text-wrapper_3 {
padding: 9.22rpx 0 7.56rpx;
background-color: #ffad4a78;
border-radius: 5.63rpx;
width: 114.38rpx;
height: 37.5rpx;
}
.text_9 {
line-height: 20.72rpx;
}
.group_5 {
margin-top: 15rpx;
padding: 0 5.87rpx;
}
.group_6 {
margin-left: 172.26rpx;
}
.text_10 {
margin-left: 25.03rpx;
color: #323232;
font-size: 33.75rpx;
font-family: Open Sans;
font-weight: 600;
line-height: 24.88rpx;
}
.image_7 {
width: 30rpx;
height: 30rpx;
}
.image_8 {
margin-left: -90.66rpx;
}
.text_11 {
margin-left: 61.14rpx;
font-weight: 600;
line-height: 19.29rpx;
}
.image_5 {
border-radius: 9.38rpx 0rpx 0rpx 9.38rpx;
width: 45rpx;
height: 45rpx;
}
.text-wrapper_4 {
padding: 12.39rpx 0 13.88rpx;
background-color: #fbf8dc;
width: 58.13rpx;
height: 45rpx;
}
.text_12 {
line-height: 18.73rpx;
}
.image_6 {
border-radius: 0rpx 9.38rpx 9.38rpx 0rpx;
width: 45rpx;
height: 45rpx;
}
.group_7 {
margin-top: 30rpx;
padding: 0 125.87rpx;
}
.group_8 {
line-height: 20.94rpx;
height: 20.94rpx;
}
.text_13 {
line-height: 20.79rpx;
}
.text_14 {
color: #ed4845;
line-height: 20.94rpx;
}
.image_9 {
width: 26.25rpx;
height: 26.25rpx;
}
.section_3 {
padding: 29.87rpx 7.39rpx 3.88rpx 11.12rpx;
background-color: #fffef8;
border-radius: 18.75rpx;
border: solid 1.88rpx #818181;
}
.group_9 {
padding-left: 24.54rpx;
padding-right: 12.52rpx;
}
.font_4 {
font-size: 30rpx;
font-family: Open Sans;
line-height: 27.69rpx;
color: #323232;
}
.text_15 {
line-height: 27.84rpx;
}
.font_5 {
font-size: 30rpx;
font-family: Open Sans;
line-height: 27.69rpx;
color: #818181;
}
.text_16 {
line-height: 27.6rpx;
}
.image_10 {
width: 33.75rpx;
height: 33.75rpx;
}
.font_6 {
font-size: 30rpx;
font-family: Open Sans;
line-height: 22.16rpx;
color: #323232;
}
.group_10 {
padding-left: 23.59rpx;
padding-right: 7.74rpx;
}
.text_17 {
line-height: 27.71rpx;
}
.group_11 {
width: 227.91rpx;
}
.image_11 {
margin-left: 197.91rpx;
}
.text_18 {
margin-left: -227.91rpx;
line-height: 27.81rpx;
}
.group_12 {
padding: 26.25rpx 15.19rpx 28.13rpx 23.74rpx;
border-bottom: solid 1.88rpx #dfdfdf;
}
.text_19 {
line-height: 27.64rpx;
}
.image_12 {
margin-left: 23.44rpx;
}
.text_20 {
margin-left: -57.19rpx;
line-height: 24.17rpx;
}
.text_21 {
margin-left: 27.24rpx;
color: #fb8b05;
}
.group_13 {
padding: 26.25rpx 13.73rpx 28.13rpx 23.49rpx;
}
.text_22 {
line-height: 27.54rpx;
}
.section_1 {
padding: 17.74rpx 21.99rpx 20.76rpx;
background-color: #fffef8;
border-radius: 18.75rpx;
border: solid 1.88rpx #818181;
}
.font_7 {
font-size: 30rpx;
font-family: Open Sans;
line-height: 27.69rpx;
color: #000000;
}
.text-wrapper_5 {
align-self: stretch;
margin-left: 4.13rpx;
margin-right: 4.39rpx;
}
.section_4 {
position: fixed;
bottom: 0;
left: 0;
right: 0;
padding: 16.88rpx 25.46rpx 25rpx;
background-color: #ffffff;
}
.image_13 {
margin-left: 85.16rpx;
}
.text_24 {
margin-left: -118.91rpx;
line-height: 28.05rpx;
}
.text_25 {
margin-left: 24.62rpx;
color: #fbb612;
font-size: 37.5rpx;
font-family: Open Sans;
font-weight: 700;
line-height: 27.62rpx;
}
.text_27 {
color: #fbb612;
font-weight: 700;
line-height: 22.05rpx;
}
.text-wrapper_6 {
padding: 21.56rpx 0 21.99rpx;
background-color: #fbb612;
border-radius: 75rpx;
width: 204.38rpx;
height: 71.25rpx;
}
.text_26 {
color: #ffffff;
}
@import url(../../../common/css/global.css);
</style>

View File

@ -109,7 +109,7 @@
<view class="flex-col justify-start items-center text-wrapper_4">
<text class="font_6 text_20">加入购物车</text>
</view>
<view class="flex-col justify-start items-center text-wrapper_5 ml-9">
<view class="flex-col justify-start items-center text-wrapper_5 ml-9" @click="jump_buy">
<text class="font_6">立即购买</text>
</view>
</view>
@ -133,6 +133,11 @@
const product_name = ref('琉璃发簪新手体验包')
const detail = ref('琉璃发簪便是汉代美人常常佩戴的发饰之一。琉璃发簪不仅美观大方,还有 着深厚的文化底蕴。购买体验包,即可体验古代文化。')
const arr_tag = ref(['发簪','送亲友','体验包','友情'])
const jump_buy =()=> {
uni.navigateTo({
url: '../../../pages/order/product-waitpay/product-waitpay'
})
}
</script>
<style lang="scss" scoped>

View File

@ -12,14 +12,16 @@ if (!Math) {
"./pages/booking/date.js";
"./pages/store-home/ProductDetails/ProductDetails.js";
"./pages/Shopping-cart/Contact/Contact.js";
"./pages/Shopping-cart/address/address.js";
"./pages/order/product-close/product-close.js";
"./pages/Shopping-cart/Phone/Phone.js";
"./pages/order/product-unpay/product-unpay.js";
"./pages/booking/BillingOfFees/BillingOfFees.js";
"./pages/booking/ReservationInstructions/ReservationInstructions.js";
"./pages/booking/respectable/respectable.js";
"./pages/Shopping-cart/ReceivingInformation/ReceivingInformation.js";
"./pages/Shopping-cart/newaddress_Info/newaddress_Info.js";
"./pages/Shopping-cart/address/address.js";
"./pages/order/product-waitpay/product-waitpay.js";
"./pages/order/paysuccess/paysuccess.js";
}
const _sfc_main = {};
function _sfc_render(_ctx, _cache) {

View File

@ -10,14 +10,16 @@
"pages/booking/date",
"pages/store-home/ProductDetails/ProductDetails",
"pages/Shopping-cart/Contact/Contact",
"pages/Shopping-cart/address/address",
"pages/order/product-close/product-close",
"pages/Shopping-cart/Phone/Phone",
"pages/order/product-unpay/product-unpay",
"pages/booking/BillingOfFees/BillingOfFees",
"pages/booking/ReservationInstructions/ReservationInstructions",
"pages/booking/respectable/respectable",
"pages/Shopping-cart/ReceivingInformation/ReceivingInformation"
"pages/Shopping-cart/newaddress_Info/newaddress_Info",
"pages/Shopping-cart/address/address",
"pages/order/product-waitpay/product-waitpay",
"pages/order/paysuccess/paysuccess"
],
"window": {
"navigationBarTextStyle": "black",
@ -26,6 +28,7 @@
"backgroundColor": "#F8F8F8"
},
"tabBar": {
"backgroundColor": "#F7E7C6",
"list": [
{
"pagePath": "pages/home/home",

Binary file not shown.

After

Width:  |  Height:  |  Size: 657 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 585 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 34 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 104 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 551 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 555 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 624 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 663 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 679 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 895 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 482 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 724 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 145 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 145 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 692 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 492 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 356 B

View File

@ -1,5 +1,5 @@
"use strict";
const product = "/assets/product.7900e336.png";
const product$2 = "/assets/product.7900e336.png";
const rili = "/assets/rili.7746043b.png";
const xuanchuan = "/assets/xuanchuan.f0fc207c.png";
const shizi = "/assets/shizi.dd0347ec.png";
@ -23,11 +23,11 @@ const setting_s = "/assets/setting_s.3e5c5149.png";
const tuikuan = "/assets/tuikuan.d34aac5f.png";
const you = "/assets/you.70a370f0.png";
const product_img = "/assets/productimg.a8fe2d32.png";
const add = "/assets/add.c73b1e4b.png";
const add$1 = "/assets/add.c73b1e4b.png";
const choose = "/assets/choose.f501b5d4.png";
const pull = "/assets/pull.902be841.png";
const rmb = "/assets/rmb.6e85dd4a.png";
const short = "/assets/short.2191a0bf.png";
const rmb$1 = "/assets/rmb.6e85dd4a.png";
const short$1 = "/assets/short.2191a0bf.png";
const denglong = "/assets/denglong.a91d13af.png";
const kefu = "/assets/kefu.eef0848c.png";
const show1 = "/assets/show1.6119e6ca.png";
@ -35,7 +35,28 @@ const show2 = "/assets/show2.6ef01c5d.png";
const show3 = "/assets/show3.4b906849.png";
const show4 = "/assets/show4.00c949b6.png";
const zhuye = "/assets/zhuye.8d1ff27e.png";
exports.add = add;
const dingwei$1 = "/assets/dingwei.69908177.png";
const selected = "/assets/selected.c24e4f58.png";
const detele = "/assets/delete.377ec392.png";
const update = "/assets/update.5da500fc.png";
const add = "/assets/add.dace8cf5.png";
const dingwei = "/assets/dingwei.a57a6fb6.png";
const product$1 = "/assets/product.72fb10c1.png";
const rmb_32 = "/assets/rmb_32.6ba70d59.png";
const rmb_36px = "/assets/rmb_36px.929d25f5.png";
const rmb_cheng = "/assets/rmb_cheng.03ace464.png";
const rmb_huang = "/assets/rmb_huang.28b44dfc.png";
const short = "/assets/short.be252386.png";
const yiwen = "/assets/yiwen.9096364a.png";
const you_cheng = "/assets/you_cheng.a0b56a7d.png";
const you_hei = "/assets/you_hei.f7b3f203.png";
const success = "/assets/success.3df77989.png";
const xian = "/assets/xian.51ee54bc.png";
const xian2 = "/assets/xian2.316f0e4c.png";
const rmb = "/assets/rmb.dd886a2c.png";
const product = "/assets/product.d45a003d.png";
exports.add = add$1;
exports.add$1 = add;
exports.add_img = add_img;
exports.address = address;
exports.avator = avator;
@ -43,7 +64,10 @@ exports.choose = choose;
exports.daifahuo = daifahuo;
exports.daishouhuo = daishouhuo;
exports.denglong = denglong;
exports.detele = detele;
exports.dingdan = dingdan;
exports.dingwei = dingwei$1;
exports.dingwei$1 = dingwei;
exports.img1 = img1;
exports.img2 = img2;
exports.img3 = img3;
@ -51,23 +75,39 @@ exports.img4 = img4;
exports.img5 = img5;
exports.kefu = kefu;
exports.lianxiren_s = lianxiren_s;
exports.product = product;
exports.product = product$2;
exports.product$1 = product$1;
exports.product$2 = product;
exports.product_img = product_img$1;
exports.product_img$1 = product_img;
exports.pull = pull;
exports.qianbao = qianbao;
exports.rili = rili;
exports.rmb = rmb;
exports.rmb = rmb$1;
exports.rmb$1 = rmb;
exports.rmb_32 = rmb_32;
exports.rmb_36px = rmb_36px;
exports.rmb_cheng = rmb_cheng;
exports.rmb_huang = rmb_huang;
exports.selected = selected;
exports.setting_s = setting_s;
exports.shizi = shizi;
exports.short = short;
exports.short = short$1;
exports.short$1 = short;
exports.show1 = show1;
exports.show2 = show2;
exports.show3 = show3;
exports.show4 = show4;
exports.sousuokuang = sousuokuang;
exports.success = success;
exports.tuikuan = tuikuan;
exports.update = update;
exports.xian = xian;
exports.xian2 = xian2;
exports.xuanchuan = xuanchuan;
exports.yiwen = yiwen;
exports.you = you$1;
exports.you$1 = you;
exports.you_cheng = you_cheng;
exports.you_hei = you_hei;
exports.zhuye = zhuye;

View File

@ -1,8 +0,0 @@
"use strict";
const common_vendor = require("../../../common/vendor.js");
const _sfc_main = {};
function _sfc_render(_ctx, _cache) {
return {};
}
const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["render", _sfc_render], ["__scopeId", "data-v-d09999e9"]]);
wx.createPage(MiniProgramPage);

View File

@ -1 +0,0 @@
<view class="flex-col page data-v-d09999e9"><view class="flex-col group data-v-d09999e9"><text class="self-start font_2 text data-v-d09999e9">收货信息</text><view class="flex-col self-stretch section mt-15 data-v-d09999e9"><view class="flex-row items-center group_2 data-v-d09999e9"><text class="font_2 data-v-d09999e9">收货人</text><input class="text-wrapper ml-27 data-v-d09999e9" placeholder="请输入姓名"/></view><view class="flex-row items-center group_3 data-v-d09999e9"><text class="font_2 text_3 data-v-d09999e9">手机号码</text><input class="text-wrapper_2 ml-12 data-v-d09999e9" value="{{15888610253}}" placeholder="请输入手机号码"/></view><view class="flex-row items-center group_4 data-v-d09999e9"><text class="font_2 text_5 data-v-d09999e9">所在地区</text><view class="flex-col justify-start flex-1 relative group_5 ml-13 data-v-d09999e9"><input class="text-wrapper_3 data-v-d09999e9"/><image class="image pos data-v-d09999e9" src="https://ide.code.fun/api/image?token=67129056333411001274117b&name=8e3367aacd1814a70862602117adf69a.png"/></view></view><view class="flex-row items-center group_6 data-v-d09999e9"><text class="font_2 text_7 data-v-d09999e9">详细地址</text><textarea class="section_2 ml-12 data-v-d09999e9" value="利民开发区学院路288号哈尔滨华德学院" placeholder="输入详细地址"/></view><view class="flex-row justify-between items-center group_7 data-v-d09999e9"><text class="font_2 data-v-d09999e9">设为默认收货地址</text><image class="image_2 data-v-d09999e9" src="https://ide.code.fun/api/image?token=67129056333411001274117b&name=e203b4dc8e651412f3cf963bb5454732.png"/></view></view></view><view class="flex-col justify-start items-center section_3 mt-462 data-v-d09999e9"><view class="flex-col justify-start items-center text-wrapper_4 data-v-d09999e9"><text class="text_8 data-v-d09999e9">保存并使用</text></view></view></view>

View File

@ -1,14 +1,72 @@
"use strict";
const common_vendor = require("../../../common/vendor.js");
const _sfc_main = {};
function _sfc_render(_ctx, _cache) {
return {
a: common_vendor.f(_ctx.items, (item, index, i0) => {
const common_assets = require("../../../common/assets.js");
const _sfc_main = {
__name: "address",
setup(__props) {
const address = common_vendor.ref([
{
"name": "张三",
"phone": "15888610253",
"address": "黑龙江省哈尔滨市呼兰区学院路街道288号哈尔滨华德学院 //测试换行"
},
{
"name": "张三",
"phone": "15888610253",
"address": "黑龙江省哈尔滨市呼兰区学院路街道288号哈尔滨华德学院 //测试换行"
},
{
"name": "张三",
"phone": "15888610253",
"address": "黑龙江省哈尔滨市呼兰区学院路街道288号哈尔滨华德学院 //测试换行"
},
{
"name": "张三",
"phone": "15888610253",
"address": "黑龙江省哈尔滨市呼兰区学院路街道288号哈尔滨华德学院 //测试换行"
},
{
"name": "张三",
"phone": "15888610253",
"address": "黑龙江省哈尔滨市呼兰区学院路街道288号哈尔滨华德学院 //测试换行"
},
{
"name": "张三",
"phone": "15888610253",
"address": "黑龙江省哈尔滨市呼兰区学院路街道288号哈尔滨华德学院 //测试换行"
},
{
"name": "张三",
"phone": "15888610253",
"address": "黑龙江省哈尔滨市呼兰区学院路街道288号哈尔滨华德学院 //测试换行"
},
{
"name": "张三",
"phone": "15888610253",
"address": "黑龙江省哈尔滨市呼兰区学院路街道288号哈尔滨华德学院 //测试换行"
}
]);
const jump = () => {
common_vendor.index.navigateTo({
url: "../../../pages/Shopping-cart/newaddress_Info/newaddress_Info"
});
};
return (_ctx, _cache) => {
return {
a: index
a: common_vendor.f(address.value, (item, index, i0) => {
return {
a: common_vendor.t(item.name),
b: common_vendor.t(item.phone),
c: common_vendor.t(item.address),
d: index
};
}),
b: common_vendor.unref(common_assets.detele),
c: common_vendor.unref(common_assets.update),
d: common_vendor.o(jump)
};
})
};
}
const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["render", _sfc_render], ["__scopeId", "data-v-fdeeb5e5"]]);
};
}
};
const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["__scopeId", "data-v-fdeeb5e5"]]);
wx.createPage(MiniProgramPage);

View File

@ -1 +1 @@
<view class="flex-col page data-v-fdeeb5e5"><view class="flex-col list data-v-fdeeb5e5"><view wx:for="{{a}}" wx:for-item="item" wx:key="a" class="flex-col list-item mt-9 data-v-fdeeb5e5"><view class="flex-row justify-between items-center data-v-fdeeb5e5"><view class="flex-row items-center data-v-fdeeb5e5"><text class="font data-v-fdeeb5e5">张三</text><text class="font_2 ml-9 data-v-fdeeb5e5">15888610253</text><view class="flex-col justify-start items-center shrink-0 text-wrapper ml-9 data-v-fdeeb5e5"><text class="text data-v-fdeeb5e5">默认</text></view></view><view class="flex-row data-v-fdeeb5e5"><image class="image data-v-fdeeb5e5" src="https://ide.code.fun/api/image?token=6710a29d1511d900114ac910&name=6ff8502391df0676ffa6f9a4c72cf204.png"/><image class="ml-12 image data-v-fdeeb5e5" src="https://ide.code.fun/api/image?token=6710a29d1511d900114ac910&name=33bb1d0b853cc38a598105b3dab0d494.png"/></view></view><view class="mt-10 flex-col items-start data-v-fdeeb5e5"><text class="font_3 data-v-fdeeb5e5">黑龙江省哈尔滨市呼兰区 学院路街道288号哈</text><text class="mt-2 font_3 data-v-fdeeb5e5">尔华德学院</text></view></view></view><view class="flex-col justify-start items-center section mt-455 data-v-fdeeb5e5"><view class="flex-col justify-start items-center text-wrapper_2 data-v-fdeeb5e5"><text class="font text_2 data-v-fdeeb5e5">新增地址</text></view></view></view>
<view class="flex-col page data-v-fdeeb5e5"><view class="flex-col list data-v-fdeeb5e5"><view wx:for="{{a}}" wx:for-item="item" wx:key="d" class="flex-col list-item mt-9 data-v-fdeeb5e5"><view class="flex-row justify-between items-center data-v-fdeeb5e5"><view class="flex-row items-center data-v-fdeeb5e5"><text class="font data-v-fdeeb5e5">{{item.a}}</text><text class="font_2 ml-9 data-v-fdeeb5e5">{{item.b}}</text><view class="flex-col justify-start items-center shrink-0 text-wrapper ml-9 data-v-fdeeb5e5"><text class="text data-v-fdeeb5e5">默认</text></view></view><view class="flex-row data-v-fdeeb5e5"><image class="image data-v-fdeeb5e5" src="{{b}}"/><image class="ml-12 image data-v-fdeeb5e5" src="{{c}}"/></view></view><view class="mt-10 flex-col items-start data-v-fdeeb5e5"><text class="font_3 data-v-fdeeb5e5">{{item.c}}</text></view></view></view><view class="flex-col justify-start items-center section mt-455 data-v-fdeeb5e5"><view class="flex-col justify-start items-center text-wrapper_2 data-v-fdeeb5e5" bindtap="{{d}}"><text class="font text_2 data-v-fdeeb5e5">新增地址</text></view></view></view>

View File

@ -416,7 +416,7 @@ text.data-v-fdeeb5e5 {
width: 100%;
overflow-y: auto;
overflow-x: hidden;
height: 100%;
height: 100vh;
}
.list.data-v-fdeeb5e5 {
padding: 0 20.99rpx;
@ -456,6 +456,7 @@ text.data-v-fdeeb5e5 {
font-size: 22.9rpx;
font-family: Open Sans;
line-height: 21.07rpx;
padding-top: 5rpx;
}
.image.data-v-fdeeb5e5 {
border-radius: 9.54rpx;
@ -469,10 +470,11 @@ text.data-v-fdeeb5e5 {
color: #818181;
}
.section.data-v-fdeeb5e5 {
padding: 17.18rpx 0;
background-color: #ffffff;
}
.text-wrapper_2.data-v-fdeeb5e5 {
position: fixed;
bottom: 25rpx;
padding: 26.72rpx 0;
background-color: #ffa948;
border-radius: 47.71rpx;

View File

@ -0,0 +1,22 @@
"use strict";
const common_vendor = require("../../../common/vendor.js");
const common_assets = require("../../../common/assets.js");
const _sfc_main = {
__name: "newaddress_Info",
setup(__props) {
const jump = () => {
common_vendor.index.navigateTo({
url: "../../../pages/Shopping-cart/address/address"
});
};
return (_ctx, _cache) => {
return {
a: common_vendor.unref(common_assets.dingwei),
b: common_vendor.unref(common_assets.selected),
c: common_vendor.o(jump)
};
};
}
};
const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["__scopeId", "data-v-fb57d854"]]);
wx.createPage(MiniProgramPage);

View File

@ -0,0 +1 @@
<view class="flex-col page data-v-fb57d854"><view class="flex-col group data-v-fb57d854"><text class="self-start font_2 text data-v-fb57d854">收货信息</text><view class="flex-col self-stretch section mt-15 data-v-fb57d854"><view class="flex-row items-center group_2 data-v-fb57d854"><text class="font_2 data-v-fb57d854">收货人</text><input class="text-wrapper ml-27 data-v-fb57d854" placeholder="请输入姓名"/></view><view class="flex-row items-center group_3 data-v-fb57d854"><text class="font_2 text_3 data-v-fb57d854">手机号码</text><input class="text-wrapper_2 ml-12 data-v-fb57d854" value="{{15888610253}}" placeholder="请输入手机号码"/></view><view class="flex-row items-center group_4 data-v-fb57d854"><text class="font_2 text_5 data-v-fb57d854">所在地区</text><view class="flex-col justify-start flex-1 relative group_5 ml-13 data-v-fb57d854"><input class="text-wrapper_3 data-v-fb57d854"/><image class="image pos data-v-fb57d854" src="{{a}}"/></view></view><view class="flex-row items-center group_6 data-v-fb57d854"><text class="font_2 text_7 data-v-fb57d854">详细地址</text><textarea class="section_2 ml-12 data-v-fb57d854" value="利民开发区学院路288号哈尔滨华德学院" placeholder="输入详细地址"/></view><view class="flex-row justify-between items-center group_7 data-v-fb57d854"><text class="font_2 data-v-fb57d854">设为默认收货地址</text><image class="image_2 data-v-fb57d854" src="{{b}}"/></view></view></view><view class="flex-col justify-start items-center section_3 mt-462 data-v-fb57d854"><view class="flex-col justify-start items-center text-wrapper_4 data-v-fb57d854" bindtap="{{c}}"><text class="text_8 data-v-fb57d854">保存并使用</text></view></view></view>

View File

@ -4,416 +4,416 @@
** 请将全局样式拷贝到项目的全局 CSS 文件或者当前页面的顶部 **
** 否则页面将无法正常显示 **
************************************************************/
html.data-v-d09999e9 {
html.data-v-fb57d854 {
font-size: 16px;
}
body.data-v-d09999e9 {
body.data-v-fb57d854 {
margin: 0;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans',
'Droid Sans', 'Helvetica Neue', 'Microsoft Yahei', sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
view.data-v-d09999e9,
image.data-v-d09999e9,
text.data-v-d09999e9 {
view.data-v-fb57d854,
image.data-v-fb57d854,
text.data-v-fb57d854 {
box-sizing: border-box;
flex-shrink: 0;
}
#app.data-v-d09999e9 {
#app.data-v-fb57d854 {
width: 100vw;
height: 100vh;
}
.flex-row.data-v-d09999e9 {
.flex-row.data-v-fb57d854 {
display: flex;
flex-direction: row;
}
.flex-col.data-v-d09999e9 {
.flex-col.data-v-fb57d854 {
display: flex;
flex-direction: column;
}
.justify-start.data-v-d09999e9 {
.justify-start.data-v-fb57d854 {
justify-content: flex-start;
}
.justify-end.data-v-d09999e9 {
.justify-end.data-v-fb57d854 {
justify-content: flex-end;
}
.justify-center.data-v-d09999e9 {
.justify-center.data-v-fb57d854 {
justify-content: center;
}
.justify-between.data-v-d09999e9 {
.justify-between.data-v-fb57d854 {
justify-content: space-between;
}
.justify-around.data-v-d09999e9 {
.justify-around.data-v-fb57d854 {
justify-content: space-around;
}
.justify-evenly.data-v-d09999e9 {
.justify-evenly.data-v-fb57d854 {
justify-content: space-evenly;
}
.items-start.data-v-d09999e9 {
.items-start.data-v-fb57d854 {
align-items: flex-start;
}
.items-end.data-v-d09999e9 {
.items-end.data-v-fb57d854 {
align-items: flex-end;
}
.items-center.data-v-d09999e9 {
.items-center.data-v-fb57d854 {
align-items: center;
}
.items-baseline.data-v-d09999e9 {
.items-baseline.data-v-fb57d854 {
align-items: baseline;
}
.items-stretch.data-v-d09999e9 {
.items-stretch.data-v-fb57d854 {
align-items: stretch;
}
.self-start.data-v-d09999e9 {
.self-start.data-v-fb57d854 {
align-self: flex-start;
}
.self-end.data-v-d09999e9 {
.self-end.data-v-fb57d854 {
align-self: flex-end;
}
.self-center.data-v-d09999e9 {
.self-center.data-v-fb57d854 {
align-self: center;
}
.self-baseline.data-v-d09999e9 {
.self-baseline.data-v-fb57d854 {
align-self: baseline;
}
.self-stretch.data-v-d09999e9 {
.self-stretch.data-v-fb57d854 {
align-self: stretch;
}
.flex-1.data-v-d09999e9 {
.flex-1.data-v-fb57d854 {
flex: 1 1 0%;
}
.flex-auto.data-v-d09999e9 {
.flex-auto.data-v-fb57d854 {
flex: 1 1 auto;
}
.grow.data-v-d09999e9 {
.grow.data-v-fb57d854 {
flex-grow: 1;
}
.grow-0.data-v-d09999e9 {
.grow-0.data-v-fb57d854 {
flex-grow: 0;
}
.shrink.data-v-d09999e9 {
.shrink.data-v-fb57d854 {
flex-shrink: 1;
}
.shrink-0.data-v-d09999e9 {
.shrink-0.data-v-fb57d854 {
flex-shrink: 0;
}
.relative.data-v-d09999e9 {
.relative.data-v-fb57d854 {
position: relative;
}
.ml-2.data-v-d09999e9 {
.ml-2.data-v-fb57d854 {
margin-left: 3.75rpx;
}
.mt-2.data-v-d09999e9 {
.mt-2.data-v-fb57d854 {
margin-top: 3.75rpx;
}
.ml-4.data-v-d09999e9 {
.ml-4.data-v-fb57d854 {
margin-left: 7.5rpx;
}
.mt-4.data-v-d09999e9 {
.mt-4.data-v-fb57d854 {
margin-top: 7.5rpx;
}
.ml-6.data-v-d09999e9 {
.ml-6.data-v-fb57d854 {
margin-left: 11.25rpx;
}
.mt-6.data-v-d09999e9 {
.mt-6.data-v-fb57d854 {
margin-top: 11.25rpx;
}
.ml-8.data-v-d09999e9 {
.ml-8.data-v-fb57d854 {
margin-left: 15rpx;
}
.mt-8.data-v-d09999e9 {
.mt-8.data-v-fb57d854 {
margin-top: 15rpx;
}
.ml-10.data-v-d09999e9 {
.ml-10.data-v-fb57d854 {
margin-left: 18.75rpx;
}
.mt-10.data-v-d09999e9 {
.mt-10.data-v-fb57d854 {
margin-top: 18.75rpx;
}
.ml-12.data-v-d09999e9 {
.ml-12.data-v-fb57d854 {
margin-left: 22.5rpx;
}
.mt-12.data-v-d09999e9 {
.mt-12.data-v-fb57d854 {
margin-top: 22.5rpx;
}
.ml-14.data-v-d09999e9 {
.ml-14.data-v-fb57d854 {
margin-left: 26.25rpx;
}
.mt-14.data-v-d09999e9 {
.mt-14.data-v-fb57d854 {
margin-top: 26.25rpx;
}
.ml-16.data-v-d09999e9 {
.ml-16.data-v-fb57d854 {
margin-left: 30rpx;
}
.mt-16.data-v-d09999e9 {
.mt-16.data-v-fb57d854 {
margin-top: 30rpx;
}
.ml-18.data-v-d09999e9 {
.ml-18.data-v-fb57d854 {
margin-left: 33.75rpx;
}
.mt-18.data-v-d09999e9 {
.mt-18.data-v-fb57d854 {
margin-top: 33.75rpx;
}
.ml-20.data-v-d09999e9 {
.ml-20.data-v-fb57d854 {
margin-left: 37.5rpx;
}
.mt-20.data-v-d09999e9 {
.mt-20.data-v-fb57d854 {
margin-top: 37.5rpx;
}
.ml-22.data-v-d09999e9 {
.ml-22.data-v-fb57d854 {
margin-left: 41.25rpx;
}
.mt-22.data-v-d09999e9 {
.mt-22.data-v-fb57d854 {
margin-top: 41.25rpx;
}
.ml-24.data-v-d09999e9 {
.ml-24.data-v-fb57d854 {
margin-left: 45rpx;
}
.mt-24.data-v-d09999e9 {
.mt-24.data-v-fb57d854 {
margin-top: 45rpx;
}
.ml-26.data-v-d09999e9 {
.ml-26.data-v-fb57d854 {
margin-left: 48.75rpx;
}
.mt-26.data-v-d09999e9 {
.mt-26.data-v-fb57d854 {
margin-top: 48.75rpx;
}
.ml-28.data-v-d09999e9 {
.ml-28.data-v-fb57d854 {
margin-left: 52.5rpx;
}
.mt-28.data-v-d09999e9 {
.mt-28.data-v-fb57d854 {
margin-top: 52.5rpx;
}
.ml-30.data-v-d09999e9 {
.ml-30.data-v-fb57d854 {
margin-left: 56.25rpx;
}
.mt-30.data-v-d09999e9 {
.mt-30.data-v-fb57d854 {
margin-top: 56.25rpx;
}
.ml-32.data-v-d09999e9 {
.ml-32.data-v-fb57d854 {
margin-left: 60rpx;
}
.mt-32.data-v-d09999e9 {
.mt-32.data-v-fb57d854 {
margin-top: 60rpx;
}
.ml-34.data-v-d09999e9 {
.ml-34.data-v-fb57d854 {
margin-left: 63.75rpx;
}
.mt-34.data-v-d09999e9 {
.mt-34.data-v-fb57d854 {
margin-top: 63.75rpx;
}
.ml-36.data-v-d09999e9 {
.ml-36.data-v-fb57d854 {
margin-left: 67.5rpx;
}
.mt-36.data-v-d09999e9 {
.mt-36.data-v-fb57d854 {
margin-top: 67.5rpx;
}
.ml-38.data-v-d09999e9 {
.ml-38.data-v-fb57d854 {
margin-left: 71.25rpx;
}
.mt-38.data-v-d09999e9 {
.mt-38.data-v-fb57d854 {
margin-top: 71.25rpx;
}
.ml-40.data-v-d09999e9 {
.ml-40.data-v-fb57d854 {
margin-left: 75rpx;
}
.mt-40.data-v-d09999e9 {
.mt-40.data-v-fb57d854 {
margin-top: 75rpx;
}
.ml-42.data-v-d09999e9 {
.ml-42.data-v-fb57d854 {
margin-left: 78.75rpx;
}
.mt-42.data-v-d09999e9 {
.mt-42.data-v-fb57d854 {
margin-top: 78.75rpx;
}
.ml-44.data-v-d09999e9 {
.ml-44.data-v-fb57d854 {
margin-left: 82.5rpx;
}
.mt-44.data-v-d09999e9 {
.mt-44.data-v-fb57d854 {
margin-top: 82.5rpx;
}
.ml-46.data-v-d09999e9 {
.ml-46.data-v-fb57d854 {
margin-left: 86.25rpx;
}
.mt-46.data-v-d09999e9 {
.mt-46.data-v-fb57d854 {
margin-top: 86.25rpx;
}
.ml-48.data-v-d09999e9 {
.ml-48.data-v-fb57d854 {
margin-left: 90rpx;
}
.mt-48.data-v-d09999e9 {
.mt-48.data-v-fb57d854 {
margin-top: 90rpx;
}
.ml-50.data-v-d09999e9 {
.ml-50.data-v-fb57d854 {
margin-left: 93.75rpx;
}
.mt-50.data-v-d09999e9 {
.mt-50.data-v-fb57d854 {
margin-top: 93.75rpx;
}
.ml-52.data-v-d09999e9 {
.ml-52.data-v-fb57d854 {
margin-left: 97.5rpx;
}
.mt-52.data-v-d09999e9 {
.mt-52.data-v-fb57d854 {
margin-top: 97.5rpx;
}
.ml-54.data-v-d09999e9 {
.ml-54.data-v-fb57d854 {
margin-left: 101.25rpx;
}
.mt-54.data-v-d09999e9 {
.mt-54.data-v-fb57d854 {
margin-top: 101.25rpx;
}
.ml-56.data-v-d09999e9 {
.ml-56.data-v-fb57d854 {
margin-left: 105rpx;
}
.mt-56.data-v-d09999e9 {
.mt-56.data-v-fb57d854 {
margin-top: 105rpx;
}
.ml-58.data-v-d09999e9 {
.ml-58.data-v-fb57d854 {
margin-left: 108.75rpx;
}
.mt-58.data-v-d09999e9 {
.mt-58.data-v-fb57d854 {
margin-top: 108.75rpx;
}
.ml-60.data-v-d09999e9 {
.ml-60.data-v-fb57d854 {
margin-left: 112.5rpx;
}
.mt-60.data-v-d09999e9 {
.mt-60.data-v-fb57d854 {
margin-top: 112.5rpx;
}
.ml-62.data-v-d09999e9 {
.ml-62.data-v-fb57d854 {
margin-left: 116.25rpx;
}
.mt-62.data-v-d09999e9 {
.mt-62.data-v-fb57d854 {
margin-top: 116.25rpx;
}
.ml-64.data-v-d09999e9 {
.ml-64.data-v-fb57d854 {
margin-left: 120rpx;
}
.mt-64.data-v-d09999e9 {
.mt-64.data-v-fb57d854 {
margin-top: 120rpx;
}
.ml-66.data-v-d09999e9 {
.ml-66.data-v-fb57d854 {
margin-left: 123.75rpx;
}
.mt-66.data-v-d09999e9 {
.mt-66.data-v-fb57d854 {
margin-top: 123.75rpx;
}
.ml-68.data-v-d09999e9 {
.ml-68.data-v-fb57d854 {
margin-left: 127.5rpx;
}
.mt-68.data-v-d09999e9 {
.mt-68.data-v-fb57d854 {
margin-top: 127.5rpx;
}
.ml-70.data-v-d09999e9 {
.ml-70.data-v-fb57d854 {
margin-left: 131.25rpx;
}
.mt-70.data-v-d09999e9 {
.mt-70.data-v-fb57d854 {
margin-top: 131.25rpx;
}
.ml-72.data-v-d09999e9 {
.ml-72.data-v-fb57d854 {
margin-left: 135rpx;
}
.mt-72.data-v-d09999e9 {
.mt-72.data-v-fb57d854 {
margin-top: 135rpx;
}
.ml-74.data-v-d09999e9 {
.ml-74.data-v-fb57d854 {
margin-left: 138.75rpx;
}
.mt-74.data-v-d09999e9 {
.mt-74.data-v-fb57d854 {
margin-top: 138.75rpx;
}
.ml-76.data-v-d09999e9 {
.ml-76.data-v-fb57d854 {
margin-left: 142.5rpx;
}
.mt-76.data-v-d09999e9 {
.mt-76.data-v-fb57d854 {
margin-top: 142.5rpx;
}
.ml-78.data-v-d09999e9 {
.ml-78.data-v-fb57d854 {
margin-left: 146.25rpx;
}
.mt-78.data-v-d09999e9 {
.mt-78.data-v-fb57d854 {
margin-top: 146.25rpx;
}
.ml-80.data-v-d09999e9 {
.ml-80.data-v-fb57d854 {
margin-left: 150rpx;
}
.mt-80.data-v-d09999e9 {
.mt-80.data-v-fb57d854 {
margin-top: 150rpx;
}
.ml-82.data-v-d09999e9 {
.ml-82.data-v-fb57d854 {
margin-left: 153.75rpx;
}
.mt-82.data-v-d09999e9 {
.mt-82.data-v-fb57d854 {
margin-top: 153.75rpx;
}
.ml-84.data-v-d09999e9 {
.ml-84.data-v-fb57d854 {
margin-left: 157.5rpx;
}
.mt-84.data-v-d09999e9 {
.mt-84.data-v-fb57d854 {
margin-top: 157.5rpx;
}
.ml-86.data-v-d09999e9 {
.ml-86.data-v-fb57d854 {
margin-left: 161.25rpx;
}
.mt-86.data-v-d09999e9 {
.mt-86.data-v-fb57d854 {
margin-top: 161.25rpx;
}
.ml-88.data-v-d09999e9 {
.ml-88.data-v-fb57d854 {
margin-left: 165rpx;
}
.mt-88.data-v-d09999e9 {
.mt-88.data-v-fb57d854 {
margin-top: 165rpx;
}
.ml-90.data-v-d09999e9 {
.ml-90.data-v-fb57d854 {
margin-left: 168.75rpx;
}
.mt-90.data-v-d09999e9 {
.mt-90.data-v-fb57d854 {
margin-top: 168.75rpx;
}
.ml-92.data-v-d09999e9 {
.ml-92.data-v-fb57d854 {
margin-left: 172.5rpx;
}
.mt-92.data-v-d09999e9 {
.mt-92.data-v-fb57d854 {
margin-top: 172.5rpx;
}
.ml-94.data-v-d09999e9 {
.ml-94.data-v-fb57d854 {
margin-left: 176.25rpx;
}
.mt-94.data-v-d09999e9 {
.mt-94.data-v-fb57d854 {
margin-top: 176.25rpx;
}
.ml-96.data-v-d09999e9 {
.ml-96.data-v-fb57d854 {
margin-left: 180rpx;
}
.mt-96.data-v-d09999e9 {
.mt-96.data-v-fb57d854 {
margin-top: 180rpx;
}
.ml-98.data-v-d09999e9 {
.ml-98.data-v-fb57d854 {
margin-left: 183.75rpx;
}
.mt-98.data-v-d09999e9 {
.mt-98.data-v-fb57d854 {
margin-top: 183.75rpx;
}
.ml-100.data-v-d09999e9 {
.ml-100.data-v-fb57d854 {
margin-left: 187.5rpx;
}
.mt-100.data-v-d09999e9 {
.mt-100.data-v-fb57d854 {
margin-top: 187.5rpx;
}
.mt-15.data-v-d09999e9 {
.mt-15.data-v-fb57d854 {
margin-top: 28.13rpx;
}
.ml-27.data-v-d09999e9 {
.ml-27.data-v-fb57d854 {
margin-left: 50.63rpx;
}
.ml-13.data-v-d09999e9 {
.ml-13.data-v-fb57d854 {
margin-left: 24.38rpx;
}
.mt-462.data-v-d09999e9 {
.mt-462.data-v-fb57d854 {
margin-top: 866.25rpx;
}
.page.data-v-d09999e9 {
.page.data-v-fb57d854 {
padding-top: 26.44rpx;
background-color: #fffaf0;
width: 100%;
@ -422,19 +422,19 @@ text.data-v-d09999e9 {
height: 100vh;
overflow: hidden;
}
.group.data-v-d09999e9 {
.group.data-v-fb57d854 {
padding: 0 23.4rpx;
}
.font_2.data-v-d09999e9 {
.font_2.data-v-fb57d854 {
font-size: 26.25rpx;
font-family: Open Sans;
line-height: 24.34rpx;
color: #323232;
}
.text.data-v-d09999e9 {
.text.data-v-fb57d854 {
line-height: 24.49rpx;
}
.section.data-v-d09999e9 {
.section.data-v-fb57d854 {
margin-left: 2.85rpx;
margin-right: 14.1rpx;
padding-left: 20.49rpx;
@ -443,69 +443,69 @@ text.data-v-d09999e9 {
border-radius: 9.38rpx;
border: solid 1.88rpx #818181;
}
.group_2.data-v-d09999e9 {
.group_2.data-v-fb57d854 {
padding: 24.24rpx 4.65rpx 12.19rpx;
border-bottom: solid 1.88rpx #efefef;
}
.text-wrapper.data-v-d09999e9 {
.text-wrapper.data-v-fb57d854 {
flex: 1 1 0;
margin-right: 29.1rpx;
}
.group_3.data-v-d09999e9 {
.group_3.data-v-fb57d854 {
padding: 14.06rpx 5.04rpx 12.19rpx;
border-bottom: solid 1.88rpx #efefef;
}
.text_3.data-v-d09999e9 {
.text_3.data-v-fb57d854 {
line-height: 24.17rpx;
}
.text-wrapper_2.data-v-d09999e9 {
.text-wrapper_2.data-v-fb57d854 {
flex: 1 1 0;
margin-right: 28.71rpx;
}
.group_4.data-v-d09999e9 {
.group_4.data-v-fb57d854 {
padding: 12.19rpx 4.29rpx 10.31rpx;
border-bottom: solid 1.88rpx #efefef;
}
.text_5.data-v-d09999e9 {
.text_5.data-v-fb57d854 {
line-height: 24.21rpx;
}
.group_5.data-v-d09999e9 {
.group_5.data-v-fb57d854 {
margin-right: 12.58rpx;
}
.text-wrapper_3.data-v-d09999e9 {
.text-wrapper_3.data-v-fb57d854 {
margin-right: 16.88rpx;
}
.image.data-v-d09999e9 {
.image.data-v-fb57d854 {
width: 48.75rpx;
height: 48.75rpx;
}
.pos.data-v-d09999e9 {
.pos.data-v-fb57d854 {
position: absolute;
right: 0;
bottom: 0;
}
.group_6.data-v-d09999e9 {
.group_6.data-v-fb57d854 {
padding: 14.06rpx 4.8rpx 8.44rpx;
border-bottom: solid 1.88rpx #efefef;
}
.text_7.data-v-d09999e9 {
.text_7.data-v-fb57d854 {
line-height: 24.26rpx;
}
.section_2.data-v-d09999e9 {
.section_2.data-v-fb57d854 {
width: 300rpx;
height: 150rpx;
flex: 1 1 0;
margin-right: 19.57rpx;
}
.group_7.data-v-d09999e9 {
.group_7.data-v-fb57d854 {
padding: 25.31rpx 4.88rpx 32.01rpx;
}
.image_2.data-v-d09999e9 {
.image_2.data-v-fb57d854 {
margin-right: 19.5rpx;
width: 33.75rpx;
height: 33.75rpx;
}
.section_3.data-v-d09999e9 {
.section_3.data-v-fb57d854 {
position: fixed;
left: 0;
right: 0;
@ -514,13 +514,13 @@ text.data-v-d09999e9 {
padding: 16.88rpx 0;
background-color: #fffef8;
}
.text-wrapper_4.data-v-d09999e9 {
.text-wrapper_4.data-v-fb57d854 {
padding: 27.24rpx 0 23.61rpx;
background-color: #ffa948;
border-radius: 46.88rpx;
width: 618.75rpx;
}
.text_8.data-v-d09999e9 {
.text_8.data-v-fb57d854 {
color: #ffffff;
font-size: 30rpx;
font-family: Open Sans;

View File

@ -0,0 +1,53 @@
"use strict";
const common_vendor = require("../../../common/vendor.js");
const common_assets = require("../../../common/assets.js");
const _sfc_main = {
__name: "paysuccess",
setup(__props) {
const products = common_vendor.ref([
{
product_img: common_assets.product$2,
product_type: "非遗手工艺体验",
product_name: "玉雕-古法制玉体验",
product_value: 99
},
{
product_img: common_assets.product$2,
product_type: "非遗手工艺体验",
product_name: "玉雕-古法制玉体验",
product_value: 99
},
{
product_img: common_assets.product$2,
product_type: "非遗手工艺体验",
product_name: "玉雕-古法制玉体验",
product_value: 99
},
{
product_img: common_assets.product$2,
product_type: "非遗手工艺体验",
product_name: "玉雕-古法制玉体验",
product_value: 99
}
]);
return (_ctx, _cache) => {
return {
a: common_vendor.unref(common_assets.success),
b: common_vendor.unref(common_assets.xian),
c: common_vendor.unref(common_assets.xian2),
d: common_vendor.f(products.value, (item, index, i0) => {
return {
a: item.product_img,
b: common_vendor.t(item.product_type),
c: common_vendor.t(item.product_name),
d: common_vendor.t(item.product_value),
e: index
};
}),
e: common_vendor.unref(common_assets.rmb$1)
};
};
}
};
const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["__scopeId", "data-v-0b647166"]]);
wx.createPage(MiniProgramPage);

View File

@ -0,0 +1,4 @@
{
"navigationBarTitleText": "",
"usingComponents": {}
}

View File

@ -0,0 +1 @@
<view class="flex-col page data-v-0b647166"><view class="flex-row justify-center items-center data-v-0b647166"><image class="image data-v-0b647166" src="{{a}}"/><text class="text ml-11 data-v-0b647166">支付成功</text></view><view class="flex-row justify-between group mt-47 data-v-0b647166"><view class="flex-col justify-start items-center text-wrapper data-v-0b647166"><text class="font text_2 data-v-0b647166">返回首页</text></view><view class="flex-col justify-start items-center text-wrapper_2 data-v-0b647166"><text class="font text_3 data-v-0b647166">查看订单</text></view></view><view class="flex-col mt-47 data-v-0b647166"><view class="flex-row justify-center items-center data-v-0b647166"><image class="image_2 data-v-0b647166" src="{{b}}"/><text class="text_4 ml-11 data-v-0b647166">更多精选商品</text><image class="image_2 ml-11 data-v-0b647166" src="{{c}}"/></view><view class="grid mt-19 data-v-0b647166"><view wx:for="{{d}}" wx:for-item="item" wx:key="e" class="flex-col grid-item data-v-0b647166"><image class="shrink-0 image_3 data-v-0b647166" src="{{item.a}}"/><text class="font_2 text_5 data-v-0b647166">【{{item.b}}】{{item.c}}</text><view class="flex-row items-center group_2 data-v-0b647166"><image class="image_4 data-v-0b647166" src="{{e}}"/><text class="font_3 data-v-0b647166">{{item.d}}.00</text></view></view></view></view></view>

View File

@ -0,0 +1,515 @@
/* 水平间距 */
/* 水平间距 */
/************************************************************
** 请将全局样式拷贝到项目的全局 CSS 文件或者当前页面的顶部 **
** 否则页面将无法正常显示 **
************************************************************/
html.data-v-0b647166 {
font-size: 16px;
}
body.data-v-0b647166 {
margin: 0;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans',
'Droid Sans', 'Helvetica Neue', 'Microsoft Yahei', sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
view.data-v-0b647166,
image.data-v-0b647166,
text.data-v-0b647166 {
box-sizing: border-box;
flex-shrink: 0;
}
#app.data-v-0b647166 {
width: 100vw;
height: 100vh;
}
.flex-row.data-v-0b647166 {
display: flex;
flex-direction: row;
}
.flex-col.data-v-0b647166 {
display: flex;
flex-direction: column;
}
.justify-start.data-v-0b647166 {
justify-content: flex-start;
}
.justify-end.data-v-0b647166 {
justify-content: flex-end;
}
.justify-center.data-v-0b647166 {
justify-content: center;
}
.justify-between.data-v-0b647166 {
justify-content: space-between;
}
.justify-around.data-v-0b647166 {
justify-content: space-around;
}
.justify-evenly.data-v-0b647166 {
justify-content: space-evenly;
}
.items-start.data-v-0b647166 {
align-items: flex-start;
}
.items-end.data-v-0b647166 {
align-items: flex-end;
}
.items-center.data-v-0b647166 {
align-items: center;
}
.items-baseline.data-v-0b647166 {
align-items: baseline;
}
.items-stretch.data-v-0b647166 {
align-items: stretch;
}
.self-start.data-v-0b647166 {
align-self: flex-start;
}
.self-end.data-v-0b647166 {
align-self: flex-end;
}
.self-center.data-v-0b647166 {
align-self: center;
}
.self-baseline.data-v-0b647166 {
align-self: baseline;
}
.self-stretch.data-v-0b647166 {
align-self: stretch;
}
.flex-1.data-v-0b647166 {
flex: 1 1 0%;
}
.flex-auto.data-v-0b647166 {
flex: 1 1 auto;
}
.grow.data-v-0b647166 {
flex-grow: 1;
}
.grow-0.data-v-0b647166 {
flex-grow: 0;
}
.shrink.data-v-0b647166 {
flex-shrink: 1;
}
.shrink-0.data-v-0b647166 {
flex-shrink: 0;
}
.relative.data-v-0b647166 {
position: relative;
}
.ml-2.data-v-0b647166 {
margin-left: 3.75rpx;
}
.mt-2.data-v-0b647166 {
margin-top: 3.75rpx;
}
.ml-4.data-v-0b647166 {
margin-left: 7.5rpx;
}
.mt-4.data-v-0b647166 {
margin-top: 7.5rpx;
}
.ml-6.data-v-0b647166 {
margin-left: 11.25rpx;
}
.mt-6.data-v-0b647166 {
margin-top: 11.25rpx;
}
.ml-8.data-v-0b647166 {
margin-left: 15rpx;
}
.mt-8.data-v-0b647166 {
margin-top: 15rpx;
}
.ml-10.data-v-0b647166 {
margin-left: 18.75rpx;
}
.mt-10.data-v-0b647166 {
margin-top: 18.75rpx;
}
.ml-12.data-v-0b647166 {
margin-left: 22.5rpx;
}
.mt-12.data-v-0b647166 {
margin-top: 22.5rpx;
}
.ml-14.data-v-0b647166 {
margin-left: 26.25rpx;
}
.mt-14.data-v-0b647166 {
margin-top: 26.25rpx;
}
.ml-16.data-v-0b647166 {
margin-left: 30rpx;
}
.mt-16.data-v-0b647166 {
margin-top: 30rpx;
}
.ml-18.data-v-0b647166 {
margin-left: 33.75rpx;
}
.mt-18.data-v-0b647166 {
margin-top: 33.75rpx;
}
.ml-20.data-v-0b647166 {
margin-left: 37.5rpx;
}
.mt-20.data-v-0b647166 {
margin-top: 37.5rpx;
}
.ml-22.data-v-0b647166 {
margin-left: 41.25rpx;
}
.mt-22.data-v-0b647166 {
margin-top: 41.25rpx;
}
.ml-24.data-v-0b647166 {
margin-left: 45rpx;
}
.mt-24.data-v-0b647166 {
margin-top: 45rpx;
}
.ml-26.data-v-0b647166 {
margin-left: 48.75rpx;
}
.mt-26.data-v-0b647166 {
margin-top: 48.75rpx;
}
.ml-28.data-v-0b647166 {
margin-left: 52.5rpx;
}
.mt-28.data-v-0b647166 {
margin-top: 52.5rpx;
}
.ml-30.data-v-0b647166 {
margin-left: 56.25rpx;
}
.mt-30.data-v-0b647166 {
margin-top: 56.25rpx;
}
.ml-32.data-v-0b647166 {
margin-left: 60rpx;
}
.mt-32.data-v-0b647166 {
margin-top: 60rpx;
}
.ml-34.data-v-0b647166 {
margin-left: 63.75rpx;
}
.mt-34.data-v-0b647166 {
margin-top: 63.75rpx;
}
.ml-36.data-v-0b647166 {
margin-left: 67.5rpx;
}
.mt-36.data-v-0b647166 {
margin-top: 67.5rpx;
}
.ml-38.data-v-0b647166 {
margin-left: 71.25rpx;
}
.mt-38.data-v-0b647166 {
margin-top: 71.25rpx;
}
.ml-40.data-v-0b647166 {
margin-left: 75rpx;
}
.mt-40.data-v-0b647166 {
margin-top: 75rpx;
}
.ml-42.data-v-0b647166 {
margin-left: 78.75rpx;
}
.mt-42.data-v-0b647166 {
margin-top: 78.75rpx;
}
.ml-44.data-v-0b647166 {
margin-left: 82.5rpx;
}
.mt-44.data-v-0b647166 {
margin-top: 82.5rpx;
}
.ml-46.data-v-0b647166 {
margin-left: 86.25rpx;
}
.mt-46.data-v-0b647166 {
margin-top: 86.25rpx;
}
.ml-48.data-v-0b647166 {
margin-left: 90rpx;
}
.mt-48.data-v-0b647166 {
margin-top: 90rpx;
}
.ml-50.data-v-0b647166 {
margin-left: 93.75rpx;
}
.mt-50.data-v-0b647166 {
margin-top: 93.75rpx;
}
.ml-52.data-v-0b647166 {
margin-left: 97.5rpx;
}
.mt-52.data-v-0b647166 {
margin-top: 97.5rpx;
}
.ml-54.data-v-0b647166 {
margin-left: 101.25rpx;
}
.mt-54.data-v-0b647166 {
margin-top: 101.25rpx;
}
.ml-56.data-v-0b647166 {
margin-left: 105rpx;
}
.mt-56.data-v-0b647166 {
margin-top: 105rpx;
}
.ml-58.data-v-0b647166 {
margin-left: 108.75rpx;
}
.mt-58.data-v-0b647166 {
margin-top: 108.75rpx;
}
.ml-60.data-v-0b647166 {
margin-left: 112.5rpx;
}
.mt-60.data-v-0b647166 {
margin-top: 112.5rpx;
}
.ml-62.data-v-0b647166 {
margin-left: 116.25rpx;
}
.mt-62.data-v-0b647166 {
margin-top: 116.25rpx;
}
.ml-64.data-v-0b647166 {
margin-left: 120rpx;
}
.mt-64.data-v-0b647166 {
margin-top: 120rpx;
}
.ml-66.data-v-0b647166 {
margin-left: 123.75rpx;
}
.mt-66.data-v-0b647166 {
margin-top: 123.75rpx;
}
.ml-68.data-v-0b647166 {
margin-left: 127.5rpx;
}
.mt-68.data-v-0b647166 {
margin-top: 127.5rpx;
}
.ml-70.data-v-0b647166 {
margin-left: 131.25rpx;
}
.mt-70.data-v-0b647166 {
margin-top: 131.25rpx;
}
.ml-72.data-v-0b647166 {
margin-left: 135rpx;
}
.mt-72.data-v-0b647166 {
margin-top: 135rpx;
}
.ml-74.data-v-0b647166 {
margin-left: 138.75rpx;
}
.mt-74.data-v-0b647166 {
margin-top: 138.75rpx;
}
.ml-76.data-v-0b647166 {
margin-left: 142.5rpx;
}
.mt-76.data-v-0b647166 {
margin-top: 142.5rpx;
}
.ml-78.data-v-0b647166 {
margin-left: 146.25rpx;
}
.mt-78.data-v-0b647166 {
margin-top: 146.25rpx;
}
.ml-80.data-v-0b647166 {
margin-left: 150rpx;
}
.mt-80.data-v-0b647166 {
margin-top: 150rpx;
}
.ml-82.data-v-0b647166 {
margin-left: 153.75rpx;
}
.mt-82.data-v-0b647166 {
margin-top: 153.75rpx;
}
.ml-84.data-v-0b647166 {
margin-left: 157.5rpx;
}
.mt-84.data-v-0b647166 {
margin-top: 157.5rpx;
}
.ml-86.data-v-0b647166 {
margin-left: 161.25rpx;
}
.mt-86.data-v-0b647166 {
margin-top: 161.25rpx;
}
.ml-88.data-v-0b647166 {
margin-left: 165rpx;
}
.mt-88.data-v-0b647166 {
margin-top: 165rpx;
}
.ml-90.data-v-0b647166 {
margin-left: 168.75rpx;
}
.mt-90.data-v-0b647166 {
margin-top: 168.75rpx;
}
.ml-92.data-v-0b647166 {
margin-left: 172.5rpx;
}
.mt-92.data-v-0b647166 {
margin-top: 172.5rpx;
}
.ml-94.data-v-0b647166 {
margin-left: 176.25rpx;
}
.mt-94.data-v-0b647166 {
margin-top: 176.25rpx;
}
.ml-96.data-v-0b647166 {
margin-left: 180rpx;
}
.mt-96.data-v-0b647166 {
margin-top: 180rpx;
}
.ml-98.data-v-0b647166 {
margin-left: 183.75rpx;
}
.mt-98.data-v-0b647166 {
margin-top: 183.75rpx;
}
.ml-100.data-v-0b647166 {
margin-left: 187.5rpx;
}
.mt-100.data-v-0b647166 {
margin-top: 187.5rpx;
}
.mt-47.data-v-0b647166 {
margin-top: 88.13rpx;
}
.ml-11.data-v-0b647166 {
margin-left: 20.63rpx;
}
.mt-19.data-v-0b647166 {
margin-top: 35.63rpx;
}
.page.data-v-0b647166 {
padding: 183.75rpx 13.59rpx 41.25rpx 16.41rpx;
background-color: #fffaf0;
width: 100%;
overflow-y: auto;
overflow-x: hidden;
height: 100%;
}
.image.data-v-0b647166 {
width: 56.25rpx;
height: 52.5rpx;
}
.text.data-v-0b647166 {
color: #000000;
font-size: 45rpx;
font-family: Inter;
line-height: 41.66rpx;
}
.group.data-v-0b647166 {
padding: 0 66.09rpx;
}
.text-wrapper.data-v-0b647166 {
padding: 23.34rpx 0 23.87rpx;
background-color: #fffef8;
border-radius: 75rpx;
width: 221.25rpx;
height: 78.75rpx;
border: solid 1.88rpx #818181;
}
.font.data-v-0b647166 {
font-size: 30rpx;
font-family: Inter;
line-height: 27.71rpx;
color: #fbb612;
}
.text_2.data-v-0b647166 {
line-height: 27.79rpx;
}
.text-wrapper_2.data-v-0b647166 {
padding: 23.42rpx 0 23.89rpx;
background-color: #fffef8;
border-radius: 75rpx;
width: 221.25rpx;
height: 78.75rpx;
border: solid 1.88rpx #818181;
}
.text_3.data-v-0b647166 {
line-height: 27.69rpx;
}
.image_2.data-v-0b647166 {
width: 251.25rpx;
height: 1.88rpx;
}
.text_4.data-v-0b647166 {
color: #323232;
font-size: 30rpx;
font-family: Open Sans;
line-height: 27.71rpx;
}
.grid.data-v-0b647166 {
margin-left: 11.72rpx;
margin-right: 14.53rpx;
height: 965.63rpx;
display: grid;
grid-template-rows: repeat(2, minmax(0, 1fr));
grid-template-columns: repeat(2, minmax(0, 1fr));
row-gap: 30.13rpx;
column-gap: 28.26rpx;
}
.grid-item.data-v-0b647166 {
padding-bottom: 28.26rpx;
background-color: #ffffff;
border-radius: 18.75rpx;
border: solid 1.88rpx #818181;
}
.image_3.data-v-0b647166 {
border-radius: 18.75rpx 18.75rpx 0rpx 0rpx;
width: 333.75rpx;
height: 322.5rpx;
}
.font_2.data-v-0b647166 {
font-size: 24.38rpx;
font-family: Open Sans;
line-height: 30rpx;
color: #000000;
}
.text_5.data-v-0b647166 {
margin: 8.42rpx 6.69rpx 0 12.06rpx;
}
.group_2.data-v-0b647166 {
margin-top: 17.83rpx;
padding: 0 22.37rpx;
}
.image_4.data-v-0b647166 {
width: 26.25rpx;
height: 26.25rpx;
}
.font_3.data-v-0b647166 {
font-size: 30rpx;
font-family: Times New Roman;
line-height: 20.68rpx;
color: #fbb612;
}

View File

@ -0,0 +1,84 @@
"use strict";
const common_vendor = require("../../../common/vendor.js");
const common_assets = require("../../../common/assets.js");
const _sfc_main = {
__name: "product-waitpay",
setup(__props) {
const jump_pay = () => {
console.log(123);
common_vendor.index.navigateTo({
url: "../../../pages/order/paysuccess/paysuccess"
});
};
const address = common_vendor.ref(
{
address: "黑龙江省哈尔滨市呼兰区",
detail: "学院路街道288号哈尔滨华德学院",
name: "张三",
phone: "15888610253"
}
);
const product_object = common_vendor.ref([
{
product_name: "非遗绒花",
product_type: "材料包",
selected_style: "紫色",
product_num: 1,
product_price: 138,
product_img: common_assets.product$1,
rmb_img: common_assets.rmb_32,
min_img: common_assets.short$1,
add_img: common_assets.add$1,
tag: ["绒花", "体验包", "送亲友"]
}
]);
const num = common_vendor.ref(1);
common_vendor.ref(138);
const youhuijuan_num = common_vendor.ref(1);
const manjian = common_vendor.ref(120);
const manjian1 = common_vendor.ref(50);
const sumprice = common_vendor.ref(88);
return (_ctx, _cache) => {
return {
a: common_vendor.t(address.value.address),
b: common_vendor.unref(common_assets.dingwei$1),
c: common_vendor.t(address.value.detail),
d: common_vendor.unref(common_assets.you_cheng),
e: common_vendor.t(address.value.name),
f: common_vendor.t(address.value.phone),
g: common_vendor.f(product_object.value, (item, index, i0) => {
return {
a: item.product_img,
b: common_vendor.t(item.product_name),
c: common_vendor.t(item.product_type),
d: common_vendor.t(item.selected_style),
e: common_vendor.t(item.tag[0]),
f: common_vendor.t(item.tag[1]),
g: common_vendor.t(item.tag[2]),
h: common_vendor.t(item.product_price),
i: item.rmb_img,
j: item.min_img,
k: item.add_img,
l: index
};
}),
h: common_vendor.unref(common_assets.yiwen),
i: common_vendor.t(num.value),
j: common_vendor.unref(common_assets.rmb_36px),
k: common_vendor.unref(common_assets.you_hei),
l: common_vendor.t(youhuijuan_num.value),
m: common_vendor.t(manjian.value),
n: common_vendor.t(manjian1.value),
o: common_vendor.unref(common_assets.rmb_cheng),
p: common_vendor.t(manjian1.value),
q: common_vendor.unref(common_assets.rmb_36px),
r: common_vendor.t(sumprice.value),
s: common_vendor.unref(common_assets.rmb_huang),
t: common_vendor.t(sumprice.value),
v: common_vendor.o(jump_pay)
};
};
}
};
const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["__scopeId", "data-v-eda1e8f0"]]);
wx.createPage(MiniProgramPage);

View File

@ -0,0 +1,4 @@
{
"navigationBarTitleText": "",
"usingComponents": {}
}

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,737 @@
/* 水平间距 */
/* 水平间距 */
/************************************************************
** 请将全局样式拷贝到项目的全局 CSS 文件或者当前页面的顶部 **
** 否则页面将无法正常显示 **
************************************************************/
html.data-v-eda1e8f0 {
font-size: 16px;
}
body.data-v-eda1e8f0 {
margin: 0;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans',
'Droid Sans', 'Helvetica Neue', 'Microsoft Yahei', sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
view.data-v-eda1e8f0,
image.data-v-eda1e8f0,
text.data-v-eda1e8f0 {
box-sizing: border-box;
flex-shrink: 0;
}
#app.data-v-eda1e8f0 {
width: 100vw;
height: 100vh;
}
.flex-row.data-v-eda1e8f0 {
display: flex;
flex-direction: row;
}
.flex-col.data-v-eda1e8f0 {
display: flex;
flex-direction: column;
}
.justify-start.data-v-eda1e8f0 {
justify-content: flex-start;
}
.justify-end.data-v-eda1e8f0 {
justify-content: flex-end;
}
.justify-center.data-v-eda1e8f0 {
justify-content: center;
}
.justify-between.data-v-eda1e8f0 {
justify-content: space-between;
}
.justify-around.data-v-eda1e8f0 {
justify-content: space-around;
}
.justify-evenly.data-v-eda1e8f0 {
justify-content: space-evenly;
}
.items-start.data-v-eda1e8f0 {
align-items: flex-start;
}
.items-end.data-v-eda1e8f0 {
align-items: flex-end;
}
.items-center.data-v-eda1e8f0 {
align-items: center;
}
.items-baseline.data-v-eda1e8f0 {
align-items: baseline;
}
.items-stretch.data-v-eda1e8f0 {
align-items: stretch;
}
.self-start.data-v-eda1e8f0 {
align-self: flex-start;
}
.self-end.data-v-eda1e8f0 {
align-self: flex-end;
}
.self-center.data-v-eda1e8f0 {
align-self: center;
}
.self-baseline.data-v-eda1e8f0 {
align-self: baseline;
}
.self-stretch.data-v-eda1e8f0 {
align-self: stretch;
}
.flex-1.data-v-eda1e8f0 {
flex: 1 1 0%;
}
.flex-auto.data-v-eda1e8f0 {
flex: 1 1 auto;
}
.grow.data-v-eda1e8f0 {
flex-grow: 1;
}
.grow-0.data-v-eda1e8f0 {
flex-grow: 0;
}
.shrink.data-v-eda1e8f0 {
flex-shrink: 1;
}
.shrink-0.data-v-eda1e8f0 {
flex-shrink: 0;
}
.relative.data-v-eda1e8f0 {
position: relative;
}
.ml-2.data-v-eda1e8f0 {
margin-left: 3.75rpx;
}
.mt-2.data-v-eda1e8f0 {
margin-top: 3.75rpx;
}
.ml-4.data-v-eda1e8f0 {
margin-left: 7.5rpx;
}
.mt-4.data-v-eda1e8f0 {
margin-top: 7.5rpx;
}
.ml-6.data-v-eda1e8f0 {
margin-left: 11.25rpx;
}
.mt-6.data-v-eda1e8f0 {
margin-top: 11.25rpx;
}
.ml-8.data-v-eda1e8f0 {
margin-left: 15rpx;
}
.mt-8.data-v-eda1e8f0 {
margin-top: 15rpx;
}
.ml-10.data-v-eda1e8f0 {
margin-left: 18.75rpx;
}
.mt-10.data-v-eda1e8f0 {
margin-top: 18.75rpx;
}
.ml-12.data-v-eda1e8f0 {
margin-left: 22.5rpx;
}
.mt-12.data-v-eda1e8f0 {
margin-top: 22.5rpx;
}
.ml-14.data-v-eda1e8f0 {
margin-left: 26.25rpx;
}
.mt-14.data-v-eda1e8f0 {
margin-top: 26.25rpx;
}
.ml-16.data-v-eda1e8f0 {
margin-left: 30rpx;
}
.mt-16.data-v-eda1e8f0 {
margin-top: 30rpx;
}
.ml-18.data-v-eda1e8f0 {
margin-left: 33.75rpx;
}
.mt-18.data-v-eda1e8f0 {
margin-top: 33.75rpx;
}
.ml-20.data-v-eda1e8f0 {
margin-left: 37.5rpx;
}
.mt-20.data-v-eda1e8f0 {
margin-top: 37.5rpx;
}
.ml-22.data-v-eda1e8f0 {
margin-left: 41.25rpx;
}
.mt-22.data-v-eda1e8f0 {
margin-top: 41.25rpx;
}
.ml-24.data-v-eda1e8f0 {
margin-left: 45rpx;
}
.mt-24.data-v-eda1e8f0 {
margin-top: 45rpx;
}
.ml-26.data-v-eda1e8f0 {
margin-left: 48.75rpx;
}
.mt-26.data-v-eda1e8f0 {
margin-top: 48.75rpx;
}
.ml-28.data-v-eda1e8f0 {
margin-left: 52.5rpx;
}
.mt-28.data-v-eda1e8f0 {
margin-top: 52.5rpx;
}
.ml-30.data-v-eda1e8f0 {
margin-left: 56.25rpx;
}
.mt-30.data-v-eda1e8f0 {
margin-top: 56.25rpx;
}
.ml-32.data-v-eda1e8f0 {
margin-left: 60rpx;
}
.mt-32.data-v-eda1e8f0 {
margin-top: 60rpx;
}
.ml-34.data-v-eda1e8f0 {
margin-left: 63.75rpx;
}
.mt-34.data-v-eda1e8f0 {
margin-top: 63.75rpx;
}
.ml-36.data-v-eda1e8f0 {
margin-left: 67.5rpx;
}
.mt-36.data-v-eda1e8f0 {
margin-top: 67.5rpx;
}
.ml-38.data-v-eda1e8f0 {
margin-left: 71.25rpx;
}
.mt-38.data-v-eda1e8f0 {
margin-top: 71.25rpx;
}
.ml-40.data-v-eda1e8f0 {
margin-left: 75rpx;
}
.mt-40.data-v-eda1e8f0 {
margin-top: 75rpx;
}
.ml-42.data-v-eda1e8f0 {
margin-left: 78.75rpx;
}
.mt-42.data-v-eda1e8f0 {
margin-top: 78.75rpx;
}
.ml-44.data-v-eda1e8f0 {
margin-left: 82.5rpx;
}
.mt-44.data-v-eda1e8f0 {
margin-top: 82.5rpx;
}
.ml-46.data-v-eda1e8f0 {
margin-left: 86.25rpx;
}
.mt-46.data-v-eda1e8f0 {
margin-top: 86.25rpx;
}
.ml-48.data-v-eda1e8f0 {
margin-left: 90rpx;
}
.mt-48.data-v-eda1e8f0 {
margin-top: 90rpx;
}
.ml-50.data-v-eda1e8f0 {
margin-left: 93.75rpx;
}
.mt-50.data-v-eda1e8f0 {
margin-top: 93.75rpx;
}
.ml-52.data-v-eda1e8f0 {
margin-left: 97.5rpx;
}
.mt-52.data-v-eda1e8f0 {
margin-top: 97.5rpx;
}
.ml-54.data-v-eda1e8f0 {
margin-left: 101.25rpx;
}
.mt-54.data-v-eda1e8f0 {
margin-top: 101.25rpx;
}
.ml-56.data-v-eda1e8f0 {
margin-left: 105rpx;
}
.mt-56.data-v-eda1e8f0 {
margin-top: 105rpx;
}
.ml-58.data-v-eda1e8f0 {
margin-left: 108.75rpx;
}
.mt-58.data-v-eda1e8f0 {
margin-top: 108.75rpx;
}
.ml-60.data-v-eda1e8f0 {
margin-left: 112.5rpx;
}
.mt-60.data-v-eda1e8f0 {
margin-top: 112.5rpx;
}
.ml-62.data-v-eda1e8f0 {
margin-left: 116.25rpx;
}
.mt-62.data-v-eda1e8f0 {
margin-top: 116.25rpx;
}
.ml-64.data-v-eda1e8f0 {
margin-left: 120rpx;
}
.mt-64.data-v-eda1e8f0 {
margin-top: 120rpx;
}
.ml-66.data-v-eda1e8f0 {
margin-left: 123.75rpx;
}
.mt-66.data-v-eda1e8f0 {
margin-top: 123.75rpx;
}
.ml-68.data-v-eda1e8f0 {
margin-left: 127.5rpx;
}
.mt-68.data-v-eda1e8f0 {
margin-top: 127.5rpx;
}
.ml-70.data-v-eda1e8f0 {
margin-left: 131.25rpx;
}
.mt-70.data-v-eda1e8f0 {
margin-top: 131.25rpx;
}
.ml-72.data-v-eda1e8f0 {
margin-left: 135rpx;
}
.mt-72.data-v-eda1e8f0 {
margin-top: 135rpx;
}
.ml-74.data-v-eda1e8f0 {
margin-left: 138.75rpx;
}
.mt-74.data-v-eda1e8f0 {
margin-top: 138.75rpx;
}
.ml-76.data-v-eda1e8f0 {
margin-left: 142.5rpx;
}
.mt-76.data-v-eda1e8f0 {
margin-top: 142.5rpx;
}
.ml-78.data-v-eda1e8f0 {
margin-left: 146.25rpx;
}
.mt-78.data-v-eda1e8f0 {
margin-top: 146.25rpx;
}
.ml-80.data-v-eda1e8f0 {
margin-left: 150rpx;
}
.mt-80.data-v-eda1e8f0 {
margin-top: 150rpx;
}
.ml-82.data-v-eda1e8f0 {
margin-left: 153.75rpx;
}
.mt-82.data-v-eda1e8f0 {
margin-top: 153.75rpx;
}
.ml-84.data-v-eda1e8f0 {
margin-left: 157.5rpx;
}
.mt-84.data-v-eda1e8f0 {
margin-top: 157.5rpx;
}
.ml-86.data-v-eda1e8f0 {
margin-left: 161.25rpx;
}
.mt-86.data-v-eda1e8f0 {
margin-top: 161.25rpx;
}
.ml-88.data-v-eda1e8f0 {
margin-left: 165rpx;
}
.mt-88.data-v-eda1e8f0 {
margin-top: 165rpx;
}
.ml-90.data-v-eda1e8f0 {
margin-left: 168.75rpx;
}
.mt-90.data-v-eda1e8f0 {
margin-top: 168.75rpx;
}
.ml-92.data-v-eda1e8f0 {
margin-left: 172.5rpx;
}
.mt-92.data-v-eda1e8f0 {
margin-top: 172.5rpx;
}
.ml-94.data-v-eda1e8f0 {
margin-left: 176.25rpx;
}
.mt-94.data-v-eda1e8f0 {
margin-top: 176.25rpx;
}
.ml-96.data-v-eda1e8f0 {
margin-left: 180rpx;
}
.mt-96.data-v-eda1e8f0 {
margin-top: 180rpx;
}
.ml-98.data-v-eda1e8f0 {
margin-left: 183.75rpx;
}
.mt-98.data-v-eda1e8f0 {
margin-top: 183.75rpx;
}
.ml-100.data-v-eda1e8f0 {
margin-left: 187.5rpx;
}
.mt-100.data-v-eda1e8f0 {
margin-top: 187.5rpx;
}
.ml-17.data-v-eda1e8f0 {
margin-left: 31.88rpx;
}
.ml-7.data-v-eda1e8f0 {
margin-left: 13.13rpx;
}
.mt-25.data-v-eda1e8f0 {
margin-top: 46.88rpx;
}
.mt-9.data-v-eda1e8f0 {
margin-top: 16.88rpx;
}
.mt-11.data-v-eda1e8f0 {
margin-top: 20.63rpx;
}
.mt-194.data-v-eda1e8f0 {
margin-top: 363.75rpx;
}
.page.data-v-eda1e8f0 {
padding-bottom: 65.63rpx;
background-color: #fffaf0;
width: 100%;
overflow-x: hidden;
height: 100vh;
overflow: hidden;
}
.group.data-v-eda1e8f0 {
padding: 16.88rpx 15rpx 0 16.88rpx;
}
.section.data-v-eda1e8f0 {
padding: 20.81rpx 13.26rpx 15.07rpx 18.62rpx;
background-color: #fffef8;
border-radius: 18.75rpx;
border: solid 1.88rpx #818181;
}
.font.data-v-eda1e8f0 {
font-size: 26.25rpx;
font-family: Open Sans;
line-height: 24.43rpx;
color: #323232;
}
.text.data-v-eda1e8f0 {
line-height: 24.39rpx;
}
.image_2.data-v-eda1e8f0 {
width: 43.13rpx;
height: 43.13rpx;
}
.font_2.data-v-eda1e8f0 {
font-size: 22.5rpx;
font-family: Open Sans;
line-height: 22.16rpx;
color: #818181;
}
.text_2.data-v-eda1e8f0 {
line-height: 20.83rpx;
}
.group_2.data-v-eda1e8f0 {
margin-right: 3.77rpx;
margin-top: 35.31rpx;
width: 130.05rpx;
}
.image_3.data-v-eda1e8f0 {
margin-left: 105.67rpx;
width: 24.38rpx;
height: 24.38rpx;
}
.font_3.data-v-eda1e8f0 {
font-size: 26.25rpx;
font-family: Open Sans;
line-height: 24.43rpx;
color: #fb8b05;
}
.text_3.data-v-eda1e8f0 {
margin-left: -130.05rpx;
line-height: 24.23rpx;
}
.group_3.data-v-eda1e8f0 {
padding: 0 58.2rpx;
}
.text_4.data-v-eda1e8f0 {
color: #5a5a5a;
line-height: 20.38rpx;
}
.text_5.data-v-eda1e8f0 {
line-height: 16.54rpx;
}
.section_2.data-v-eda1e8f0 {
padding: 20.49rpx 18.64rpx 18.88rpx 22.37rpx;
background-color: #fffef8;
border-radius: 18.75rpx;
border: solid 1.88rpx #818181;
}
.image_4.data-v-eda1e8f0 {
border-radius: 9.38rpx;
width: 146.25rpx;
height: 165rpx;
}
.group_4.data-v-eda1e8f0 {
margin-top: 4.07rpx;
}
.text_6.data-v-eda1e8f0 {
margin-left: 2.1rpx;
line-height: 20.79rpx;
}
.text-wrapper.data-v-eda1e8f0 {
padding: 9.22rpx 0 7.56rpx;
background-color: #ffad4a78;
border-radius: 5.63rpx;
width: 84.38rpx;
height: 37.5rpx;
}
.text_7.data-v-eda1e8f0 {
line-height: 20.72rpx;
}
.text-wrapper_2.data-v-eda1e8f0 {
padding: 9.07rpx 0 7.59rpx;
background-color: #ffad4a78;
border-radius: 5.63rpx;
width: 121.88rpx;
height: 37.5rpx;
}
.text_8.data-v-eda1e8f0 {
line-height: 20.83rpx;
}
.text-wrapper_3.data-v-eda1e8f0 {
padding: 9.22rpx 0 7.56rpx;
background-color: #ffad4a78;
border-radius: 5.63rpx;
width: 114.38rpx;
height: 37.5rpx;
}
.text_9.data-v-eda1e8f0 {
line-height: 20.72rpx;
}
.group_5.data-v-eda1e8f0 {
margin-top: 15rpx;
padding: 0 5.87rpx;
}
.group_6.data-v-eda1e8f0 {
margin-left: 172.26rpx;
}
.text_10.data-v-eda1e8f0 {
margin-left: 25.03rpx;
color: #323232;
font-size: 33.75rpx;
font-family: Open Sans;
font-weight: 600;
line-height: 24.88rpx;
}
.image_7.data-v-eda1e8f0 {
width: 30rpx;
height: 30rpx;
}
.image_8.data-v-eda1e8f0 {
margin-left: -90.66rpx;
}
.text_11.data-v-eda1e8f0 {
margin-left: 61.14rpx;
font-weight: 600;
line-height: 19.29rpx;
}
.image_5.data-v-eda1e8f0 {
border-radius: 9.38rpx 0rpx 0rpx 9.38rpx;
width: 45rpx;
height: 45rpx;
}
.text-wrapper_4.data-v-eda1e8f0 {
padding: 12.39rpx 0 13.88rpx;
background-color: #fbf8dc;
width: 58.13rpx;
height: 45rpx;
}
.text_12.data-v-eda1e8f0 {
line-height: 18.73rpx;
}
.image_6.data-v-eda1e8f0 {
border-radius: 0rpx 9.38rpx 9.38rpx 0rpx;
width: 45rpx;
height: 45rpx;
}
.group_7.data-v-eda1e8f0 {
margin-top: 30rpx;
padding: 0 125.87rpx;
}
.group_8.data-v-eda1e8f0 {
line-height: 20.94rpx;
height: 20.94rpx;
}
.text_13.data-v-eda1e8f0 {
line-height: 20.79rpx;
}
.text_14.data-v-eda1e8f0 {
color: #ed4845;
line-height: 20.94rpx;
}
.image_9.data-v-eda1e8f0 {
width: 26.25rpx;
height: 26.25rpx;
}
.section_3.data-v-eda1e8f0 {
padding: 29.87rpx 7.39rpx 3.88rpx 11.12rpx;
background-color: #fffef8;
border-radius: 18.75rpx;
border: solid 1.88rpx #818181;
}
.group_9.data-v-eda1e8f0 {
padding-left: 24.54rpx;
padding-right: 12.52rpx;
}
.font_4.data-v-eda1e8f0 {
font-size: 30rpx;
font-family: Open Sans;
line-height: 27.69rpx;
color: #323232;
}
.text_15.data-v-eda1e8f0 {
line-height: 27.84rpx;
}
.font_5.data-v-eda1e8f0 {
font-size: 30rpx;
font-family: Open Sans;
line-height: 27.69rpx;
color: #818181;
}
.text_16.data-v-eda1e8f0 {
line-height: 27.6rpx;
}
.image_10.data-v-eda1e8f0 {
width: 33.75rpx;
height: 33.75rpx;
}
.font_6.data-v-eda1e8f0 {
font-size: 30rpx;
font-family: Open Sans;
line-height: 22.16rpx;
color: #323232;
}
.group_10.data-v-eda1e8f0 {
padding-left: 23.59rpx;
padding-right: 7.74rpx;
}
.text_17.data-v-eda1e8f0 {
line-height: 27.71rpx;
}
.group_11.data-v-eda1e8f0 {
width: 227.91rpx;
}
.image_11.data-v-eda1e8f0 {
margin-left: 197.91rpx;
}
.text_18.data-v-eda1e8f0 {
margin-left: -227.91rpx;
line-height: 27.81rpx;
}
.group_12.data-v-eda1e8f0 {
padding: 26.25rpx 15.19rpx 28.13rpx 23.74rpx;
border-bottom: solid 1.88rpx #dfdfdf;
}
.text_19.data-v-eda1e8f0 {
line-height: 27.64rpx;
}
.image_12.data-v-eda1e8f0 {
margin-left: 23.44rpx;
}
.text_20.data-v-eda1e8f0 {
margin-left: -57.19rpx;
line-height: 24.17rpx;
}
.text_21.data-v-eda1e8f0 {
margin-left: 27.24rpx;
color: #fb8b05;
}
.group_13.data-v-eda1e8f0 {
padding: 26.25rpx 13.73rpx 28.13rpx 23.49rpx;
}
.text_22.data-v-eda1e8f0 {
line-height: 27.54rpx;
}
.section_1.data-v-eda1e8f0 {
padding: 17.74rpx 21.99rpx 20.76rpx;
background-color: #fffef8;
border-radius: 18.75rpx;
border: solid 1.88rpx #818181;
}
.font_7.data-v-eda1e8f0 {
font-size: 30rpx;
font-family: Open Sans;
line-height: 27.69rpx;
color: #000000;
}
.text-wrapper_5.data-v-eda1e8f0 {
align-self: stretch;
margin-left: 4.13rpx;
margin-right: 4.39rpx;
}
.section_4.data-v-eda1e8f0 {
position: fixed;
bottom: 0;
left: 0;
right: 0;
padding: 16.88rpx 25.46rpx 25rpx;
background-color: #ffffff;
}
.image_13.data-v-eda1e8f0 {
margin-left: 85.16rpx;
}
.text_24.data-v-eda1e8f0 {
margin-left: -118.91rpx;
line-height: 28.05rpx;
}
.text_25.data-v-eda1e8f0 {
margin-left: 24.62rpx;
color: #fbb612;
font-size: 37.5rpx;
font-family: Open Sans;
font-weight: 700;
line-height: 27.62rpx;
}
.text_27.data-v-eda1e8f0 {
color: #fbb612;
font-weight: 700;
line-height: 22.05rpx;
}
.text-wrapper_6.data-v-eda1e8f0 {
padding: 21.56rpx 0 21.99rpx;
background-color: #fbb612;
border-radius: 75rpx;
width: 204.38rpx;
height: 71.25rpx;
}
.text_26.data-v-eda1e8f0 {
color: #ffffff;
}

View File

@ -8,6 +8,11 @@ const _sfc_main = {
common_vendor.ref("琉璃发簪新手体验包");
const detail = common_vendor.ref("琉璃发簪便是汉代美人常常佩戴的发饰之一。琉璃发簪不仅美观大方,还有 着深厚的文化底蕴。购买体验包,即可体验古代文化。");
const arr_tag = common_vendor.ref(["发簪", "送亲友", "体验包", "友情"]);
const jump_buy = () => {
common_vendor.index.navigateTo({
url: "../../../pages/order/product-waitpay/product-waitpay"
});
};
return (_ctx, _cache) => {
return {
a: common_vendor.unref(common_assets.zhuye),
@ -22,7 +27,8 @@ const _sfc_main = {
j: common_vendor.t(arr_tag.value[1]),
k: common_vendor.t(arr_tag.value[2]),
l: common_vendor.t(arr_tag.value[3]),
m: common_vendor.unref(common_assets.kefu)
m: common_vendor.unref(common_assets.kefu),
n: common_vendor.o(jump_buy)
};
};
}

View File

@ -1 +1 @@
<view class="flex-col page data-v-3361b524"><view class="flex-col data-v-3361b524"><view class="flex-col data-v-3361b524"><view class="flex-col section data-v-3361b524"><view class="flex-row justify-between self-stretch group data-v-3361b524"><text class="font text data-v-3361b524">商品</text><text class="font data-v-3361b524">详情</text><text class="font text_2 data-v-3361b524">推荐</text></view><view class="self-start section_2 data-v-3361b524"></view></view><image class="image data-v-3361b524" src="{{a}}"/></view><view class="flex-row items-center group_2 data-v-3361b524"><view class="flex-col items-center data-v-3361b524"><text class="font_2 data-v-3361b524">图片</text><text class="mt-4 font_2 data-v-3361b524">展示</text></view><view class="ml-2 flex-row justify-between equal-division data-v-3361b524"><image class="equal-division-item data-v-3361b524" src="{{b}}"/><image class="equal-division-item data-v-3361b524" src="{{c}}"/><image class="equal-division-item data-v-3361b524" src="{{d}}"/><image class="equal-division-item data-v-3361b524" src="{{e}}"/><image class="equal-division-item data-v-3361b524" src="{{f}}"/></view></view><view class="flex-col group_3 data-v-3361b524"><view class="flex-col section_3 data-v-3361b524"><view class="self-start group_4 data-v-3361b524"><text class="text_3 text_5 data-v-3361b524">¥</text><text class="text_3 text_4 data-v-3361b524">750</text></view><view class="flex-row justify-between items-center self-stretch group_5 data-v-3361b524"><text class="text_3 text_7 data-v-3361b524">琉璃发簪新手体验包</text><view class="flex-row items-center group_6 data-v-3361b524"><image class="shrink-0 image_2 data-v-3361b524" src="{{g}}"/><text class="ml-4 font_3 text_3 text_6 data-v-3361b524">中秋节限定</text></view></view><view class="self-stretch divider view data-v-3361b524"></view><view class="flex-col self-start group_7 data-v-3361b524"><text class="self-stretch font_4 text_3 data-v-3361b524"> 商品简介:{{h}} </text></view><view class="self-stretch divider view_2 data-v-3361b524"></view><view class="flex-row items-center self-stretch group_8 data-v-3361b524"><text class="font_3 text_3 text_8 data-v-3361b524">商品标签:</text><view class="flex-col justify-start items-center text-wrapper ml-7 data-v-3361b524"><text class="font_5 text_9 data-v-3361b524">#{{i}}</text></view><view class="flex-col justify-start text-wrapper_2 ml-7 data-v-3361b524"><text class="font_5 text_10 data-v-3361b524">#{{j}}</text></view><view class="flex-col justify-start text-wrapper_2 ml-7 data-v-3361b524"><text class="font_5 text_10 text_11 data-v-3361b524">#{{k}}</text></view><view class="flex-col justify-start items-center text-wrapper_3 ml-7 data-v-3361b524"><text class="font_5 data-v-3361b524">#{{l}}</text></view></view></view><view class="mt-12 flex-col section_4 data-v-3361b524"><text class="self-start font text_12 data-v-3361b524">用户须知</text><text class="self-start font_3 text_13 data-v-3361b524">1.发货后不接受退货、不接受7天无理由退货</text><text class="self-start font_3 text_14 data-v-3361b524">2.商品购买后无法自主退款,需联系客服进行退款处理</text><text class="self-stretch font_4 text_15 data-v-3361b524"> 3.定制款商品购买后不接受退货退款,包售后需要录制开箱视频,并且开箱视频需要从拆包装开始 </text><text class="self-start font_3 text_16 data-v-3361b524">4.商品售罄后的款式也可以重新预定,需等待并联系客服</text><text class="self-start font_3 text_17 data-v-3361b524">5.定制商品的具体发货日期根据制作团队制作情况而定</text><text class="self-start font_3 text_18 data-v-3361b524">6.只售后邮寄破损</text></view></view></view><view class="mt-38 flex-col data-v-3361b524"><text class="self-start font text_19 data-v-3361b524">商品详情</text><view class="flex-col justify-start self-stretch section_5 mt-15 data-v-3361b524"><view class="flex-row items-center section_6 data-v-3361b524"><view class="flex-col items-center shrink-0 data-v-3361b524"><image class="image_3 data-v-3361b524" src="{{m}}"/><text class="font_5 mt-3 data-v-3361b524">客服</text></view><view class="ml-34 flex-row flex-1 data-v-3361b524"><view class="flex-col justify-start items-center text-wrapper_4 data-v-3361b524"><text class="font_6 text_20 data-v-3361b524">加入购物车</text></view><view class="flex-col justify-start items-center text-wrapper_5 ml-9 data-v-3361b524"><text class="font_6 data-v-3361b524">立即购买</text></view></view></view></view></view></view>
<view class="flex-col page data-v-3361b524"><view class="flex-col data-v-3361b524"><view class="flex-col data-v-3361b524"><view class="flex-col section data-v-3361b524"><view class="flex-row justify-between self-stretch group data-v-3361b524"><text class="font text data-v-3361b524">商品</text><text class="font data-v-3361b524">详情</text><text class="font text_2 data-v-3361b524">推荐</text></view><view class="self-start section_2 data-v-3361b524"></view></view><image class="image data-v-3361b524" src="{{a}}"/></view><view class="flex-row items-center group_2 data-v-3361b524"><view class="flex-col items-center data-v-3361b524"><text class="font_2 data-v-3361b524">图片</text><text class="mt-4 font_2 data-v-3361b524">展示</text></view><view class="ml-2 flex-row justify-between equal-division data-v-3361b524"><image class="equal-division-item data-v-3361b524" src="{{b}}"/><image class="equal-division-item data-v-3361b524" src="{{c}}"/><image class="equal-division-item data-v-3361b524" src="{{d}}"/><image class="equal-division-item data-v-3361b524" src="{{e}}"/><image class="equal-division-item data-v-3361b524" src="{{f}}"/></view></view><view class="flex-col group_3 data-v-3361b524"><view class="flex-col section_3 data-v-3361b524"><view class="self-start group_4 data-v-3361b524"><text class="text_3 text_5 data-v-3361b524">¥</text><text class="text_3 text_4 data-v-3361b524">750</text></view><view class="flex-row justify-between items-center self-stretch group_5 data-v-3361b524"><text class="text_3 text_7 data-v-3361b524">琉璃发簪新手体验包</text><view class="flex-row items-center group_6 data-v-3361b524"><image class="shrink-0 image_2 data-v-3361b524" src="{{g}}"/><text class="ml-4 font_3 text_3 text_6 data-v-3361b524">中秋节限定</text></view></view><view class="self-stretch divider view data-v-3361b524"></view><view class="flex-col self-start group_7 data-v-3361b524"><text class="self-stretch font_4 text_3 data-v-3361b524"> 商品简介:{{h}} </text></view><view class="self-stretch divider view_2 data-v-3361b524"></view><view class="flex-row items-center self-stretch group_8 data-v-3361b524"><text class="font_3 text_3 text_8 data-v-3361b524">商品标签:</text><view class="flex-col justify-start items-center text-wrapper ml-7 data-v-3361b524"><text class="font_5 text_9 data-v-3361b524">#{{i}}</text></view><view class="flex-col justify-start text-wrapper_2 ml-7 data-v-3361b524"><text class="font_5 text_10 data-v-3361b524">#{{j}}</text></view><view class="flex-col justify-start text-wrapper_2 ml-7 data-v-3361b524"><text class="font_5 text_10 text_11 data-v-3361b524">#{{k}}</text></view><view class="flex-col justify-start items-center text-wrapper_3 ml-7 data-v-3361b524"><text class="font_5 data-v-3361b524">#{{l}}</text></view></view></view><view class="mt-12 flex-col section_4 data-v-3361b524"><text class="self-start font text_12 data-v-3361b524">用户须知</text><text class="self-start font_3 text_13 data-v-3361b524">1.发货后不接受退货、不接受7天无理由退货</text><text class="self-start font_3 text_14 data-v-3361b524">2.商品购买后无法自主退款,需联系客服进行退款处理</text><text class="self-stretch font_4 text_15 data-v-3361b524"> 3.定制款商品购买后不接受退货退款,包售后需要录制开箱视频,并且开箱视频需要从拆包装开始 </text><text class="self-start font_3 text_16 data-v-3361b524">4.商品售罄后的款式也可以重新预定,需等待并联系客服</text><text class="self-start font_3 text_17 data-v-3361b524">5.定制商品的具体发货日期根据制作团队制作情况而定</text><text class="self-start font_3 text_18 data-v-3361b524">6.只售后邮寄破损</text></view></view></view><view class="mt-38 flex-col data-v-3361b524"><text class="self-start font text_19 data-v-3361b524">商品详情</text><view class="flex-col justify-start self-stretch section_5 mt-15 data-v-3361b524"><view class="flex-row items-center section_6 data-v-3361b524"><view class="flex-col items-center shrink-0 data-v-3361b524"><image class="image_3 data-v-3361b524" src="{{m}}"/><text class="font_5 mt-3 data-v-3361b524">客服</text></view><view class="ml-34 flex-row flex-1 data-v-3361b524"><view class="flex-col justify-start items-center text-wrapper_4 data-v-3361b524"><text class="font_6 text_20 data-v-3361b524">加入购物车</text></view><view class="flex-col justify-start items-center text-wrapper_5 ml-9 data-v-3361b524" bindtap="{{n}}"><text class="font_6 data-v-3361b524">立即购买</text></view></view></view></view></view></view>

View File

@ -15,7 +15,8 @@
"ignore": [],
"disablePlugins": [],
"outputPath": ""
}
},
"enhance": true
},
"compileType": "miniprogram",
"libVersion": "3.6.0",