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

31 lines
868 B

3 months ago
3 months ago
3 months ago
3 months ago
3 months ago
3 months ago
3 months ago
  1. <template>
  2. <view class="se-p-30">
  3. <view class="se-flex se-flex-v-c se-mt-120">
  4. <image class="se-a-130" src="../../static/image/47052.png" mode=""></image>
  5. <text class="se-fw-6 se-c-black se-mt-30">登录成功</text>
  6. </view>
  7. <view class="se-px-20 se-mt-100">
  8. <navigator :url="`/pages_subpack/house/index?type=`+type" class="se-flex se-mt-20 se-flex-ai-c se-flex-h-c se-c-white se-fs-28 se-py-20 se-px-250 se-br-30" style="background-color: #1EC77A;">
  9. 去发布
  10. </navigator>
  11. <navigator url="/pages/home/index" class="se-flex se-mt-40 se-flex-ai-c se-flex-h-c se-bgc-cancel se-b se-c-33 se-fs-28 se-py-20 se-px-250 se-br-30">
  12. 退出登录
  13. </navigator>
  14. </view>
  15. </view>
  16. </template>
  17. <script>
  18. export default{
  19. data(){
  20. return{
  21. type:""
  22. }
  23. },
  24. onLoad(options) {
  25. this.type = options.type
  26. }
  27. }
  28. </script>
  29. <style>
  30. </style>