35 lines
463 B
Vue
35 lines
463 B
Vue
<template>
|
|
<view class="content">
|
|
<image src="../../static/images/rule.png" mode=""></image>
|
|
<u-navbar autoBack title="充值规则"></u-navbar>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
|
|
export default {
|
|
name: "member_rule",
|
|
data() {
|
|
return {
|
|
};
|
|
},
|
|
|
|
async onLoad() {
|
|
|
|
},
|
|
methods: {
|
|
|
|
}
|
|
};
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.content{
|
|
image{
|
|
margin-top: 10%;
|
|
width: 100%;
|
|
min-height: 255vh;
|
|
}
|
|
}
|
|
</style>
|