applicationInformation.vue 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. <template>
  2. <view class="application-card">
  3. <view class="title"> 申请信息 </view>
  4. <view class="_label-1">
  5. <text>是否收货</text>
  6. <text class="result">{{
  7. orderInformation.is_received == 0 ? "已收货" : "未收货"
  8. }}</text>
  9. </view>
  10. <view class="_label-1">
  11. <text>售后说明</text>
  12. <text class="result">{{
  13. orderInformation.goods[0].refund.refund_reason
  14. }}</text>
  15. </view>
  16. <view class="photo">
  17. <text>图片凭证</text>
  18. <view class="photo-list">
  19. <image
  20. class="img-1"
  21. v-for="(item, index) in refuseImg"
  22. :key="index"
  23. :src="item"
  24. mode="scaleToFill"
  25. />
  26. </view>
  27. </view>
  28. </view>
  29. </template>
  30. <script>
  31. export default {
  32. props: {
  33. orderInformation: {
  34. typeof: Object,
  35. default: () => {
  36. return {};
  37. },
  38. },
  39. refuseImg: {
  40. typeof: Array,
  41. default: () => {
  42. return [];
  43. },
  44. },
  45. },
  46. data() {
  47. return {};
  48. },
  49. };
  50. </script>
  51. <style scoped lang="scss">
  52. .application-card {
  53. padding: 28rpx 20rpx;
  54. background-color: #fff;
  55. border-radius: 16rpx;
  56. margin-top: 20rpx;
  57. margin-bottom: 200rpx;
  58. .title {
  59. font-size: 30rpx;
  60. font-weight: 600;
  61. color: #333;
  62. }
  63. ._label-1 {
  64. display: flex;
  65. justify-content: space-between;
  66. font-size: 28rpx;
  67. color: #232323;
  68. margin: 20rpx 0;
  69. .result {
  70. color: #555;
  71. }
  72. }
  73. .photo {
  74. font-size: 28rpx;
  75. color: #232323;
  76. display: flex;
  77. justify-content: space-between;
  78. .photo-list {
  79. display: flex;
  80. justify-content: flex-end;
  81. flex-wrap: wrap;
  82. width: 80%;
  83. .img-1 {
  84. width: 156rpx;
  85. height: 156rpx;
  86. border-radius: 10rpx;
  87. // background-color: #d4d4d4;
  88. margin-left: 16rpx;
  89. margin-bottom: 10rpx;
  90. }
  91. }
  92. }
  93. }
  94. </style>