瑶都万能墙
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.

52 lines
942 B

10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
  1. <template>
  2. <view class="page pageList">
  3. <navbar title="找车" leftClick @leftClick="$utils.navigateBack" />
  4. <view
  5. style="padding: 10rpx 30rpx;">
  6. <uv-search
  7. bgColor="#fff"
  8. @search="getData"
  9. @custom="getData"
  10. searchIconSize="30rpx"
  11. placeholder="请输入搜索关键字..."
  12. v-model="queryParams.title"></uv-search>
  13. </view>
  14. <view class="list">
  15. <cartItem
  16. :key="index"
  17. v-for="(item, index) in list"
  18. :item="item"
  19. @click="$utils.navigateTo('/pages_order/car/carListDetail?id=' + item.id)"
  20. />
  21. </view>
  22. </view>
  23. </template>
  24. <script>
  25. import mixinsList from '@/mixins/list.js'
  26. import cartItem from '../components/list/cart/cartItem.vue'
  27. export default {
  28. mixins: [mixinsList],
  29. components : {
  30. cartItem,
  31. },
  32. data() {
  33. return {
  34. mixinsListApi : 'getCatPage',
  35. }
  36. },
  37. methods: {
  38. }
  39. }
  40. </script>
  41. <style scoped lang="scss">
  42. .page{
  43. .list{
  44. padding: 0 20rpx;
  45. }
  46. }
  47. </style>