You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

35 lines
735 B

<template>
<view class="content">
<image class="banner" mode="widthFix" src="../../static/member_01.jpg"></image>
<view class="joinBTn" @tap="joinUs"></view>
</view>
</template>
<script>
export default {
data() {
return {
}
},
methods: {
joinUs(){
uni.navigateTo({
url:"../member/member"
});
},
myOrder(){
uni.navigateTo({
url:"../../packages/packageOrder/pages/myOrder/myOrder"
});
}
}
}
</script>
<style>
</style>
<style lang="scss" scoped>
.banner{display:block;width:100%}
.joinBTn{width:690rpx;height:88rpx;color:#fff;margin:30rpx auto;border-radius:8px;font-size:28rpx;text-align: center;line-height: 88rpx;background: #FF578A;}
</style>