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.
|
- <view class="orderBox">
- <view class="orderTitle" wx:if="{{auditRemarkShow}}">驳回意见</view>
- <view class="courier" wx:if="{{auditRemarkShow}}">
- <input class="courierInput" placeholder="请填写驳回意见" disabled="{{disabled}}" bindinput="inputauditRemark" value="{{auditRemark}}"></input>
- </view>
- <view class="orderTitle">订单号</view>
- <view class="courier">
- <input class="courierInput" placeholder="请填写交易订单号" disabled="{{disabled}}" bindinput="inputorderNo" value="{{orderNo}}"></input>
- </view>
- <view class="orderTitle">订单金额</view>
- <view class="courier">
- <input class="courierInput" placeholder="请填写交易订单金额" disabled="{{disabled}}" bindinput="inputorderMoney" value="{{orderMoney}}"></input>
- </view>
- <view class="orderTitle">客户姓名</view>
- <view class="courier">
- <input class="courierInput" placeholder="请填写客户姓名" disabled="{{disabledDetail}}" bindinput="inputcusName" value="{{cusName}}"></input>
- </view>
- <view class="orderTitle">客户电话</view>
- <view class="courier">
- <input class="courierInput" placeholder="请填写客户电话" disabled="{{disabledDetail}}" bindinput="inputphone" value="{{phone}}"></input>
- </view>
- <view class="orderTitle">客户地址</view>
- <view class="courier">
- <input class="courierInput" placeholder="请填写客户地址" disabled="{{disabledDetail}}" bindinput="inputaddress" value="{{address}}"></input>
- </view>
- <view wx:for="{{recordExtends}}" wx:key="index" >
- <view class="orderTitle">备注{{index + 1}}</view>
- <view class="courier">
- <input class="courierInput" placeholder="请填写备注" disabled="{{disabledDetail}}" bindinput="inputRemark" data-index='{{index}}' value="{{item.remark}}"></input>
- </view>
- <view class="oprBtn">
- <button wx:if="{{!disabledDetail}}" bindtap='addRemark'>添加</button>
- <button wx:if="{{!disabledDetail && recordExtends.length > 1}}" bindtap='delRemark' data-index='{{index}}'>删除</button>
- </view>
- </view>
-
- <view wx:if="{{detailData.auditStatus === 1}}">
- <view class="orderTitle">奖项</view>
- <view class="itemList" wx:for="{{detailData.recordItemList}}">
- <view><text>奖券编号: </text>{{item.code}}</view>
- <view><text>奖项: </text>{{item.itemName}}</view>
- <view><text>总价值: </text>{{item.cashMoney}}</view>
- <view><text>商管承担: </text>{{item.mallCashMoney}}元({{item.mallRate}}%)</view>
- <view><text>商户承担: </text>{{item.merchantCashMoney}}元({{item.merchantRate}}%)</view>
- </view>
-
- </view>
- </view>
- <view class="submit" bindtap="submit">{{ btnText }}</view>
- <view class="submit goBack" bindtap="goBack">取消</view>
|