index_details_mall.vue 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341
  1. <template>
  2. <view class="orderGoods">
  3. <view class='total' v-if="is_behalf"><text>
  4. {{ $t(`代付金额`) }}:
  5. <text class="pay-price">¥{{ pay_price }}</text>
  6. </text>
  7. </view>
  8. <view class='total' v-else-if="!split && !is_behalf">{{ $t(`商品信息`) }}</view>
  9. <view class='total' v-else-if="split">
  10. <text>{{ $t(`订单包裹`) }} {{ index + 1 }}</text>
  11. <view class="rig-btn" v-if="status_type === -1">
  12. <view class="refund">{{ $t(`申请退款中`) }}</view>
  13. </view>
  14. <view class="rig-btn" v-else-if="status_type === -2">
  15. <view class="refund">{{ $t(`已退款`) }}</view>
  16. </view>
  17. <view class="rig-btn" v-else-if="status_type === 4">
  18. <view class="done">{{ $t(`已完成`) }}</view>
  19. </view>
  20. </view>
  21. <view class='goodWrapper'>
  22. <view class='' v-for="(item, index) in cartInfo" :key="index" @click="jumpCon(item.id)">
  23. <view class="item acea-row row-between-wrapper">
  24. <view class='pictrue'>
  25. <image :src='item.goodsImg'></image>
  26. </view>
  27. <view class='text'>
  28. <view class='acea-row row-between-wrapper'>
  29. <view class='name line1'>{{ item.goodsName }}</view>
  30. <!-- <view class='num'>x {{item.totalSales}}</view> -->
  31. </view>
  32. <view class='attr line1'>{{ item.goodsSpecNames }}
  33. </view>
  34. <view class='money font-color pic' v-if="item.salePrice">
  35. <text :class="{ gray: !item.isSale }">
  36. {{ $t(`¥`) }}{{ item.salePrice - 0 }}
  37. </text>
  38. </view>
  39. </view>
  40. </view>
  41. <!-- <view class="botton-btn">
  42. <view class='logistics' v-if="item.is_reply==0 && evaluate==3 && pid != -1 && isShow"
  43. @click.stop="evaluateTap(item.unique,orderId)">
  44. {{$t(`评价`)}}</view>
  45. <view class='logistics'
  46. v-if="paid === 1 && refund_status === 0 && item.refund_num !=item.cart_num && !is_confirm && isShow"
  47. @click.stop="openSubcribe(item)">
  48. {{$t(`申请退款`)}}</view>
  49. <view class="rig-btn" v-if="status_type === 2 && index === cartInfo.length - 1 || !split">
  50. <view v-if="delivery_type === 'express'" class="logistics" @click.stop="logistics(orderId)">{{$t(`查看物流`)}}
  51. </view>
  52. <view class="logistics sure" v-if="status_type === 2" @click.stop="confirmOrder(orderId)">{{$t(`确认收货`)}}
  53. </view>
  54. </view>
  55. </view> -->
  56. </view>
  57. </view>
  58. </view>
  59. </template>
  60. <script>
  61. export default {
  62. props: {
  63. // 订单状态
  64. statusType: {
  65. type: Number,
  66. default: 0,
  67. },
  68. evaluate: {
  69. type: Number,
  70. default: 0,
  71. },
  72. oid: {
  73. type: Number,
  74. default: 0,
  75. },
  76. // 1已支付 0未支付
  77. paid: {
  78. type: Number,
  79. default: 0,
  80. },
  81. cartInfo: {
  82. type: Array,
  83. default: function () {
  84. return [];
  85. }
  86. },
  87. orderId: {
  88. type: String,
  89. default: '',
  90. },
  91. shipping_type: {
  92. type: Number,
  93. default: -1,
  94. },
  95. delivery_type: {
  96. type: String,
  97. default: '',
  98. },
  99. pay_price: {
  100. type: String,
  101. default: '',
  102. },
  103. jump: {
  104. type: Boolean,
  105. default: false,
  106. },
  107. is_confirm: {
  108. type: Boolean,
  109. default: false,
  110. },
  111. // is_behalf 是否是代付列表
  112. is_behalf: {
  113. type: Boolean,
  114. default: false,
  115. },
  116. split: {
  117. type: Boolean,
  118. default: false,
  119. },
  120. jumpDetail: {
  121. type: Boolean,
  122. default: false,
  123. },
  124. index: {
  125. type: Number,
  126. default: 0,
  127. },
  128. pid: {
  129. type: Number,
  130. default: 0,
  131. },
  132. refund_status: {
  133. type: Number,
  134. default: 0,
  135. },
  136. status_type: {
  137. type: Number,
  138. default: 0,
  139. },
  140. isShow: {
  141. type: Boolean,
  142. default: true,
  143. },
  144. },
  145. data() {
  146. return {
  147. totalNmu: 0,
  148. operationModel: false,
  149. status: "",
  150. };
  151. },
  152. watch: {
  153. cartInfo: function (nVal, oVal) {
  154. console.log(nVal);
  155. let num = 0
  156. nVal.forEach((item, index) => {
  157. num += item.totalSales - 0
  158. })
  159. this.totalNmu = num
  160. }
  161. },
  162. mounted() {
  163. let num = 0
  164. this.$nextTick(() => {
  165. this.cartInfo.forEach((item, index) => {
  166. num += item.cart_num
  167. })
  168. console.log(num)
  169. this.$set(this, 'totalNmu', num)
  170. })
  171. },
  172. methods: {
  173. evaluateTap: function (unique, orderId) {
  174. uni.navigateTo({
  175. url: "/pages/goods/goods_comment_con/index?unique=" + unique + "&uni=" + orderId
  176. })
  177. },
  178. jumpCon(id) {
  179. if (this.jump) {
  180. uni.navigateTo({
  181. url: `/pages/goods_details/index?id=${id}`
  182. })
  183. } else if (this.jumpDetail) {
  184. uni.navigateTo({
  185. url: `/pages/goods/order_details/index?order_id=${this.orderId}`
  186. })
  187. }
  188. },
  189. logistics(order_id) {
  190. uni.navigateTo({
  191. url: '/pages/goods/goods_logistics/index?orderId=' + order_id
  192. })
  193. },
  194. confirmOrder(orderId) {
  195. this.$emit('confirmOrder', orderId)
  196. },
  197. changeOperation() {
  198. this.operationModel = !this.operationModel
  199. },
  200. openSubcribe(item) {
  201. let cartList = [];
  202. cartList.push({
  203. cart_id: item.id,
  204. cart_num: item.surplus_refund_num
  205. })
  206. let obj = JSON.stringify(cartList);
  207. this.$emit('openSubcribe',
  208. `/pages/goods/goods_return/index?orderId=${this.orderId}&id=${this.oid}&cartIds=${obj}`)
  209. },
  210. }
  211. }
  212. </script>
  213. <style scoped lang="scss">
  214. .name {
  215. width: 100% !important;
  216. }
  217. .fontcolor {
  218. color: #e93323;
  219. }
  220. .orderGoods {
  221. background-color: #fff;
  222. }
  223. .orderGoods .total {
  224. display: flex;
  225. justify-content: space-between;
  226. align-items: center;
  227. width: 100%;
  228. // height: 86rpx;
  229. padding: 0 30rpx;
  230. border-bottom: 2rpx solid #f0f0f0;
  231. font-size: 30rpx;
  232. color: #282828;
  233. line-height: 86rpx;
  234. box-sizing: border-box;
  235. }
  236. .botton-btn {
  237. display: flex;
  238. align-items: right;
  239. justify-content: flex-end;
  240. padding: 0rpx 20rpx 20rpx 20rpx;
  241. }
  242. .rig-btn {
  243. display: flex;
  244. align-items: center;
  245. .refund {
  246. font-size: 26rpx;
  247. color: #e93323;
  248. }
  249. .done {
  250. font-size: 26rpx;
  251. color: #F19D2F;
  252. }
  253. }
  254. .logistics {
  255. // height: 46rpx;
  256. line-height: 30rpx;
  257. color: #666666;
  258. font-size: 20rpx;
  259. border: 1px solid #CCCCCC;
  260. border-radius: 30rpx;
  261. padding: 8rpx 22rpx;
  262. margin-left: 10rpx;
  263. }
  264. .sure {
  265. color: #e93323;
  266. border: 1px solid #e93323;
  267. }
  268. .more-operation {
  269. display: flex;
  270. justify-content: center;
  271. align-items: center;
  272. padding: 10rpx 0;
  273. color: #bbb;
  274. }
  275. .b-top {
  276. margin-left: 30rpx;
  277. margin-right: 30rpx;
  278. border-top: 1px solid #f0f0f0
  279. }
  280. .fade-enter-active,
  281. .fade-leave-active {
  282. transition: all 0.1s;
  283. }
  284. .fade-enter,
  285. .fade-leave-to
  286. /* .fade-leave-active below version 2.1.8 */
  287. {
  288. opacity: 0;
  289. transform: translateY(-10px);
  290. }
  291. .op {
  292. opacity: 0.5;
  293. }
  294. .gray {
  295. filter: grayscale(100%);
  296. filter: gray;
  297. }
  298. .pic {
  299. display: flex;
  300. justify-content: space-between;
  301. }
  302. .valid {
  303. margin-left: 20rpx;
  304. font-size: 24rpx;
  305. }
  306. .pay-price {
  307. color: #E93323;
  308. }
  309. .refund {
  310. text-align: right;
  311. font-size: 26rpx;
  312. color: var(--view-theme);
  313. }
  314. </style>