修改部分已知的代码问题
parent
3b9b2e8ba2
commit
c98c5b64e1
|
@ -45,7 +45,7 @@ export default {
|
|||
face: storage.getUserInfo().face || "/static/missing-face.png", //默认头像
|
||||
regionId: [], //地址Id
|
||||
region: storage.getUserInfo().region || [], //地址
|
||||
sex: storage.getUserInfo().sex || 1, //性别
|
||||
sex: storage.getUserInfo().sex, //性别
|
||||
___path: storage.getUserInfo().region,
|
||||
},
|
||||
birthday: storage.getUserInfo().birthday || "", //生日
|
||||
|
|
|
@ -339,9 +339,7 @@ export default {
|
|||
getAfterSaleReason(serviceType).then((res) => {
|
||||
if (res.data.success) {
|
||||
// 1357583466371219456
|
||||
this.reason = res.data.result.filter((item) => {
|
||||
return item.id == this.serviceDetail.reason;
|
||||
})[0].reason;
|
||||
this.reason = this.serviceDetail.reason;
|
||||
}
|
||||
});
|
||||
},
|
||||
|
|
|
@ -507,6 +507,7 @@ export default {
|
|||
|
||||
// 获取结算参数
|
||||
getOrderList() {
|
||||
this.notSupportFreight = []
|
||||
// 获取结算参数
|
||||
API_Trade.getCheckoutParams(this.routerVal.way).then((res) => {
|
||||
res.data.result.cartList.forEach((item, index) => {
|
||||
|
|
|
@ -155,7 +155,7 @@
|
|||
<view class="invoice-info-view">
|
||||
<view class="ltitle">发票信息:</view>
|
||||
<view v-if="!order.needReceipt" class="value">无需发票</view>
|
||||
<view v-else class="value" @click="onReceipt(order.receiptVO)">查看发票</view>
|
||||
<view v-else class="value" @click="onReceipt(orderDetail.receipt)">查看发票</view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
|
|
Loading…
Reference in New Issue