| | |
| | | <template> |
| | | <!-- 确认订单 --> |
| | | <view class="container"> |
| | | <view class="header flex align-center mt-10"> |
| | | <view class="header flex align-center"> |
| | | <image class="header-img" src="../../static/images/head-img.jpg"></image> |
| | | <view class="ml-10"> |
| | | <view class="font-16"> |
| | |
| | | </view> |
| | | </view> |
| | | <view class="content flex flex-v mt-10"> |
| | | <view class="content-row flex justify-between align-center flex-1" v-for="item in 4"> |
| | | <view class="content-row flex justify-between align-center flex-1" v-for="item in list"> |
| | | <view class="flex align-center"> |
| | | <image class="centent-img" mode="aspectFill" src="../../static/images/product.jpg"></image> |
| | | <view class="flex flex-v font-12 ml-10"> |
| | | <text>[项目] 肽妍氨基酸平衡基础洁面乳</text> |
| | | <text class="gray">×1</text> |
| | | <text>{{item.name}}</text> |
| | | <text class="gray">×{{item.num}}</text> |
| | | </view> |
| | | </view> |
| | | <view> |
| | | <text>¥400.00</text> |
| | | <text>¥{{item.price}}</text> |
| | | </view> |
| | | </view> |
| | | <view class="content-row flex justify-between"> |
| | |
| | | <script> |
| | | export default{ |
| | | data(){ |
| | | return{} |
| | | return{ |
| | | list: [] |
| | | } |
| | | }, |
| | | onLoad(options) { |
| | | this.list = JSON.parse(decodeURIComponent(options.list)) |
| | | }, |
| | | methods:{ |
| | | } |