24 lines
702 B
Vue
24 lines
702 B
Vue
<template>
|
|
<view class="jy-continue-pay">
|
|
<!-- 头部 -->
|
|
<JyCommonHead class="bfff" title="继续付款" :isRight="false"></JyCommonHead>
|
|
<!-- 地址 -->
|
|
<JyCommodityAddress class="bfff p25"></JyCommodityAddress>
|
|
<!-- 商品信息 -->
|
|
<JyShopData></JyShopData>
|
|
</view>
|
|
</template>
|
|
<script setup>
|
|
import { ref } from 'vue'
|
|
import JyCommonHead from '@/components/public/jy-common-head'
|
|
// 地址
|
|
import JyCommodityAddress from '@/components/public/jy-commodity-address'
|
|
import JyShopData from './components/jy-shop-data'
|
|
</script>
|
|
<style lang="scss" scoped>
|
|
.jy-continue-pay {
|
|
.jy-common-head {
|
|
background-color: #fff;
|
|
}
|
|
}
|
|
</style> |