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.
335 lines
20 KiB
335 lines
20 KiB
<!--pages/morder/detail/index.wxml-->
|
|
<wxs module="order" src="../../morder/order.wxs"></wxs>
|
|
<wxs module="formate" src="../../../pages/formate.wxs"></wxs>
|
|
<cu-custom bgColor="bg-white" isBack="{{true}}">
|
|
<view slot="content">订单详情</view>
|
|
</cu-custom>
|
|
|
|
<view wx:if="{{orderInfo}}">
|
|
<view class="flex flex-justify bg-white" style="width:100%;height:80rpx;padding: 0rpx 24rpx" wx:if="{{type == 0}}">
|
|
<view bindtap="toShopInfo">
|
|
<text class="cuIcon-shop text-blue" style="width:32rpx;height:32rpx"></text>
|
|
<text style="width:32rpx;height:32rpx;margin-left: 8rpx">{{orderInfo.storeName}}</text>
|
|
</view>
|
|
<wux-button outline size="tag" bind:click="cancelOrder" wx:if="{{order.cancelOrder(type, orderInfo.status)}}">取消订单</wux-button>
|
|
</view>
|
|
<view class="flex flex-justify bg-white" style="width:100%;height:80rpx;padding: 0rpx 24rpx" wx:if="{{type == 1}}">
|
|
<view>
|
|
<text class="cuIcon-people text-blue" style="width:32rpx;height:32rpx"></text>
|
|
<text style="width:32rpx;height:32rpx;margin-left: 8rpx">{{orderInfo.orderPlacerName}}</text>
|
|
<text style="width:32rpx;height:32rpx;margin-left: 8rpx">{{orderInfo.phone}}</text>
|
|
</view>
|
|
</view>
|
|
<wux-divider show-text="{{ false }}" dashed></wux-divider>
|
|
<view class="flex flex-justify bg-white" style="width:100%;padding: 24rpx 24rpx 0rpx 24rpx">
|
|
<view class="page-name" style="font-size:14px">单号:{{orderInfo.orderId}}</view>
|
|
<view class="page-name" style="font-size:14px">{{order.orderStatus(orderInfo.status)}}</view>
|
|
</view>
|
|
<view class="flex bg-white" style="width:100%;padding: 24rpx">
|
|
<wux-image width="{{90}}" height="{{90}}" shape="rounded" src="{{orderInfo.coverImgUrl}}" mode="aspectFill">
|
|
<image class="image-load" slot="loading" src="/assets/image/def_image.png"></image>
|
|
</wux-image>
|
|
<view style="flex:1;padding-left:20rpx;padding-top:8rpx;height:80px">
|
|
<view class="flex flex-justify">
|
|
<view class="page-name">{{orderInfo.secondCategoryName}}</view>
|
|
</view>
|
|
<view class="page-outline" style="height:112rpx">{{orderInfo.description}}</view>
|
|
</view>
|
|
</view>
|
|
<view wx:if="{{orderInfo.status == 2 || orderInfo.status == 5}}">
|
|
<wux-divider show-text="{{ false }}"></wux-divider>
|
|
<wux-cell-group>
|
|
<wux-cell title="千鸟物流" is-link url="/pages/html/logistics/index">
|
|
<view slot="header" class="cuIcon-deliver text-blue" style="width:32rpx;height:32rpx;margin-right:12rpx"></view>
|
|
</wux-cell>
|
|
</wux-cell-group>
|
|
</view>
|
|
<!-- 诚意金 -->
|
|
<view class="bg-white margin-top" wx:if="{{orderInfo.status == 1 || orderInfo.status == 2 || orderInfo.status == 9}}">
|
|
<view class="flex flex-justify" style="padding:24rpx">
|
|
<view class="text-sg">单价:{{formate.formatePrice2(orderInfo.unitPrice, kg)}}</view>
|
|
<view class="text-sg">下单重量:{{order.formateWeight(orderInfo.quantity, kg)}}</view>
|
|
</view>
|
|
<wux-divider show-text="{{ false }}"></wux-divider>
|
|
<view class="text-sg" style="padding:24rpx">订单金额:{{formate.formateAmount(orderInfo.totalOfferPrice)}}元</view>
|
|
<wux-divider show-text="{{ false }}"></wux-divider>
|
|
<view class="text-sg" style="padding:24rpx">{{orderInfo.status == 1? '待' : '已'}}付订单诚意金:{{formate.formateAmount(orderInfo.imprestAmount)}}元</view>
|
|
<view wx:if="{{orderInfo.status > 1}}">
|
|
<wux-divider show-text="{{ false }}"></wux-divider>
|
|
<view class="text-sg" style="padding:24rpx">支付方式:{{orderInfo.isPayOffline ? '线下支付' : '线上支付'}}</view>
|
|
</view>
|
|
</view>
|
|
<!-- 资料上传 -->
|
|
<view class="bg-white margin-top" wx:if="{{type == 1 && orderInfo.status == 2}}">
|
|
<view class="cu-bar bg-white" style="min-height: 80rpx">
|
|
<view class="action text-bold" style="color:#333333">过磅信息</view>
|
|
</view>
|
|
<view class="flex">
|
|
<view class="flex flex-center" style="flex:1;padding: 24rpx">
|
|
<view class="text-sg" style="min-width:160rpx">毛重({{kg ? 'KG' : '吨'}}):</view>
|
|
<input id="grossWeight" maxlength="8" type="digit" style="text-align: start" placeholder-style="color:#aaa;" value="{{orderPoundBO.grossWeight}}" placeholder="请输入毛重" bindinput="bindInput" bindblur="mountWeight" />
|
|
</view>
|
|
<view class="flex flex-center" style="flex:1;padding: 24rpx">
|
|
<view class="text-sg" style="min-width:160rpx">皮重({{kg ? 'KG' : '吨'}}):</view>
|
|
<input id="tareWeight" maxlength="8" type="digit" style="text-align: start" placeholder-style="color:#aaa;" value="{{orderPoundBO.tareWeight}}" placeholder="请输入皮重" bindinput="bindInput" bindblur="mountWeight" />
|
|
</view>
|
|
</view>
|
|
<wux-divider show-text="{{ false }}"></wux-divider>
|
|
<view class="cu-bar bg-white" style="min-height: 80rpx">
|
|
<view class="action text-bold" style="color:#333333">上传视频或图片</view>
|
|
</view>
|
|
<view class="cu-form-group">
|
|
<view class="flex flex-justify" style="width:100%;padding-bottom:30rpx">
|
|
<view wx:for="{{imgList}}" wx:key="index">
|
|
<view wx:if="{{item.status == 0}}">
|
|
<view class="image-reader-item" style="height:{{vidth}}rpx" bindtap="chooseImage" data-index="{{index}}">
|
|
<text class="cuIcon-cameraadd md-icon" style="font-size:50rpx"></text>
|
|
</view>
|
|
<view class="flex flex-center" style="width:{{vidth}}rpx;height:32rpx;margin-top:4rpx">
|
|
<text style="color:red;font-size:12px;padding-top:16rpx" wx:if="{{item.must}}">*</text>
|
|
<text class="md-hint">{{item.text}}</text>
|
|
</view>
|
|
</view>
|
|
<view wx:else>
|
|
<view wx:if="{{item.video}}" class="image-reader-item" style="height:{{vidth}}rpx" bindtap="videoTap">
|
|
<video src="{{item.path}}" style="width:{{vidth}}rpx;height:{{vidth}}rpx;border-radius:8rpx" show-center-play-btn="{{false}}" controls="{{false}}" />
|
|
<view class="delete" catchtap="deleteImg" data-index="{{index}}">
|
|
<text class="cuIcon-close {{item.status===-1?'text-red':'text-white'}}" style="font-size:12px"></text>
|
|
</view>
|
|
</view>
|
|
<view wx:else class="image-reader-item" style="height:{{vidth}}rpx" bindtap="viewImage" data-url="{{item.path}}">
|
|
<image src="{{item.cover || item.path}}" style="width:{{vidth}}rpx;height:{{vidth}}rpx;border-radius:8rpx" mode="aspectFill"></image>
|
|
<view class="delete" catchtap="deleteImg" data-index="{{index}}">
|
|
<text class="cuIcon-close {{item.status===-1?'text-red':'text-white'}}" style="font-size:12px"></text>
|
|
</view>
|
|
<view class="md-load load-spinner text-white" wx:if="{{item.status == 1}}" />
|
|
</view>
|
|
<view class="flex flex-center" style="width:{{vidth}}rpx;height:32rpx;margin-top:4rpx">
|
|
<text style="color:red;font-size:12px;padding-top:16rpx" wx:if="{{item.must}}">*</text>
|
|
<text class="md-hint">{{item.text}}</text>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<wux-divider show-text="{{ false }}"></wux-divider>
|
|
<view class="flex flex-justify" style="padding: 24rpx">
|
|
<view class="text-sg">单价:{{formate.formatePrice2(orderInfo.unitPrice, kg)}}</view>
|
|
<view class="text-sg text-blue" bindtap="editPrice">修改单价</view>
|
|
</view>
|
|
<wux-divider show-text="{{ false }}"></wux-divider>
|
|
<view class="flex flex-justify" style="padding: 24rpx">
|
|
<view class="text-sg">净重:{{orderPoundBO.netWeight}}{{kg ? 'KG' : '吨'}}</view>
|
|
<view class="text-sg">订单金额:{{formate.formateAmount(amount)}}元</view>
|
|
</view>
|
|
<wux-divider show-text="{{ false }}"></wux-divider>
|
|
<view class="text-sg" style="padding: 24rpx">已付订单诚意金:{{formate.formateAmount(orderInfo.imprestAmount)}}元</view>
|
|
<wux-divider show-text="{{ false }}"></wux-divider>
|
|
<view class="text-sg" style="padding: 24rpx">还需要支付尾款:{{formate.formateAmount(payment)}}元</view>
|
|
<wux-divider show-text="{{ false }}"></wux-divider>
|
|
<view class="text-sg" style="padding:24rpx">支付方式:{{orderInfo.isPayOffline ? '线下支付' : '线上支付'}}</view>
|
|
</view>
|
|
<!-- 磅单信息 -->
|
|
<view class="bg-white margin-top" wx:if="{{orderPoundBO && orderPoundBO.grossWeight && orderInfo.status != 2}}">
|
|
<view class="cu-bar bg-white" style="min-height: 80rpx">
|
|
<view class="action text-bold" style="color:#333333">过磅信息</view>
|
|
</view>
|
|
<wux-divider show-text="{{ false }}"></wux-divider>
|
|
<view class="flex">
|
|
<view class="flex flex-center" style="flex:1;padding: 24rpx">
|
|
<view class="text-sg" style="min-width:150rpx">毛重:</view>
|
|
<input disabled="{{true}}" style="text-align: start" placeholder-style="color:#aaa" value="{{orderPoundBO.grossWeight + (kg ? 'KG' : '吨')}}" />
|
|
</view>
|
|
<view class="flex flex-center" style="flex:1;padding: 24rpx">
|
|
<view class="text-sg" style="min-width:150rpx">皮重:</view>
|
|
<input disabled="{{true}}" style="text-align: start" placeholder-style="color:#aaa" value="{{orderPoundBO.tareWeight + (kg ? 'KG' : '吨')}}" />
|
|
</view>
|
|
</view>
|
|
<wux-divider show-text="{{ false }}"></wux-divider>
|
|
<view class="cu-bar bg-white" style="min-height: 80rpx">
|
|
<view class="action text-bold" style="color:#333333">资料凭证</view>
|
|
</view>
|
|
<view class="cu-form-group">
|
|
<view class="flex flex-justify" style="width:100%;padding-bottom:30rpx;justify-content: start">
|
|
<view wx:for="{{boImgList}}" wx:key="index" style="padding-right:18rpx">
|
|
<view wx:if="{{item.video}}" style="width:{{vidth}}rpx;height:{{vidth}}rpx;position: relative" bindtap="videoTap">
|
|
<video src="{{item.url}}" style="width:{{vidth}}rpx;height:{{vidth}}rpx;border-radius:8rpx" show-center-play-btn="{{false}}" controls="{{false}}" />
|
|
<text class="play-btn cuIcon-video text-white" style="font-size:50rpx;top: 30%;left: 25%;" wx:if="{{!visible}}"></text>
|
|
</view>
|
|
<wux-image wx:else width="{{vidth / 2}}" height="{{vidth / 2}}" shape="rounded" src="{{item.url}}" data-url="{{item.url}}" mode="aspectFill" bind:click="previewImage">
|
|
<image class="image-load" slot="loading" style="width:{{vidth}}rpx;height:{{vidth}}rpx" src="/assets/image/def_image.png"></image>
|
|
</wux-image>
|
|
<view class="flex flex-center" style="width:{{vidth}}rpx;height:32rpx;margin-top:4rpx">
|
|
<text class="md-hint">{{item.text}}</text>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<wux-divider show-text="{{ false }}"></wux-divider>
|
|
<view class="flex flex-justify" style="padding: 24rpx">
|
|
<view class="text-sg">单价:{{formate.formatePrice2(orderInfo.unitPrice, kg)}}</view>
|
|
<view class="text-sg">净重:{{orderPoundBO.netWeight + (kg ? 'KG' : '吨')}}</view>
|
|
</view>
|
|
<wux-divider show-text="{{ false }}"></wux-divider>
|
|
<view class="flex flex-justify text-sg" style="padding: 24rpx">
|
|
<view class="flex">
|
|
<view>订单金额:</view>
|
|
<view class="text-price" style="padding-top:4rpx">{{formate.formateAmount(amount)}}元</view>
|
|
</view>
|
|
<!-- <text class="text-blue" wx:if="{{orderInfo.status != 9}}">{{orderInfo.status > 4 ? '已支付' : '未支付'}}</text> -->
|
|
</view>
|
|
<wux-divider show-text="{{ false }}"></wux-divider>
|
|
<view class="flex flex-justify text-sg" style="padding: 24rpx">
|
|
<view class="flex">
|
|
<view>订单诚意金:</view>
|
|
<view class="text-price" style="padding-top:4rpx">{{formate.formateAmount(orderInfo.imprestAmount)}}元</view>
|
|
</view>
|
|
<text class="text-blue">已支付</text>
|
|
</view>
|
|
<wux-divider show-text="{{ false }}"></wux-divider>
|
|
<view class="text-sg flex flex-justify" style="padding: 24rpx">
|
|
<view class="flex"><text>订单尾款:</text><text class="text-price">{{formate.formateAmount(payment)}}元</text></view>
|
|
<text class="text-blue" wx:if="{{orderInfo.status != 9}}">{{orderInfo.status > 4 ? '已支付' : '未支付'}}</text>
|
|
</view>
|
|
<wux-divider show-text="{{ false }}"></wux-divider>
|
|
<view class="text-sg" style="padding:24rpx">支付方式:{{orderInfo.isPayOffline ? '线下支付' : '线上支付'}}</view>
|
|
</view>
|
|
<!-- 扣重扣点申请信息 -->
|
|
<view class="bg-white margin-top" wx:if="{{orderPoundBO && orderPoundBO.deductedWeight && orderInfo.status != 2}}">
|
|
<view class="cu-bar bg-white" style="min-height: 80rpx">
|
|
<view class="action text-bold" style="color:#333333">扣重扣点{{orderInfo.status == 6 ? '申请' : ''}}信息</view>
|
|
</view>
|
|
<wux-divider show-text="{{ false }}"></wux-divider>
|
|
<view class="flex flex-justify text-red" style="padding: 24rpx">
|
|
<view class="text-sg">扣点:{{orderPoundBO.deductedPoint}}%</view>
|
|
<view class="text-sg">扣重:{{order.formateWeight(orderPoundBO.deductedWeight, kg)}}</view>
|
|
</view>
|
|
<wux-divider show-text="{{ false }}"></wux-divider>
|
|
<view class="text-sg text-red" style="padding: 24rpx">
|
|
<text>扣点扣重金额:</text><text class="text-price">{{formate.formateAmount(orderPoundBO.deductPrice)}}元</text>
|
|
</view>
|
|
<wux-divider show-text="{{ false }}"></wux-divider>
|
|
<view class="text-sg" style="padding: 24rpx">
|
|
<text>订单结算金额:</text><text class="text-price">{{formate.formateAmount(orderPoundBO.currentSettlePrice)}}元</text>
|
|
</view>
|
|
</view>
|
|
<!-- 扣重扣点 -->
|
|
<view class="margin-top" wx:if="{{type == 0 && orderInfo.status == 5}}"></view>
|
|
<wux-cell-group wx:if="{{type == 0 && orderInfo.status == 5}}">
|
|
<wux-cell title="收货申诉" is-link bind:click="actionSheet"></wux-cell>
|
|
</wux-cell-group>
|
|
|
|
</view>
|
|
|
|
<view style="height:{{136 + safeBottom}}rpx;"></view>
|
|
<view class="cu-bar bg-white tabbar foot flex" style="height:{{120 + safeBottom}}rpx;padding: 32rpx 32rpx {{safeBottom + 32}}rpx 24rpx;" wx:if="{{operatBar}}">
|
|
<view class="action" style="width: 100rpx" bindtap="toShopInfo" wx:if="{{type == 0}}">
|
|
<view class="cuIcon-shop" style="font-size:24px"></view>
|
|
<text>店铺</text>
|
|
</view>
|
|
<view class="flex align-end" style="width:100%;margin-left:12rpx">
|
|
<view wx:if="{{orderInfo.status == 5}}" style="width:100%;">
|
|
<wux-button block type="positive" bind:click="takeGood">确认收货</wux-button>
|
|
</view>
|
|
<!-- <view class="flex" wx:if="{{orderInfo.status == 5}}">
|
|
<button class="cu-btn offer-btn" bindtap="takeGood">确认收货</button>
|
|
</view> -->
|
|
<view class="flex" wx:if="{{orderInfo.status == 6}}" style="width:100%;flex:1;padding: 0rpx 24rpx">
|
|
<view style="width:100%;flex:1;margin-right:16rpx">
|
|
<wux-button id="crefuse" block type="assertive" bind:click="handleDeducted">拒绝扣点</wux-button>
|
|
</view>
|
|
<view style="width:100%;flex:1;margin-left:16rpx">
|
|
<wux-button id="cagree" block type="positive" bind:click="handleDeducted">同意扣点</wux-button>
|
|
</view>
|
|
</view>
|
|
<!-- <view class="flex" wx:if="{{orderInfo.status == 6}}">
|
|
<button id="crefuse" class="cu-btn back-btn" style="background: #EE4D4A;width:320rpx" bindtap="handleDeducted">拒绝扣点</button>
|
|
<button id="cagree" class="cu-btn offer-btn" style="width:320rpx" bindtap="handleDeducted">同意扣点</button>
|
|
</view> -->
|
|
<view class="flex" wx:if="{{orderInfo.status == 7}}" style="width:100%;flex:1;padding: 0rpx 24rpx">
|
|
<view style="width:100%;flex:1;margin-right:16rpx">
|
|
<wux-button id="drefuse" block type="assertive" bind:click="handleDeducted">拒绝退货</wux-button>
|
|
</view>
|
|
<view style="width:100%;flex:1;margin-left:16rpx">
|
|
<wux-button id="dagree" block type="positive" bind:click="handleDeducted">同意退货</wux-button>
|
|
</view>
|
|
</view>
|
|
<!-- <view class="flex" wx:if="{{orderInfo.status == 7}}">
|
|
<button id="drefuse" class="cu-btn back-btn" style="background: #EE4D4A;width:320rpx" bindtap="handleDeducted">拒绝退货</button>
|
|
<button id="dagree" class="cu-btn offer-btn" style="width:320rpx" bindtap="handleDeducted">同意退货</button>
|
|
</view> -->
|
|
<view class="flex" wx:if="{{orderInfo.status == 4}}" style="width:100%;flex:1">
|
|
<view style="width:100%;flex:1;margin-right:16rpx" wx:if="{{orderInfo.isPayOffline}}">
|
|
<wux-button block type="assertive" bind:click="paymentOffline">线下支付</wux-button>
|
|
</view>
|
|
<view style="width:100%;flex:1;margin-left:16rpx" wx:else>
|
|
<wux-button block type="positive" bind:click="paymentOrder">立即支付</wux-button>
|
|
</view>
|
|
</view>
|
|
<!-- <view class="flex" wx:if="{{orderInfo.status == 4}}">
|
|
<button class="cu-btn back-btn" bindtap="paymentOffline" style="background-color: #EE4D4A">线下支付</button>
|
|
<button class="cu-btn offer-btn" bindtap="paymentOrder" style="margin-left:24rpx" wx:if="{{!orderInfo.isPayOffline}}">立即支付</button>
|
|
</view> -->
|
|
<view class="flex" wx:if="{{orderInfo.status == 3}}" style="width:100%;flex:1">
|
|
<view style="width:100%;flex:1;margin-right:16rpx">
|
|
<wux-button id="refuse" block type="assertive" bind:click="offerInfo">不同意</wux-button>
|
|
</view>
|
|
<view style="width:100%;flex:1;margin-left:16rpx">
|
|
<wux-button id="agree" block type="positive" bind:click="offerInfo">确认订单</wux-button>
|
|
</view>
|
|
</view>
|
|
<!-- <button id="refuse" class="cu-btn back-btn" style="background-color: #EE4D4A" bindtap="offerInfo" wx:if="{{orderInfo.status == 3}}">不同意</button>
|
|
<button id="agree" class="cu-btn offer-btn" bindtap="offerInfo" wx:if="{{orderInfo.status == 3}}">确认订单</button> -->
|
|
<view wx:if="{{orderInfo.status == 2}}" style="width:100%;padding: 0rpx 24rpx">
|
|
<wux-button block type="positive" bind:click="submitInfo">提交资料</wux-button>
|
|
</view>
|
|
<!-- <button class="cu-btn offer-btn" style="width:650rpx" bindtap="submitInfo" wx:if="{{orderInfo.status == 2}}">提交资料</button> -->
|
|
<view class="flex" wx:if="{{orderInfo.status == 1}}" style="width:100%;flex:1">
|
|
<!-- <button class="cu-btn back-btn" bindtap="paymentOffline" style="background-color: #EE4D4A">线下支付</button> -->
|
|
<view style="width:100%;flex:1;margin-right:16rpx">
|
|
<wux-button block type="assertive" bind:click="paymentOffline">线下支付</wux-button>
|
|
</view>
|
|
<view style="width:100%;flex:1;margin-left:16rpx">
|
|
<wux-button block type="positive" bind:click="paymentOrder">立即支付</wux-button>
|
|
</view>
|
|
<!-- <button class="cu-btn offer-btn" bindtap="paymentOrder" style="margin-left:24rpx">立即支付</button> -->
|
|
</view>
|
|
</view>
|
|
</view>
|
|
|
|
<wux-landscape visible="{{ visible }}" bind:close="onClose">
|
|
<video id="video" src="{{videoUrl}}" style="width:750rpx;min-height:{{imageHeight}}rpx" show-center-play-btn="{{false}}" bindended="bindended" />
|
|
</wux-landscape>
|
|
<wux-dialog id="wux-dialog" />
|
|
|
|
<view class="cu-modal bottom-modal {{modalName=='bottomModal'?'show':''}}" bindtap="hideModal">
|
|
<view class="cu-dialog" style="padding:48rpx 24rpx;border-top-left-radius: 32rpx;border-top-right-radius: 32rpx;" catchtap="stopModal">
|
|
<view class="flex flex-center">
|
|
<view class="flex" style="flex:1;padding-bottom: 32rpx;padding-right: 9rpx">
|
|
<view id="1" class="flex" bindtap="changRadio">
|
|
<text class="cuIcon-{{radioIndex==1?'roundcheckfill':'round'}} text-blue" style="font-size:36rpx"/>
|
|
<view class="text-sg" style="min-width:140rpx">扣点(%):</view>
|
|
</view>
|
|
<input maxlength="5" type="digit" disabled="{{radioIndex!=1}}" style="text-align: start" placeholder-style="color:#aaa" value="{{deductedPoint}}" placeholder="请输入" bindinput="bind2Input"/>
|
|
</view>
|
|
<view class="flex flex-center" style="flex:1;padding-bottom: 32rpx;padding-left: 9rpx">
|
|
<view id="2" class="flex" bindtap="changRadio">
|
|
<text class="cuIcon-{{radioIndex==2?'roundcheckfill':'round'}} text-blue" style="font-size:36rpx"/>
|
|
<view class="text-sg" style="min-width:140rpx">扣重({{kg ? 'KG' : '吨'}}):</view>
|
|
</view>
|
|
<input maxlength="8" type="digit" disabled="{{radioIndex!=2}}" style="text-align: start" placeholder-style="color:#aaa" value="{{deductedWeight}}" placeholder="请输入" bindinput="bind2Input" />
|
|
</view>
|
|
</view>
|
|
<wux-divider show-text="{{ false }}"></wux-divider>
|
|
<view class="flex" style="flex:1;padding: 32rpx 0rpx">
|
|
<view class="text-sg" style="min-width:180rpx">扣重扣点金额:</view>
|
|
<view class="text-price text-red text-sg" style="padding-top: 4rpx">{{formate.formateAmount(deductedAmount1)}}元</view>
|
|
</view>
|
|
<wux-divider show-text="{{ false }}"></wux-divider>
|
|
<view class="flex" style="flex:1;padding: 32rpx 0rpx">
|
|
<view class="text-sg" style="min-width:180rpx">扣后订单金额:</view>
|
|
<view class="text-price text-red text-sg">{{formate.formateAmount(deductedAmount2)}}元</view>
|
|
</view>
|
|
<wux-button block type="positive" bind:click="applyGood">提交申请</wux-button>
|
|
</view>
|
|
</view>
|