detailCard.vue 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268
  1. <template>
  2. <view class="card" @click="$emit('toDetail', itemInfo)">
  3. <view class="user-name">
  4. <view class="name">
  5. <image class="header-img" :src="itemInfo.member.avatar" mode=""></image>
  6. <text>{{ itemInfo.member.nickname }}</text>
  7. </view>
  8. <text
  9. class="order-status"
  10. :style="
  11. this.itemInfo.status == '0' || this.itemInfo.status == '1'
  12. ? 'color:#444'
  13. : ''
  14. "
  15. >{{ deliveryStatus }}</text
  16. >
  17. </view>
  18. <view class="order-detail">
  19. <view class="detail">
  20. <image class="order-img" :src="itemInfo.goods.image" mode=""></image>
  21. <view class="detail-right">
  22. <view class="title-price">
  23. <view class="title"> {{ itemInfo.goods.name_cn }}</view>
  24. <view class="price">
  25. <text style="font-size: 20rpx">¥</text>
  26. <text>{{ itemInfo.goods.price.split(".")[0] }}</text
  27. >.
  28. <text style="font-size: 20rpx">{{
  29. itemInfo.goods.price.split(".")[1]
  30. }}</text>
  31. </view>
  32. </view>
  33. <view class="specifications">
  34. <view class="title"> {{ itemInfo.goods.sku_item[0].item }} </view>
  35. <text>x1</text>
  36. </view>
  37. </view>
  38. </view>
  39. <view class="price-detail">
  40. <text style="color: #222; font-size: 24rpx">{{
  41. "共1件商品" + "&nbsp;"
  42. }}</text>
  43. <text style="font-size: 28rpx">买家实付</text>
  44. <view class="price">
  45. <text style="font-size: 20rpx">¥</text>
  46. <text>{{
  47. itemInfo.order_goods.total_amount.toFixed(2).split(".")[0]
  48. }}</text
  49. >.
  50. <text style="font-size: 20rpx">{{
  51. itemInfo.order_goods.total_amount.toFixed(2).split(".")[1]
  52. }}</text>
  53. </view>
  54. </view>
  55. </view>
  56. <view class="btn-list">
  57. <button
  58. disabled
  59. class="btn-2"
  60. :disabled="itemInfo.status == 3"
  61. :style="itemInfo.status == 3 ? 'opacity: 0.5' : ''"
  62. v-if="itemInfo.status == 0 || itemInfo.status == 3"
  63. @click.stop="$emit('platformIntervene', itemInfo)"
  64. >
  65. 平台介入
  66. </button>
  67. <button
  68. class="btn-1"
  69. v-if="itemInfo.status == 0 || itemInfo.status == 3"
  70. @click.stop="$emit('refuseRefund', itemInfo)"
  71. >
  72. 拒绝申请
  73. </button>
  74. <button
  75. class="btn-3"
  76. v-if="itemInfo.status == 0 || itemInfo.status == 3"
  77. @click.stop="$emit('agreeRefund', itemInfo)"
  78. >
  79. 同意退款
  80. </button>
  81. <button
  82. class="btn-2"
  83. v-if="itemInfo.status == 1"
  84. @click.stop="$emit('openPop', itemInfo)"
  85. >
  86. 删除
  87. </button>
  88. <button class="btn-2" v-if="itemInfo.status == 1">查看详情</button>
  89. </view>
  90. </view>
  91. </template>
  92. <script>
  93. export default {
  94. props: {
  95. itemInfo: {
  96. typeof: Object,
  97. default: {},
  98. },
  99. },
  100. computed: {
  101. model() {
  102. if (this.itemInfo.status == 0) {
  103. return "filter: blur(5px);";
  104. }
  105. },
  106. deliveryStatus() {
  107. if (this.itemInfo.status == "0") {
  108. return "待退款";
  109. } else if (this.itemInfo.status == "3") {
  110. return "平台介入";
  111. } else if (this.itemInfo.status == "2") {
  112. return "拒绝退款";
  113. } else if (this.itemInfo.status == "1") {
  114. return "已退款";
  115. }
  116. },
  117. },
  118. data() {
  119. return {};
  120. },
  121. };
  122. </script>
  123. <style scoped lang="scss">
  124. .card {
  125. background-color: #fff;
  126. border-radius: 16rpx;
  127. padding: 0 20rpx;
  128. padding-bottom: 20rpx;
  129. margin-bottom: 20rpx;
  130. .user-name {
  131. display: flex;
  132. justify-content: space-between;
  133. align-items: center;
  134. height: 84rpx;
  135. border-bottom: 2rpx solid rgba(151, 151, 151, 0.2);
  136. .name {
  137. display: flex;
  138. align-items: center;
  139. font-size: 24rpx;
  140. color: #333;
  141. .header-img {
  142. width: 40rpx;
  143. height: 40rpx;
  144. border-radius: 50%;
  145. margin-right: 12rpx;
  146. }
  147. }
  148. .order-status {
  149. font-size: 24rpx;
  150. color: #f83224;
  151. }
  152. }
  153. .order-detail {
  154. margin-top: 22rpx;
  155. position: relative;
  156. .detail {
  157. display: flex;
  158. .order-img {
  159. width: 180rpx;
  160. height: 180rpx;
  161. border-radius: 10rpx;
  162. margin-right: 20rpx;
  163. }
  164. .detail-right {
  165. width: 70%;
  166. .title-price {
  167. display: flex;
  168. font-size: 28rpx;
  169. justify-content: space-between;
  170. align-items: center;
  171. .title {
  172. width: 330rpx;
  173. overflow: hidden;
  174. white-space: nowrap;
  175. text-overflow: ellipsis;
  176. }
  177. }
  178. .specifications {
  179. display: flex;
  180. justify-content: space-between;
  181. align-items: center;
  182. font-size: 28rpx;
  183. color: #777;
  184. margin-top: 10rpx;
  185. .title {
  186. width: 330rpx;
  187. overflow: hidden;
  188. white-space: nowrap;
  189. text-overflow: ellipsis;
  190. }
  191. }
  192. }
  193. }
  194. }
  195. .price-detail {
  196. display: flex;
  197. justify-content: flex-end;
  198. align-items: flex-end;
  199. margin-top: 20rpx;
  200. .price {
  201. font-weight: 600;
  202. }
  203. }
  204. .remarks {
  205. display: flex;
  206. font-size: 28rpx;
  207. background-color: #f4f4f4;
  208. border-radius: 10rpx;
  209. padding: 14rpx 20rpx;
  210. margin-top: 20rpx;
  211. }
  212. .btn-list {
  213. display: flex;
  214. justify-content: flex-end;
  215. margin-top: 30rpx;
  216. .btn-1 {
  217. font-size: 28rpx;
  218. color: #f83224;
  219. border: 2rpx solid #f83224;
  220. background-color: #fff;
  221. margin: 0;
  222. border-radius: 34rpx;
  223. min-width: 162rpx;
  224. margin-left: 20rpx;
  225. }
  226. .btn-2 {
  227. font-size: 28rpx;
  228. color: #222;
  229. border: 2rpx solid #979797;
  230. background-color: #fff;
  231. margin: 0;
  232. border-radius: 34rpx;
  233. min-width: 162rpx;
  234. margin-left: 20rpx;
  235. }
  236. .btn-3 {
  237. font-size: 28rpx;
  238. color: #fff;
  239. background-color: #f83224;
  240. margin: 0;
  241. border-radius: 34rpx;
  242. min-width: 162rpx;
  243. margin-left: 20rpx;
  244. }
  245. }
  246. }
  247. </style>