applicationInformation.vue 2.0 KB

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