detailCard.vue 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312
  1. <template>
  2. <view class="card" @click="$emit('toInformation', itemInfo)">
  3. <view class="user-name">
  4. <view class="name">
  5. <image class="header-img" :src="itemInfo.member.avatar" mode=""></image>
  6. <text>{{ itemInfo.nickname }}</text>
  7. </view>
  8. <!-- <text class="order-status">{{ deliveryStatus }}</text> -->
  9. <text class="order-status">{{ itemInfo.status_name }}</text>
  10. </view>
  11. <view
  12. class="order-detail"
  13. :style="model"
  14. v-for="item in itemInfo.order_goods"
  15. >
  16. <view class="detail">
  17. <image class="order-img" :src="item.sku_item.image" mode=""></image>
  18. <view class="detail-right">
  19. <view class="title-price">
  20. <view class="title" v-if="language == 'zh-CN'">
  21. {{ item.goods.name_cn }}</view
  22. >
  23. <view class="title" v-if="language == 'en-US'">
  24. {{ item.goods.name_en }}</view
  25. >
  26. <view class="title" v-if="language == 'es-ES'">
  27. {{ item.goods.name_es }}</view
  28. >
  29. <view class="title" v-if="language == 'it-IT'">
  30. {{ item.goods.name_ita }}</view
  31. >
  32. <view class="price" v-if="item.sku_item">
  33. <text style="font-size: 20rpx">¥</text>
  34. <text>{{ item.discount_price.split(".")[0] }}</text
  35. >.
  36. <text style="font-size: 20rpx">{{
  37. item.discount_price.split(".")[1]
  38. }}</text>
  39. </view>
  40. </view>
  41. <view class="specifications">
  42. <view class="title"> {{ item.sku_item.item }} </view>
  43. <text>x{{ item.goods_num }}</text>
  44. </view>
  45. </view>
  46. </view>
  47. <view class="model" v-if="itemInfo.simplify_status == 'unreview'"> </view>
  48. </view>
  49. <view
  50. style="color: #222; font-size: 24rpx; text-align: right"
  51. v-if="language != 'zh-CN'"
  52. >
  53. <text>{{ i18n.Atotalof + itemInfo.order_goods.length }}</text>
  54. <text>
  55. {{ i18n.piece + i18n.mineCommodity + "&nbsp;" }}
  56. </text>
  57. </view>
  58. <view class="price-detail">
  59. <view style="color: #222; font-size: 24rpx" v-if="language == 'zh-CN'">
  60. <text>{{ i18n.Atotalof + itemInfo.order_goods.length }}</text>
  61. <text>
  62. {{ i18n.piece + i18n.mineCommodity + "&nbsp;" }}
  63. </text>
  64. </view>
  65. <text style="font-size: 28rpx">{{ i18n.actualPayment }}</text>
  66. <view class="price">
  67. <text style="font-size: 20rpx">¥</text>
  68. <text>{{ itemInfo.amount.split(".")[0] }}</text
  69. >.
  70. <text style="font-size: 20rpx">{{
  71. itemInfo.amount.split(".")[1]
  72. }}</text>
  73. </view>
  74. </view>
  75. <view class="remarks" v-if="itemInfo.simplify_status == 'merdelivered'">
  76. <view style="margin-right: 30rpx; color: #222">
  77. {{ i18n.merchantRemarks }}
  78. </view>
  79. <view style="color: rgba(34, 34, 34, 0.6)"> {{ itemInfo.remark }} </view>
  80. </view>
  81. <view
  82. class="btn-list"
  83. v-if="
  84. itemInfo.simplify_status !== 'unreview' &&
  85. itemInfo.simplify_status != 'undelivered'
  86. "
  87. >
  88. <button
  89. class="btn-1"
  90. v-if="itemInfo.order_goods[0].delivery_status == 'unfill'"
  91. @click.stop="toBond"
  92. >
  93. {{ i18n.PayDeposit }}
  94. </button>
  95. <!-- <button class="btn-2" v-if="itemInfo.simplify_status == 'merdelivered'">
  96. 备注
  97. </button> -->
  98. <button
  99. class="btn-1"
  100. v-if="
  101. itemInfo.status != 'unfill' &&
  102. itemInfo.order_goods[0].delivery_status == 'merdelivered'
  103. "
  104. @click.stop="toGoods"
  105. >
  106. {{ i18n.sendOutGoods }}
  107. </button>
  108. <button class="btn-2" v-if="itemInfo.simplify_status == ' delivered'">
  109. {{ i18n.checkLogistics }}
  110. </button>
  111. </view>
  112. </view>
  113. </template>
  114. <script>
  115. export default {
  116. props: {
  117. itemInfo: {
  118. typeof: Object,
  119. default: {},
  120. },
  121. language: {
  122. typeof: String,
  123. default: "",
  124. },
  125. },
  126. computed: {
  127. model() {
  128. if (this.itemInfo.simplify_status == "unreview") {
  129. return "filter: blur(5px);";
  130. } else {
  131. return "";
  132. }
  133. },
  134. //根据状态 返回不同的字段
  135. deliveryStatus() {
  136. if (this.itemInfo.simplify_status == "unreview") {
  137. return "待审核";
  138. } else if (this.itemInfo.simplify_status == "unfill") {
  139. return "待缴纳保证金";
  140. } else if (this.itemInfo.simplify_status == "merdelivered") {
  141. return "待团长发货";
  142. } else if (this.itemInfo.simplify_status == "undelivered") {
  143. return "待总部发货";
  144. } else if (this.itemInfo.simplify_status == "delivered") {
  145. return "已发货";
  146. } else if (this.itemInfo.simplify_status == "domestic_delivered") {
  147. return "团长已发货";
  148. }
  149. },
  150. i18n() {
  151. return this.$t("index");
  152. },
  153. },
  154. data() {
  155. return {};
  156. },
  157. methods: {
  158. toBond() {
  159. //所有需要缴纳保证金的金额相加
  160. let goodsMoney = 0;
  161. this.itemInfo.order_goods.map((item) => {
  162. goodsMoney += Number(item.earnest_money);
  163. });
  164. //跳转支付
  165. uni.navigateTo({
  166. url: `/pageA/payorder?sum=${goodsMoney}&orderid=${this.itemInfo.id}&orderType=bond`,
  167. });
  168. },
  169. toGoods() {
  170. uni.navigateTo({
  171. url: `/pageD/deliverGoods/deliverGoods?id=${this.itemInfo.id}`,
  172. });
  173. },
  174. },
  175. };
  176. </script>
  177. <style scoped lang="scss">
  178. .card {
  179. background-color: #fff;
  180. border-radius: 16rpx;
  181. padding: 0 20rpx;
  182. padding-bottom: 20rpx;
  183. margin-bottom: 20rpx;
  184. .user-name {
  185. display: flex;
  186. justify-content: space-between;
  187. align-items: center;
  188. height: 84rpx;
  189. border-bottom: 2rpx solid rgba(151, 151, 151, 0.2);
  190. .name {
  191. display: flex;
  192. align-items: center;
  193. font-size: 24rpx;
  194. color: #333;
  195. .header-img {
  196. width: 40rpx;
  197. height: 40rpx;
  198. border-radius: 50%;
  199. margin-right: 12rpx;
  200. }
  201. }
  202. .order-status {
  203. font-size: 24rpx;
  204. color: #f83224;
  205. }
  206. }
  207. .order-detail {
  208. margin-top: 22rpx;
  209. position: relative;
  210. .detail {
  211. display: flex;
  212. .order-img {
  213. width: 180rpx;
  214. height: 180rpx;
  215. border-radius: 10rpx;
  216. margin-right: 20rpx;
  217. }
  218. .detail-right {
  219. width: 70%;
  220. .title-price {
  221. display: flex;
  222. font-size: 28rpx;
  223. justify-content: space-between;
  224. align-items: center;
  225. .title {
  226. width: 330rpx;
  227. overflow: hidden;
  228. white-space: nowrap;
  229. text-overflow: ellipsis;
  230. }
  231. }
  232. .specifications {
  233. display: flex;
  234. justify-content: space-between;
  235. align-items: center;
  236. font-size: 28rpx;
  237. color: #777;
  238. margin-top: 10rpx;
  239. .title {
  240. width: 330rpx;
  241. overflow: hidden;
  242. white-space: nowrap;
  243. text-overflow: ellipsis;
  244. }
  245. }
  246. }
  247. }
  248. }
  249. .price-detail {
  250. display: flex;
  251. justify-content: flex-end;
  252. align-items: flex-end;
  253. margin-top: 20rpx;
  254. .price {
  255. font-weight: 600;
  256. }
  257. }
  258. .remarks {
  259. display: flex;
  260. font-size: 28rpx;
  261. background-color: #f4f4f4;
  262. border-radius: 10rpx;
  263. padding: 14rpx 20rpx;
  264. margin-top: 20rpx;
  265. }
  266. .btn-list {
  267. display: flex;
  268. justify-content: flex-end;
  269. margin-top: 30rpx;
  270. .btn-1 {
  271. font-size: 28rpx;
  272. color: #f83224;
  273. border: 2rpx solid #f83224;
  274. background-color: #fff;
  275. margin: 0;
  276. border-radius: 34rpx;
  277. min-width: 162rpx;
  278. margin-left: 20rpx;
  279. }
  280. .btn-2 {
  281. font-size: 28rpx;
  282. color: #222;
  283. border: 2rpx solid #979797;
  284. background-color: #fff;
  285. margin: 0;
  286. border-radius: 34rpx;
  287. min-width: 162rpx;
  288. }
  289. }
  290. }
  291. </style>