yuminge-app/yun-min-program-plugin-master/packageH/installationSever/installationSeverWrite/installationSeverWrite.wxml

34 lines
1007 B
Plaintext
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!--packageH/installationSever/installationSeverWrite/installationSeverWrite.wxml-->
<block wx:if="{{status==1}}">
<view class="installShop">
<view class="shopTitle">
<view>订单号:{{detailInfo.order_sn}}</view>
<view style="color: #f15354">{{detailInfo.state_name}}</view>
</view>
<view class="shopList" wx:for="{{detailInfo.goods_list}}" wx:key="index">
<view class="shoplis">
<view class="imgbox">
<image src="{{item.thumb}}"></image>
</view>
<view class="shoptxt">{{item.title}}</view>
<view class="total">数量x{{item.total}}</view>
</view>
</view>
</view>
<!-- 按钮 -->
<view style="width:100%;height:6rem;"></view>
<view class="posBtn set-pc-styleLeft">
<view class="btn" bindtap="sendBtn">确定核销</view>
</view>
</block>
<view class="success" wx:if="{{status==2}}">
<icon class="icon-box-img" type="success" size="40" color="#f15354"></icon>
<text>核销成功</text>
</view>