index.vue 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159
  1. <script setup>
  2. import { placeholderPic } from "~/utils/util";
  3. import Banner from "~/components/Banner/index.vue";
  4. import { ref, onMounted } from "vue";
  5. import * as jifenApi from "~/api/jifen";
  6. import { useRouter } from "vue-router";
  7. const router = useRouter();
  8. //积分商城列表
  9. const jiList = ref([]);
  10. const total = ref(0);
  11. const __news__ = async () => {
  12. try {
  13. const { data } = await jifenApi.list({
  14. limit: 8,
  15. page: page.value,
  16. });
  17. jiList.value = data.list;
  18. total.value = data.total;
  19. } catch (error) {}
  20. };
  21. onMounted(__news__);
  22. const todetails = (id) => {
  23. router.push({
  24. path: "/store/pointshoping/:id",
  25. query: {
  26. id: id,
  27. },
  28. });
  29. };
  30. //第几页
  31. let page = ref(1);
  32. const handleCurrentChange = (val) => {
  33. page.value = val;
  34. __news__();
  35. };
  36. // let imgPath = placeholderPic(280, 280);
  37. const conversion = () => {
  38. router.push({
  39. name: "conversion",
  40. });
  41. };
  42. </script>
  43. <template>
  44. <div class="market-container">
  45. <Banner type="integral_shop" />
  46. <div class="market-btns flex-row flex-aic flex-jc-sb">
  47. <el-button size="large" type="primary">预约拍摄</el-button>
  48. <el-button size="large" type="primary">设备租赁</el-button>
  49. <el-button size="large" type="" @click="conversion">兑换记录</el-button>
  50. </div>
  51. <!-- main -->
  52. <div class="market-main">
  53. <template v-for="(item, idx) in jiList" :key="idx">
  54. <div class="market-itembox" @click="todetails(item.id)">
  55. <div class="imgshow">
  56. <img :src="item.image" alt="" style="width: 279px; height: 279px" />
  57. </div>
  58. <p class="market-itembox__desc ellipsis-two">
  59. {{ item.name }}
  60. </p>
  61. <div class="market-itembox__footer flex-row flex-aic flex-jc-sb">
  62. <div class="counts">
  63. <span>{{ item.price }}</span
  64. >积分
  65. </div>
  66. <div class="change">兑换</div>
  67. </div>
  68. </div>
  69. </template>
  70. </div>
  71. <div class="pagination-container">
  72. <el-pagination
  73. :page-size="8"
  74. @current-change="handleCurrentChange"
  75. background
  76. layout="prev, pager, next"
  77. :total="total"
  78. />
  79. </div>
  80. </div>
  81. </template>
  82. <style lang="scss" scoped>
  83. .market {
  84. // &-container {}
  85. &-btns {
  86. column-gap: 20px;
  87. .el-button {
  88. &:nth-child(-n + 2) {
  89. flex: 1;
  90. }
  91. }
  92. }
  93. &-main {
  94. display: flex;
  95. // grid-template-columns: repeat(4, auto);
  96. // gap: 20px;
  97. flex-wrap: wrap;
  98. padding: 30px 0;
  99. margin-bottom: 30px;
  100. column-gap: 16px;
  101. flex-wrap: wrap;
  102. // height: 255px;
  103. overflow: hidden;
  104. }
  105. &-itembox {
  106. background-color: #fff;
  107. border-radius: 6px;
  108. overflow: hidden;
  109. width: 280px;
  110. cursor: pointer;
  111. // .imgshow {}
  112. &__desc {
  113. font-size: 16px;
  114. padding: 0 10px;
  115. }
  116. &__footer {
  117. padding: 0 10px 20px;
  118. .counts {
  119. font-size: 14px;
  120. span {
  121. font-weight: 400;
  122. color: #00b0b0;
  123. font-size: 20px;
  124. }
  125. }
  126. .change {
  127. padding: 6px 12px;
  128. background: rgba(0, 176, 176, 0.4);
  129. border-radius: 24px;
  130. font-weight: 500;
  131. color: #00b0b0;
  132. cursor: pointer;
  133. }
  134. }
  135. }
  136. }
  137. </style>