酒店桌布为微信小程序
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.

29 lines
416 B

9 months ago
  1. <template>
  2. <view class="page">
  3. <navbar title="我的租赁" leftClick @leftClick="$utils.navigateBack" />
  4. <commoditySelect/>
  5. </view>
  6. </template>
  7. <script>
  8. import commoditySelect from "../components/commodity/commoditySelect.vue"
  9. export default {
  10. components : {
  11. commoditySelect,
  12. },
  13. data() {
  14. return {
  15. }
  16. },
  17. methods: {
  18. }
  19. }
  20. </script>
  21. <style scoped lang="scss">
  22. .page{
  23. }
  24. </style>