123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- <template>
- <view class="noauthority-page">
- <image class="img" :src="globalImgUrls.img1" mode="widthFix"></image>
- <view>您暂无权限参加此活动</view>
- <view>若想参加可以申请开通哦</view>
- <view class="global-btn-yellow-change btn" @click="handleGoApply">立即申请</view>
- <view class="global-btn-yellow-plain btn">返回</view>
- </view>
- </template>
- <script>
- export default {
- name:"noAuthority",
- data () {
- return {
-
- }
- },
- onLoad(){
- },
- methods: {
- handleGoApply(){
- uni.navigateTo({
- url:"/pages-activity/applyTrial"
- })
- }
- }
- }
- </script>
- <style lang="scss">
- .noauthority-page{
- padding: 34rpx;
- text-align: center;
- font-size: $global-font-size-lg;
- .img{
- width: 100%;
- margin-bottom: 50rpx;
- }
- .btn{
- width: 380rpx;
- line-height: 70rpx;
- margin-left: auto;
- margin-right: auto;
- margin-top: 40rpx;
- }
- }
- </style>
|