This commit is contained in:
2024-02-02 14:50:21 +08:00
parent ac634dfaf8
commit f96dccb8c8
2 changed files with 8 additions and 7 deletions

View File

@@ -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}`
})
}
})