租房小程序前端代码
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
682 B

6 months ago
  1. <template>
  2. <view>
  3. <view class="se-flex se-flex-v-c se-pt-40">
  4. <image class="se-w-500 se-h-400" src="@/static/image/82x.png" mode=""></image>
  5. <text class="se-c-33 se-fs-24">您还不是房东请先提交申请</text>
  6. </view>
  7. <view class="se-px-80 se-py-40 se-mt-50">
  8. <view class="se-c-white se-py-20 se-fs-26 se-bgc-orange se-br-40 se-ta-c" @click="onNavigator()">
  9. 立即申请
  10. </view>
  11. </view>
  12. </view>
  13. </template>
  14. <script>
  15. export default{
  16. data(){
  17. return{
  18. }
  19. },
  20. methods:{
  21. onNavigator(){
  22. uni.navigateTo({
  23. url:"/pages_subpack/realname/index"
  24. })
  25. }
  26. }
  27. }
  28. </script>
  29. <style>
  30. page{
  31. background-color: #f5f5f5;
  32. }
  33. </style>