commoNar.vue 922 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. <template>
  2. <view style="width: 95%;margin: 12upx auto;">
  3. <view class="typeItem">
  4. 全部
  5. </view>
  6. <view class="typeItem">
  7. 上新
  8. <van-icon size="20px" name="arrow-up" />
  9. <van-icon size="20px" name="arrow-down" />
  10. </view>
  11. <view class="typeItem">
  12. 价格
  13. <van-icon size="20px" name="arrow-up" />
  14. <van-icon size="20px" name="arrow-down" />
  15. </view>
  16. <view class="typeItem">
  17. <van-dropdown-menu>
  18. <van-dropdown-item title="分类" >
  19. <!-- <van-cell title="全部"></van-cell>
  20. <van-cell title="包邮"></van-cell>
  21. <van-cell title="自费"></van-cell> -->
  22. </van-dropdown-item>
  23. </van-dropdown-menu>
  24. </view>
  25. </view>
  26. </template>
  27. <script>
  28. export default {
  29. props:{
  30. menu:{
  31. type: Array
  32. }
  33. },
  34. }
  35. </script>
  36. <style>
  37. .typeItem {
  38. width: 25%;
  39. display: inline-block;
  40. text-align: center;
  41. }
  42. </style>