firm_order1.wxml
4.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
<!--pages/kind/firm_order1/firm_order1.wxml-->
<view>
<view class='nav bg-white' style='height:{{navH}}px' catchtap='go'>
<view class="rowback">
<!-- <image src="/img/aicon_08@2x.png"></image> -->
<view class="iconfont icon-jiantou-copy"></view>
</view>
<view class='nav-title'>
确认订单
<image src='../../images/back.png' mode='aspectFit' class='back' bindtap='navBack'></image>
</view>
</view>
<scroll-view class='bg-gray overflow' style='height:calc(100vh - {{navH}}px)' scroll-y>
<view class='container'>
<!-- 顶部背景 -->
<view class='header'></view>
<!-- 订单详情 -->
<view class='order_box'>
<!-- 个人信息 -->
<view class='o_top' wx:if="{{address==true}}" bindtap="addplace">
<view class='o_topIn'>
<view class='o_topImg'>
<image src='../../../img/jujia@2x.png'></image>
</view>
<view class='o_text'>
<view class='name shouhuo'>请选择收货地址</view>
</view>
<image class='o_right' src='../../../img/right_1.png'></image>
</view>
<image class='o_top_bottom' src='../../../img/kuaidi@2x.png'></image>
</view>
<view class='o_top' wx:else bindtap="selectplace">
<view class='o_topIn'>
<view class='o_topImg'>
<image src='../../../img/jujia@2x.png'></image>
</view>
<view class='o_text' >
<view class='o_namePhone'>
<view class='name'>{{order_list.name}}</view>
<view class='phone'>{{order_list.mobile}}</view>
</view>
<view class='address'>{{order_list.address}}</view>
</view>
<image class='o_right' src='../../../img/right_1.png'></image>
</view>
<image class='o_top_bottom' src='../../../img/kuaidi@2x.png'></image>
</view>
<!-- 商品信息 -->
<view class='o_body' wx:if="{{shopinfo==true}}">
<view class='o_body_case'>
<!-- 信息头部 -->
<view class='title'>
<view class='title_icon'>
<image src='../../../img/shangjia@2x.png'></image>
</view>
<view class='title_txt'>商品信息</view>
</view>
<!-- 介绍详情 -->
<view class='goods_detail'>
<view class='goods_detail_pic'>
<view class='detail_pic2'>
<image src='{{order_list.shop.thumb}}'></image>
</view>
<view class='detail_pic_txt'>{{days}}天{{hours}}小时{{minutes}}分钟{{seconds}}秒</view>
</view>
<view class='detail_txt'>
<view class='txt1'>
<view class='txt1_name'>{{order_list.shop.name}}</view>
<view class='txt1_price'>¥{{order_list.shop.money_sale}}</view>
</view>
<view class='txt2'>
<progress percent="{{order_list.shop.percent}}" show-info color="#B5DE96" border-radius="8" font-size="24rpx" stroke-width="16rpx" />
<view class='order'>x{{order_list.shop_numb}}</view>
</view>
<view class='txt3'>已拼{{order_list.shop.numb}}份,目标{{order_list.shop.group}}份</view>
</view>
</view>
<!-- 运费 -->
<view class='freight'>
<view class='freight_1'>运费</view>
<view class='freight_2'>¥{{order_list.freight}}</view>
</view>
<!-- 其他信息 -->
<view class='othor'>
<view class='othor1'>
<view class='othor1_name'>订单号</view>
<view class='othor1_con'>{{order_list.goods}}</view>
</view>
<view class='othor1 '>
<view class='othor1_name'>备注信息</view>
<textarea maxlength='30' class='othor1_con othor1_con2' placeholder='请输入备注' placeholder-class="placeholderStyle" bindinput="entertext"></textarea>
<view></view>
</view>
</view>
</view>
</view>
</view>
</view>
<view class='footer' wx:if="{{shopinfo==true}}">
<view class='footer_in'>
<view class='f_txt1'>共{{order_list.shop_numb}}件商品</view>
<view class='f_txt2'>合计:
<!-- <text class='f_txt3'>¥{{order_list.shop_numb*order_list.shop.money_sale}}</text> -->
<text class='f_txt3'>¥{{order_list.money}}</text>
</view>
<view class='f_btn' bindtap='paynow'>立即支付</view>
</view>
</view>
</scroll-view>
</view>