|
@@ -52,7 +52,7 @@
|
|
|
</view>
|
|
|
</view>
|
|
|
</view>
|
|
|
- <view class="pros-product-uss">合计:<text class="text">¥{{ pros.price | NumFormat}}</text></view>
|
|
|
+ <view class="pros-product-uss">合计:<text class="text">¥{{ pros.totalAmount | NumFormat}}</text></view>
|
|
|
</view>
|
|
|
</view>
|
|
|
<!-- 底部button -->
|
|
@@ -78,19 +78,19 @@
|
|
|
</view>
|
|
|
<view class="d-label">收货人姓名:</view>
|
|
|
<view class="d-input">
|
|
|
- <input class="input" type="text" value="" v-model="listQuery.name" placeholder="输入收货人姓名"/>
|
|
|
+ <input class="input" type="text" value="" v-model="listQuery.shouHuoRen" placeholder="输入收货人姓名"/>
|
|
|
</view>
|
|
|
- <view class="d-label">结算状态:</view>
|
|
|
+ <view class="d-label">发货状态:</view>
|
|
|
<view class="d-input">
|
|
|
<picker @change="bindPickerChange($event)" :value="index" :range="StatusArray" range-key="name">
|
|
|
- <input class="input" type="text" disabled="false" v-model="showSendOutStatus" value="" placeholder="请选择结算状态"/>
|
|
|
+ <input class="input" type="text" disabled="false" v-model="showSendOutStatus" value="" placeholder="请选择发货状态"/>
|
|
|
<text class="iconfont icon-xiangyou"></text>
|
|
|
</picker>
|
|
|
</view>
|
|
|
- <view class="d-label">发货状态:</view>
|
|
|
+ <view class="d-label">结算状态:</view>
|
|
|
<view class="d-input">
|
|
|
<picker @change="bindPickerChange1($event)" :value="index" :range="PayArray" range-key="name">
|
|
|
- <input class="input" type="text" disabled="false" v-model="showpayStatus" value="" placeholder="请选择发货状态"/>
|
|
|
+ <input class="input" type="text" disabled="false" v-model="showpayStatus" value="" placeholder="请选择结算状态"/>
|
|
|
<text class="iconfont icon-xiangyou"></text>
|
|
|
</picker>
|
|
|
</view>
|
|
@@ -122,7 +122,7 @@
|
|
|
sendOutStatus: '',//发货状态
|
|
|
payStatus:'',//结算状态
|
|
|
shopOrderNo:'',//订单编号
|
|
|
- name: '',//买家名称
|
|
|
+ shouHuoRen: '',//买家名称
|
|
|
};
|
|
|
export default{
|
|
|
components: {
|
|
@@ -296,8 +296,6 @@
|
|
|
this.listQuery.shopID = this.shopID
|
|
|
this.showSendOutStatus='';
|
|
|
this.showpayStatus='';
|
|
|
- this.listQuery.shopOrderNo='';
|
|
|
- this.listQuery.name='';
|
|
|
},
|
|
|
},
|
|
|
onShareAppMessage(res){//分享转发
|