兼兼街租房小程序
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.

27 lines
282 B

  1. <template>
  2. <view>
  3. 这是房子详情
  4. </view>
  5. </template>
  6. <script>
  7. export default {
  8. data() {
  9. return {
  10. id: ''
  11. }
  12. },
  13. onLoad(options) {
  14. this.id = options.id;
  15. },
  16. methods: {
  17. getHomeDetails(id){
  18. console.log(id);
  19. },
  20. }
  21. }
  22. </script>
  23. <style>
  24. </style>