36 lines
581 B
Vue
36 lines
581 B
Vue
<!-- 兑换商城详情 -->
|
|
<template>
|
|
<view class="uninavbar">
|
|
<image src="../../static/images/sign/return.png"></image>
|
|
</view>
|
|
<view>
|
|
<image :src="images"></image>
|
|
</view>
|
|
</template>
|
|
|
|
<script setup>
|
|
import {
|
|
ref
|
|
}
|
|
from "vue"
|
|
|
|
const images = ref("https://cbu01.alicdn.com/img/ibank/2016/442/823/3216328244_1451018438.jpg")
|
|
</script>
|
|
|
|
<style>
|
|
.uninavbar {
|
|
position: absolute;
|
|
z-index:9999;
|
|
top: 110rpx;
|
|
left: 32rpx;
|
|
}
|
|
.uninavbar > image{
|
|
width: 31rpx;
|
|
height: 44rpx;
|
|
color: #000000;
|
|
}
|
|
view > image {
|
|
width: 750rpx;
|
|
height: 500rpx;
|
|
}
|
|
</style> |