talk_appAmin/pages/signln/successfulexchange.vue

124 lines
2.0 KiB
Vue
Raw Normal View History

2024-06-05 18:40:02 +08:00
<!-- 兑换成功 -->
<template>
<view class="content">
2024-06-18 19:06:14 +08:00
<view class="uninavbar" @click="Tortuen()">
2024-06-05 18:40:02 +08:00
<image :src="returns"></image>
</view>
<view class="backimage">
<image :src="images"></image>
</view>
<image :src="icons" class="icon"></image>
<view class="con-text">
<text>兑换成功</text>
</view>
<view class="but" @click="RetExChangemall()">
<text>返回商城</text>
</view>
</view>
</template>
<script setup>
import {
2024-06-18 19:06:14 +08:00
ref,
getCurrentInstance
2024-06-05 18:40:02 +08:00
} from 'vue';
const returns = ref("../../static/images/sign/return.png");
2024-06-08 18:49:58 +08:00
const images = ref("../../static/images/sign/co.png");
const icons = ref("../../static/images/sign/success.png");
2024-06-18 19:06:14 +08:00
function RetExChangemall() {
2024-06-05 18:40:02 +08:00
uni.navigateTo({
url: './exchangemall',
// url: './exdetail',
});
}
2024-06-18 19:06:14 +08:00
const {
proxy
} = getCurrentInstance();
function Tortuen() {
// proxy.$tab.navigateTo("/pages/signln/signid")
uni.navigateTo({
url: '/pages/signln/signid',
});
}
2024-06-05 18:40:02 +08:00
</script>
2024-06-08 18:49:58 +08:00
<style scoped>
2024-06-05 18:40:02 +08:00
.uninavbar {
position: absolute;
z-index: 9999;
top: 110rpx;
left: 32rpx;
}
.uninavbar>image {
width: 31rpx;
height: 44rpx;
color: #000000;
}
.backimage>image {
width: 7270rpx;
height: 599rpx;
}
.content {
width: 750rpx;
height: 100vh;
background: linear-gradient(-140deg, #83c4ff, #ffffff);
}
.icon {
width: 317rpx;
height: 198rpx;
position: absolute;
top: 264rpx;
left: 217rpx;
}
.con-text>text {
font-weight: Regular;
width: 194rpx;
height: 49rpx;
font-size: 48rpx;
text-align: left;
color: #348FE2;
display: block;
margin: auto;
position: absolute;
top: 470rpx;
left: 277rpx;
}
.but {
width: 686rpx;
height: 88rpx;
border-radius: 44rpx 44rpx 44rpx 44rpx;
opacity: 0.24;
background: #83c4ff;
position: absolute;
top: 590rpx;
left: 32rpx;
}
.but>text {
font-weight: Regular;
width: 124rpx;
height: 31rpx;
font-size: 30rpx;
text-align: left;
color: #348FE2;
display: block;
margin: auto;
line-height: 88rpx;
}
</style>