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.
|
|
<template> <view> <view class="lf-bg-white lf-p-t-30 lf-p-b-30 lf-p-l-32 lf-p-r-32"> <view class="lf-row-between"> <image src="../../static/logo.png" mode="aspectFill" style="width: 240rpx; height: 240rpx;border-radius: 20rpx;"></image> <view class="flex-sub padding-left-sm"> <view class="bref-box lf-font-32 lf-color-333 lf-line-2" style="height: 88rpx;line-height: 44rpx;"> 南澳站·潮玩旅游胜地 身处亚热带风情/玩转南澳 </view> <view class="flex lf-m-t-25 align-center text-center"> <text class="block lf-color-gray lf-font-24" style="line-height: 40rpx;">数量</text> <text class="lf-m-l-10 lf-color-gray lf-font-24">x 1</text> </view> <view class="flex align-center text-center lf-m-t-25"> <lf-price :price="599.00" /> <view class="lf-m-l-20 lf-line-through lf-color-gray"> 599.00 </view> </view> </view> </view> </view> <self-line/> <view class="bg-white"> <view class="cu-bar padding-lr"> <text class="lf-color-555 lf-font-28">优惠</text> <text class="lf-color-price lf-font-28">活动优惠-50元</text> </view> </view> <self-line/> <view class="bg-white"> <view class="cu-bar padding-lr solid-bottom"> <text class="lf-color-555 lf-font-28">联系人</text> <input type="text" class="lf-color-999 lf-font-28 lf-text-right" placeholder="请输入联系人" /> </view> <view class="cu-bar padding-lr"> <text class="lf-color-555 lf-font-28">联系方式</text> <input type="text" class="lf-color-999 lf-font-28 lf-text-right" placeholder="请输入联系电话" /> </view> </view> <self-line/> <view class="bg-white"> <view class="lf-p-t-30 lf-p-l-32 lf-p-b-36"> <view class="lf-font-28 lf-color-555">退款说明</view> </view> <view class="lf-p-r-32 lf-p-l-32"> <button class="cu-btn bg-white margin-self border-green" @tap="$url('/pages/order/order-details?order_id='+order_id,{type: 'launch'})"> <u-icon name="weixin-fill" class="text-green lf-font-44 lf-m-r-23"></u-icon> <text class="lf-font-32 text-green">微信支付</text> <u-icon name="checkmark-circle" class="lf-font-44" style="position: absolute;right: 22rpx;"></u-icon> </button> </view> <view class="lf-p-r-32 lf-p-l-32 lf-m-t-30"> <button class="cu-btn bg-white margin-self border" @tap="$url('/pages/order/order-details?order_id='+order_id,{type: 'launch'})"> <text class="lf-font-32 lf-color-333">线下支付</text> </button> </view> </view> <view class="btn-bottom solid-top1"> <view class="padding-lr lf-p-t-10 lf-p-b-10 bg-white flex justify-between align-center shadow"> <view class="flex align-center"> <text class="lf-font-24 lf-font-555">应付款:</text> <lf-price :price="549.00" /> </view> <button class="btn" @tap="submit"> <text class="lf-font-32 text-white" v-if="type == 1">立即付款</text> <text class="lf-font-32 text-white" v-else>下单付款</text> </button> </view> </view> </view></template>
<script></script>
<style> .btn{ margin: 0; padding: 0; width: 212rpx; height: 82rpx; background-color: #1998FE; color: #FFFFFF; line-height: 80rpx; font-size: 32rpx; border-radius: 41rpx; } .bref-box { text-overflow: -o-ellipsis-lastline; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }</style>
|