talk_appAmin/pages/signln/exchangemall.vue

43 lines
807 B
Vue

<!-- 兑换商城 -->
<template class="content">
<navbar_nead title="兑换商城"></navbar_nead>
<view class="view-top">
<view class="view-top-rigth-text">
<text>我的校园币:{{count}}</text>
</view>
</view>
<ex></ex>
</template>
<script setup>
import navbar_nead from "@/pages/common/navbar/navbar_nead.vue";
import ex from "@/pages/common/exchange/index.vue";
import {
ref,
reactive
} from "vue";
const count = ref("750");
</script>
<style>
@import '@/pages/common/navbar/navbar.css';
.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>