select-popup.vue 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152
  1. <template>
  2. <su-popup :show="show" showClose round="10" backgroundColor="#eee" @close="emits('close')">
  3. <view class="select-popup">
  4. <view class="title">
  5. <span>{{ mode == 'goods' ? '我的浏览' : '我的订单' }}</span>
  6. </view>
  7. <scroll-view
  8. class="scroll-box"
  9. scroll-y="true"
  10. :scroll-with-animation="true"
  11. :show-scrollbar="false"
  12. @scrolltolower="loadmore"
  13. >
  14. <view
  15. class="item"
  16. v-for="item in state.pagination.data"
  17. :key="item"
  18. @tap="emits('select', { type: mode, data: item })"
  19. >
  20. <template v-if="mode == 'goods'">
  21. <GoodsItem :goodsData="item.goods" />
  22. </template>
  23. <template v-if="mode == 'order'">
  24. <OrderItem :orderData="item" />
  25. </template>
  26. </view>
  27. <uni-load-more :status="state.loadStatus" :content-text="{ contentdown: '上拉加载更多' }" />
  28. </scroll-view>
  29. </view>
  30. </su-popup>
  31. </template>
  32. <script setup>
  33. import { reactive, watch } from 'vue';
  34. import sheep from '@/sheep';
  35. import _ from 'lodash';
  36. import GoodsItem from './goods.vue';
  37. import OrderItem from './order.vue';
  38. import OrderApi from '@/sheep/api/trade/order';
  39. import SpuHistoryApi from '@/sheep/api/product/history';
  40. const emits = defineEmits(['select', 'close']);
  41. const props = defineProps({
  42. mode: {
  43. type: String,
  44. default: 'goods',
  45. },
  46. show: {
  47. type: Boolean,
  48. default: false,
  49. },
  50. });
  51. watch(
  52. () => props.mode,
  53. () => {
  54. state.pagination.data = [];
  55. if (props.mode) {
  56. getList(state.pagination.page);
  57. }
  58. },
  59. );
  60. const state = reactive({
  61. loadStatus: '',
  62. pagination: {
  63. data: [],
  64. current_page: 1,
  65. total: 1,
  66. last_page: 1,
  67. },
  68. });
  69. async function getList(page, list_rows = 5) {
  70. state.loadStatus = 'loading';
  71. const res =
  72. props.mode == 'goods'
  73. ? await SpuHistoryApi.getBrowseHistoryPage({
  74. page,
  75. list_rows,
  76. })
  77. : await OrderApi.getOrderPage({
  78. page,
  79. list_rows,
  80. });
  81. let orderList = _.concat(state.pagination.data, res.data.data);
  82. state.pagination = {
  83. ...res.data,
  84. data: orderList,
  85. };
  86. if (state.pagination.current_page < state.pagination.last_page) {
  87. state.loadStatus = 'more';
  88. } else {
  89. state.loadStatus = 'noMore';
  90. }
  91. }
  92. function loadmore() {
  93. if (state.loadStatus !== 'noMore') {
  94. getList(state.pagination.current_page + 1);
  95. }
  96. }
  97. </script>
  98. <style lang="scss" scoped>
  99. .select-popup {
  100. max-height: 600rpx;
  101. .title {
  102. height: 100rpx;
  103. line-height: 100rpx;
  104. padding: 0 26rpx;
  105. background: #fff;
  106. border-radius: 20rpx 20rpx 0 0;
  107. span {
  108. font-size: 32rpx;
  109. position: relative;
  110. &::after {
  111. content: '';
  112. display: block;
  113. width: 100%;
  114. height: 2px;
  115. z-index: 1;
  116. position: absolute;
  117. left: 0;
  118. bottom: -15px;
  119. background: var(--ui-BG-Main);
  120. pointer-events: none;
  121. }
  122. }
  123. }
  124. .scroll-box {
  125. height: 500rpx;
  126. }
  127. .item {
  128. background: #fff;
  129. margin: 26rpx 26rpx 0;
  130. border-radius: 20rpx;
  131. :deep() {
  132. .image {
  133. width: 140rpx;
  134. height: 140rpx;
  135. }
  136. }
  137. }
  138. }
  139. </style>