talk_appAmin/pages/signln/exchangemall.vue

43 lines
807 B
Vue
Raw Normal View History

2024-06-04 21:40:25 +08:00
<!-- 兑换商城 -->
<template class="content">
2024-06-05 18:40:02 +08:00
<navbar_nead title="兑换商城"></navbar_nead>
2024-06-04 21:40:25 +08:00
<view class="view-top">
<view class="view-top-rigth-text">
<text>我的校园币:{{count}}</text>
</view>
</view>
2024-06-05 18:40:02 +08:00
<ex></ex>
2024-06-04 21:40:25 +08:00
</template>
<script setup>
2024-06-05 18:40:02 +08:00
import navbar_nead from "@/pages/common/navbar/navbar_nead.vue";
import ex from "@/pages/common/exchange/index.vue";
2024-06-04 21:40:25 +08:00
import {
ref,
reactive
} from "vue";
2024-06-05 18:40:02 +08:00
2024-06-04 21:40:25 +08:00
const count = ref("750");
</script>
<style>
2024-06-08 18:49:58 +08:00
@import '@/pages/common/navbar/navbar.css';
2024-06-04 21:40:25 +08:00
.view-top {
/* height: 100rpx; */
}
.view-top-rigth-text {
margin-top: 24rpx;
margin-left: 479rpx;
margin-right: 32rpx;
}
.view-top-rigth-text>text {
font-weight: Regular;
width: 239rpx;
height: 31rpx;
font-size: 30rpx;
text-align: left;
color: #000000;
}
</style>