applicationInformation.vue 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  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. <view class="img-1"> </view>
  20. <view class="img-1"> </view>
  21. <view class="img-1"> </view>
  22. </view>
  23. </view>
  24. </view>
  25. </template>
  26. <script>
  27. export default {
  28. props: {
  29. orderInformation: {
  30. typeof: Object,
  31. default: () => {
  32. return {};
  33. },
  34. },
  35. },
  36. data() {
  37. return {};
  38. },
  39. };
  40. </script>
  41. <style scoped lang="scss">
  42. .application-card {
  43. padding: 28rpx 20rpx;
  44. background-color: #fff;
  45. border-radius: 16rpx;
  46. margin-top: 20rpx;
  47. margin-bottom: 200rpx;
  48. .title {
  49. font-size: 30rpx;
  50. font-weight: 600;
  51. color: #333;
  52. }
  53. ._label-1 {
  54. display: flex;
  55. justify-content: space-between;
  56. font-size: 28rpx;
  57. color: #232323;
  58. margin: 20rpx 0;
  59. .result {
  60. color: #555;
  61. }
  62. }
  63. .photo {
  64. font-size: 28rpx;
  65. color: #232323;
  66. display: flex;
  67. justify-content: space-between;
  68. .photo-list {
  69. display: flex;
  70. justify-content: space-between;
  71. .img-1 {
  72. width: 156rpx;
  73. height: 156rpx;
  74. border-radius: 10rpx;
  75. background-color: #d4d4d4;
  76. margin-left: 16rpx;
  77. }
  78. }
  79. }
  80. }
  81. </style>