You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
148 lines
3.3 KiB
148 lines
3.3 KiB
<template>
|
|
<view class="page">
|
|
<!-- 地址 -->
|
|
<view class="address-data">
|
|
<view class="address-list" @click="onSkip('address')">
|
|
<view class="list">
|
|
<view class="moren">
|
|
默认
|
|
</view>
|
|
<text>张三</text>
|
|
<text style="font-weight: normal;">178****8888</text>
|
|
</view>
|
|
<view class="list">
|
|
<text style="font-weight: normal;">黑龙江哈尔滨市道里区城区</text>
|
|
</view>
|
|
<view class="list">
|
|
<text class="address">爱建路1333号</text>
|
|
</view>
|
|
|
|
|
|
</view>
|
|
|
|
|
|
<!-- 商品 -->
|
|
<view class="goods-data">
|
|
|
|
<view class="goods-list">
|
|
<view class="list">
|
|
<view class="thumb">
|
|
<image :src="'/static/img/goods_thumb_01'+'.png'" mode=""></image>
|
|
</view>
|
|
<view class="item">
|
|
<view class="title">
|
|
<text class="name one-omit">美连诚雪纺连衣裙 2020新款女夏裙子波点气质沙滩裙仙气时尚女装休闲衣服大码女装 白底红点 M</text>
|
|
<text class="attr">颜色:灰色,XL</text>
|
|
</view>
|
|
<view class="price-number">
|
|
<view class="price">
|
|
<text class="min">¥</text>
|
|
<text class="max">299</text>
|
|
<text class="min">.00</text>
|
|
</view>
|
|
<view class="number">
|
|
<text>x 1</text>
|
|
</view>
|
|
</view>
|
|
<!-- <view class="tag">
|
|
<text>支持七天无理由退货</text>
|
|
</view> -->
|
|
</view>
|
|
</view>
|
|
</view>
|
|
|
|
</view>
|
|
|
|
</view>
|
|
|
|
<!-- 订单金额 -->
|
|
<view class="order-price">
|
|
<view class="price-list">
|
|
<view class="list">
|
|
<view class="title">
|
|
<text>备注</text>
|
|
</view>
|
|
<view class="price">
|
|
<text>¥299.00</text>
|
|
<text class="iconfont icon-more"></text>
|
|
</view>
|
|
</view>
|
|
<view class="list">
|
|
<view class="title">
|
|
<text>商品总额</text>
|
|
</view>
|
|
<view class="price">
|
|
<text>-¥19.00</text>
|
|
</view>
|
|
</view>
|
|
|
|
</view>
|
|
</view>
|
|
<!-- 地址提示 -->
|
|
<view class="address-tips" :style="scrollTop >= 100 ? '':'display:none'">
|
|
<text>黑龙江哈尔滨市道里区爱建路1333号</text>
|
|
</view>
|
|
<!-- 底部合计提交 -->
|
|
<view class="footer-submit">
|
|
<view class="price">
|
|
<text class="min">合计:¥299</text>
|
|
|
|
</view>
|
|
<view class="submit" @click="onSubmit">
|
|
<text>提交订单</text>
|
|
</view>
|
|
</view>
|
|
<!-- 发票 -->
|
|
<invoice-info ref="InvoiceInfo"></invoice-info>
|
|
<!-- 优惠券 -->
|
|
<use-coupon ref="UseCoupon"></use-coupon>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
import InvoiceInfo from '../../components/InvoiceInfo/InvoiceInfo.vue';
|
|
import UseCoupon from '../../components/UseCoupon/UseCoupon.vue'
|
|
export default {
|
|
components:{
|
|
// 发票
|
|
InvoiceInfo,
|
|
// 优惠券
|
|
UseCoupon,
|
|
},
|
|
data() {
|
|
return {
|
|
scrollTop: 0,
|
|
};
|
|
},
|
|
onPageScroll(e){
|
|
this.scrollTop = e.scrollTop;
|
|
},
|
|
methods:{
|
|
/**
|
|
* 提交订单
|
|
*/
|
|
onSubmit(){
|
|
uni.redirectTo({
|
|
url: '/pages/CashierDesk/CashierDesk',
|
|
})
|
|
},
|
|
|
|
onSkip(type){
|
|
switch (type){
|
|
case 'address':
|
|
uni.navigateTo({
|
|
url: '/pages/AddressList/AddressList',
|
|
})
|
|
break;
|
|
}
|
|
}
|
|
},
|
|
onLoad(){
|
|
console.log(uni.getStorageSync('qgPro'),"lldd")
|
|
},
|
|
}
|
|
</script>
|
|
|
|
<style scoped lang="scss">
|
|
@import 'ConfirmOrder.scss';
|
|
</style>
|
|
|