跳转问题
parent
35f2667efe
commit
547649e4a4
|
@ -47,7 +47,7 @@
|
|||
.uninavbars {
|
||||
position: fixed;
|
||||
z-index: 9999;
|
||||
top: 20rpx;
|
||||
top: 110rpx;
|
||||
left: 32rpx;
|
||||
}
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
<!-- 兑换商城详情 -->
|
||||
<template>
|
||||
<view class="uninavbar">
|
||||
<view class="uninavbar" @click="returnTo()">
|
||||
<image src="../../static/images/sign/return.png"></image>
|
||||
</view>
|
||||
<view>
|
||||
|
@ -208,6 +208,13 @@
|
|||
url: './successfulexchange'
|
||||
});
|
||||
}
|
||||
|
||||
//返回
|
||||
function returnTo(){
|
||||
uni.navigateBack({
|
||||
delta: 1
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
const arrImage = reactive([{
|
||||
|
|
|
@ -2,6 +2,9 @@
|
|||
<template>
|
||||
<navbar_neadVue title="收货地址" background_color="#ffffff"></navbar_neadVue>
|
||||
|
||||
<view style="position: fixed; z-index: -1; background-color: #ffffff; top: 0; bottom: 0;left: 0;right: 0;"></view>
|
||||
|
||||
|
||||
<!-- 有地址 -->
|
||||
<view v-if="arr.length >= 1" v-for="(item,index) in arr" :key="index">
|
||||
<view class="haveaddress" @click="HaveAddress(item.id)">
|
||||
|
@ -14,7 +17,7 @@
|
|||
<text class="textaddress">{{item.address}}</text>
|
||||
</view>
|
||||
|
||||
<view class="butview">
|
||||
<view class="butview" @click="returnTo()">
|
||||
<view class="but">
|
||||
<text>确定地址</text>
|
||||
</view>
|
||||
|
@ -71,6 +74,12 @@
|
|||
function HaveAddress(id) {
|
||||
IsHave.value = id;
|
||||
}
|
||||
|
||||
function returnTo(){
|
||||
uni.navigateBack({
|
||||
delta: 1
|
||||
});
|
||||
}
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
|
|
|
@ -84,8 +84,9 @@
|
|||
<view class="bottom-text">
|
||||
<text class="bottom-text-s">兑换商城</text>
|
||||
<view class="bottom-text-r" @click="GoExchange()">
|
||||
<text>更多</text>
|
||||
<image style="width: 14rpx; height: 23rpx;margin-left: 9rpx;" src="../../static/images/sign/rig.png">
|
||||
<text style=" vertical-align: middle;">更多</text>
|
||||
<image style="width: 14rpx; height: 23rpx;margin-left: 9rpx; vertical-align: middle;"
|
||||
src="../../static/images/sign/rig.png">
|
||||
</image>
|
||||
</view>
|
||||
</view>
|
||||
|
|
|
@ -1,6 +1,10 @@
|
|||
<!-- 签到明细 -->
|
||||
<template>
|
||||
<navbar_neadVue title="签到明细"></navbar_neadVue>
|
||||
|
||||
|
||||
<view style="position: fixed; z-index: -1; background-color: #ffffff; top: 0; bottom: 0;left: 0;right: 0;"></view>
|
||||
|
||||
<view style="background-color: #ffffff;">
|
||||
<view style="height: 24rpx;"></view>
|
||||
<view class="content" v-for="(item,index) in arr" :key="index">
|
||||
|
|
Loading…
Reference in New Issue