orderInofrmation.vue 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228
  1. <template>
  2. <view class="detail" @click="$emit('toDetail',itemInfo)">
  3. <view class="title">
  4. <view class="title-left">
  5. <image class="header-img"
  6. src="https://tse4-mm.cn.bing.net/th/id/OIP-C.uMf5AX3a6yYpIhpEkyDxiQAAAA?rs=1&pid=ImgDetMain"
  7. mode=""></image>
  8. <text>张三</text>
  9. <image class="right-325" src="../../../static/mine/325.png" mode=""></image>
  10. </view>
  11. <text class="order-status" :style="itemInfo.status == 2?'color:#666':''">{{statusName}}</text>
  12. </view>
  13. <view class="commodity-information">
  14. <view class="commodity-1">
  15. <image class="commodity-img"
  16. src="https://img11.360buyimg.com/jdcms/s460x460_jfs/t1/156939/24/43697/126104/6619de23F69802006/8432635baed61875.jpg.webp"
  17. mode=""></image>
  18. <view class="">
  19. <view class="commodity-2">
  20. <view class="commodity-title">
  21. OATLY 噢麦力 醇香燕麦…
  22. </view>
  23. <view class="commodity-price">
  24. <text style="font-size: 20rpx;">¥</text>
  25. <text>133</text>.
  26. <text style="font-size: 20rpx;">22</text>
  27. </view>
  28. </view>
  29. <view class="commodity-3">
  30. <view class="specifications">
  31. 【醇香】250ml*3
  32. </view>
  33. <view style="font-size: 24rpx;">
  34. x1
  35. </view>
  36. </view>
  37. </view>
  38. </view>
  39. </view>
  40. <view class="price">
  41. <text>需付款</text>
  42. <text style="font-size: 20rpx;">¥</text>
  43. <text>133</text>.
  44. <text style="font-size: 20rpx;">22</text>
  45. </view>
  46. <view class="btn-list">
  47. <view class="more" v-show="itemInfo.status ==8">
  48. 更多
  49. </view>
  50. <button class="status-1" v-show="itemInfo.status == 1||itemInfo.status == 5">取消订单</button>
  51. <button class="status-2" v-show="itemInfo.status == 1">继续付款</button>
  52. <button class="status-1" v-show="itemInfo.status == 2||itemInfo.status==3">删除订单</button>
  53. <button class="status-2" v-show="itemInfo.status == 2">再次购买</button>
  54. <button class="status-1" v-show="itemInfo.status == 7||itemInfo.status ==8">查看物流</button>
  55. <button class="status-1" v-show="itemInfo.status == 3||itemInfo.status ==8">再来一单</button>
  56. <button class="status-2" v-show="itemInfo.status == 7">确认收货</button>
  57. <button class="status-2" v-show="itemInfo.status == 8" @click.stop="toEvaluate">评价</button>
  58. </view>
  59. </view>
  60. </template>
  61. <script>
  62. import textRight from '../../accountSecurity/component/textRight.vue'
  63. export default {
  64. components: {
  65. textRight
  66. },
  67. props:{
  68. itemInfo:{
  69. typeof:Object,
  70. default:{}
  71. }
  72. },
  73. computed:{
  74. statusName(){
  75. if(this.itemInfo.status == 1){
  76. return "待付款"
  77. }else if(this.itemInfo.status == 2){
  78. return "已取消"
  79. }else if(this.itemInfo.status == 3){
  80. return "退款成功"
  81. }else if(this.itemInfo.status == 4){
  82. return "退款中"
  83. }else if(this.itemInfo.status == 5){
  84. return "拼团中"
  85. }else if(this.itemInfo.status == 6){
  86. return "等待发货"
  87. }else if(this.itemInfo.status == 7){
  88. return "等待收货"
  89. }else if(this.itemInfo.status == 8){
  90. return "交易完成"
  91. }
  92. }
  93. },
  94. data() {
  95. return {
  96. }
  97. },
  98. methods:{
  99. toEvaluate(){
  100. uni.navigateTo({
  101. url:"/pageD/evaluate/evaluate"
  102. })
  103. }
  104. }
  105. }
  106. </script>
  107. <style scoped lang="scss">
  108. .detail {
  109. padding: 28rpx 20rpx;
  110. background-color: #fff;
  111. border-radius: 16rpx;
  112. margin-top: 28rpx;
  113. .title {
  114. display: flex;
  115. justify-content: space-between;
  116. .title-left {
  117. display: flex;
  118. font-size: 32rpx;
  119. align-items: center;
  120. .header-img {
  121. width: 36rpx;
  122. height: 36rpx;
  123. border-radius: 50%;
  124. margin-right: 20rpx;
  125. }
  126. .right-325 {
  127. width: 32rpx;
  128. height: 32rpx;
  129. }
  130. }
  131. .order-status {
  132. color: #f83224;
  133. font-size: 26rpx;
  134. }
  135. }
  136. .commodity-information {
  137. margin-top: 28rpx;
  138. .commodity-1 {
  139. display: flex;
  140. .commodity-img {
  141. width: 180rpx;
  142. height: 180rpx;
  143. margin-right: 20rpx;
  144. border-radius: 10rpx;
  145. }
  146. .commodity-2 {
  147. display: flex;
  148. justify-content: space-between;
  149. .commodity-title {
  150. width: 328rpx;
  151. overflow: hidden;
  152. white-space: nowrap;
  153. text-overflow: ellipsis;
  154. margin-right: 38rpx;
  155. }
  156. }
  157. .commodity-3{
  158. display: flex;
  159. justify-content: space-between;
  160. margin-top: 20rpx;
  161. color: #777;
  162. .specifications{
  163. font-size: 28rpx;
  164. color: #777;
  165. }
  166. }
  167. }
  168. }
  169. .price{
  170. display: flex;
  171. justify-content: flex-end;
  172. font-size: 28rpx;
  173. align-items: flex-end;
  174. }
  175. .btn-list{
  176. display: flex;
  177. justify-content: flex-end;
  178. margin-top: 34rpx;
  179. .more{
  180. color: #777;
  181. font-size: 28rpx;
  182. line-height: 68rpx;
  183. margin-right: 20rpx;
  184. }
  185. .status-1{
  186. background-color: #fff;
  187. border-radius: 34rpx;
  188. margin: 0;
  189. padding: 0;
  190. font-size: 28rpx;
  191. color: #222;
  192. width: 168rpx;
  193. height: 68rpx;
  194. line-height: 68rpx;
  195. margin-left: 20rpx;
  196. border: 2rpx solid #979797;
  197. }
  198. .status-2{
  199. background-color: #ffffff;
  200. border-radius: 34rpx;
  201. margin: 0;
  202. padding: 0;
  203. font-size: 28rpx;
  204. color: #f83224;
  205. width: 168rpx;
  206. height: 68rpx;
  207. line-height: 68rpx;
  208. margin-left: 20rpx;
  209. border: 2rpx solid #f83224;
  210. }
  211. }
  212. }
  213. </style>