authority.vue 526 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <template>
  2. <view style="text-align:center; padding-top:100rpx">
  3. <image src="../../static/chart3-2.png" style="width:100rpx;height:100rpx"></image>
  4. <br>
  5. <br>
  6. <view>该用户权限尚未开通,请联系管理员!</view>
  7. </view>
  8. </template>
  9. <script>
  10. export default {
  11. data() {
  12. return {
  13. }
  14. },
  15. mounted(){
  16. document.querySelector('.uni-page-head-hd').style.display = 'none'
  17. },
  18. computed: {
  19. },
  20. methods: {
  21. }
  22. }
  23. </script>
  24. <style>
  25. </style>