xiaozy_积分 #8
@@ -8,17 +8,17 @@
|
||||
<view class="status-frame">
|
||||
<view v-if="info.orderStatus">{{statusEnum[info.orderStatus].value}}</view>
|
||||
<view>提货码: <text>{{info.takeCode}}</text></view>
|
||||
<view>提货时间:2024-1-9</view>
|
||||
<view v-if="info.orderStatus==2">提货时间:{{info.takeTime}}</view>
|
||||
</view>
|
||||
|
||||
|
||||
<view class="info-frame">
|
||||
<view class="header">用户手机: 18879008955<text>用户名: 张小明</text></view>
|
||||
<view class="header">用户手机: {{info.customerPhone}}<text>用户名: {{info.customerName}}</text></view>
|
||||
<view class="introduce" v-for="item,index in info.mallOrderInfoDetails" :key="index">
|
||||
<image :src="item.oderDetailImg"></image>
|
||||
<view>{{item.productName}}</view>
|
||||
<view>规格:{{handler(item.attributeJson)}}</view>
|
||||
<view>¥120.61 X1</view>
|
||||
<view>¥{{item.marketPrice}} X{{item.orderNum}}</view>
|
||||
</view>
|
||||
<view class="detial">
|
||||
<view>订单编号: <text>{{info.orderCode}}</text></view>
|
||||
|
||||
@@ -31,7 +31,7 @@
|
||||
|
||||
<view class="take-frame" v-if="controlWindows.code">
|
||||
<view>请输入提货码</view>
|
||||
<view>提货码或手机后四位</view>
|
||||
<view>提货码</view>
|
||||
<view class="code">
|
||||
<xt-verify-code v-model="code" cursorColor="#333" boxNormalColor="#EAEAEA" boxActiveColor="#EAEAEA"
|
||||
@confirm="confirm" :size="4" :isFocus="false"></xt-verify-code>
|
||||
@@ -73,7 +73,7 @@
|
||||
pagesize: 20,
|
||||
params: {
|
||||
takeCode: '',
|
||||
customerPhone:''
|
||||
// customerPhone:''
|
||||
},
|
||||
},
|
||||
dataList: []
|
||||
@@ -99,7 +99,7 @@
|
||||
confirm() {
|
||||
this.controlWindows.code = false
|
||||
this.paramter.params.takeCode = this.code
|
||||
this.paramter.params.customerPhone = this.code
|
||||
// this.paramter.params.customerPhone = this.code
|
||||
this.getByPageCloudMini()
|
||||
},
|
||||
getByPageCloudMini() {
|
||||
@@ -132,8 +132,9 @@
|
||||
icon: 'none'
|
||||
});
|
||||
this.$refs.popup.close();
|
||||
this;getByPageCloudMini()
|
||||
uni.navigateTo({
|
||||
url: '/packageIntegral/orderDetails/index'
|
||||
url: `../orderDetails/index?orderId=${this.dataList[0].orderId}`
|
||||
})
|
||||
}
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user