[fix]调整下单,显示联系人及可以修改

main
huyuanxiang 1 year ago
parent 78dfbcab21
commit c4cfd122bb

@ -6,6 +6,16 @@
<text class="text1">配送方式</text>
<text class="text2">{{modes || "请选择配送方式"}}</text>
<image src="/static/images/home/right.png"></image>
</view>
<view class="order_address" style="height: auto;margin-bottom: 8px;">
<view class="row">
<view class="nominal">联系人</view>
<view class="input"><input class="input-text" v-model="userInfo.realname" placeholder="请输入联系人姓名" type="text"></input></view>
</view>
<view class="row">
<view class="nominal">电话号码</view>
<view class="input"><input class="input-text" v-model="userInfo.phone" placeholder="请输入联系人电话号码" type="number" maxlength="11"></input></view>
</view>
</view>
<!-- 收货地址 -->
<view class="order_address" v-if="tapIndex == 0">
@ -152,7 +162,11 @@ export default {
condition: ['新人专享']
}
],
themeObj: app.globalData.themeObj
themeObj: app.globalData.themeObj,
userInfo: {
realname: getUserInfo().realname,
phone: getUserInfo().phone
}
};
},
@ -239,16 +253,21 @@ export default {
this.$toast('请先选择地址')
return
}
const that = this
uni.showModal({
content: '确定联系人及联系电话无误?',
success: res => {
if (res.confirm) {
const cartList = getCart()
const goodsIds = this.goodsList.map(v => v.id)
const goodsIds = that.goodsList.map(v => v.id)
const newCartList = cartList.filter(v => !goodsIds.includes(v.id))
const userInfo = getUserInfo()
const params = {
storeId: this.address.id,
"recipient": userInfo.realname,
"addr": this.address.addr,
"mobile": userInfo.phone,
"orderDetailList": this.goodsList.map(v => {
storeId: that.address.id,
"recipient": that.userInfo.realname,
"addr": that.address.addr,
"mobile": that.userInfo.phone,
"orderDetailList": that.goodsList.map(v => {
return {
goodsId: v.id,
goodsName: v.goodsName,
@ -257,20 +276,20 @@ export default {
}
}),
state: 6,
"remark": this.remark,
"totalAmount": this.sumprice,
"remark": that.remark,
"totalAmount": that.sumprice,
"userId": userInfo.id
}
if (this.isConfirm) return
this.isConfirm = true
if (that.isConfirm) return
that.isConfirm = true
uni.showLoading({
mask: true
})
addOrder(params).then(res => {
uni.hideLoading()
this.isConfirm = false
that.isConfirm = false
if (res.result) {
this.$toast('添加成功')
that.$toast('添加成功')
resetCart(newCartList)
setTabBarBadge(newCartList.length)
//
@ -280,6 +299,11 @@ export default {
}
})
} else if (res.cancel) {
}
}
});
},
selectMode() {
@ -368,6 +392,26 @@ page {
overflow: hidden;
position: relative;
box-shadow: 0upx 0upx 10upx #ddd;
.row {
color: #999;
display: flex;
line-height: 60upx;
height: 60upx;
padding: 0 20upx;
font-size: 24upx;
.nominal {
width: 22%;
}
.input {
display: flex;
align-items: center;
margin-left: 20px;
}
.input-text {
color: #000;
font-size: 24upx;
}
}
}
.order_address image {

@ -2,6 +2,16 @@
<view>
<view class="order" :class="['theme', themeObj.name]">
<!-- 收货地址 -->
<view class="order_address" style="height: auto;margin-bottom: 8px;">
<view class="row">
<view class="nominal">联系人</view>
<view class="input"><input class="input-text" v-model="goods.recipient" disabled="true" placeholder="请输入联系人姓名" type="text"></input></view>
</view>
<view class="row">
<view class="nominal">电话号码</view>
<view class="input"><input class="input-text" v-model="goods.mobile" disabled="" placeholder="请输入联系人电话号码" type="number" maxlength="11"></input></view>
</view>
</view>
<view class="order_address">
<image src="/static/images/home/bottom.png"></image>
<view class="address_box">
@ -518,6 +528,26 @@ page {
overflow: hidden;
position: relative;
box-shadow: 0upx 0upx 10upx #ddd;
.row {
color: #999;
display: flex;
line-height: 60upx;
height: 60upx;
padding: 0 20upx;
font-size: 24upx;
.nominal {
width: 22%;
}
.input {
display: flex;
align-items: center;
margin-left: 20px;
}
.input-text {
color: #000;
font-size: 24upx;
}
}
}
.order_address image {

@ -7,7 +7,7 @@
<view class="user" @click="onLogin">
<image :src="userdata.avatar" v-if="userdata.avatar"></image>
<image src="../../../static/images/face.jpg" v-else></image>
<text>{{userdata.username || '-'}}</text>
<text>{{userdata.realname || '-'}}</text>
</view>
</view>
<view class="vip">

Loading…
Cancel
Save