applicationInformation.vue 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. <template>
  2. <view class="application-card">
  3. <view class="title">
  4. 申请信息
  5. </view>
  6. <view class="_label-1">
  7. <text>是否收货</text>
  8. <text class="result">未收货</text>
  9. </view>
  10. <view class="_label-1">
  11. <text>售后说明</text>
  12. <text class="result">商品未按照规定时间发货,不需要了</text>
  13. </view>
  14. <view class="photo">
  15. <text>图片凭证</text>
  16. <view class="photo-list">
  17. <view class="img-1">
  18. </view>
  19. <view class="img-1">
  20. </view>
  21. <view class="img-1">
  22. </view>
  23. </view>
  24. </view>
  25. </view>
  26. </template>
  27. <script>
  28. export default{
  29. data(){
  30. return{
  31. }
  32. }
  33. }
  34. </script>
  35. <style scoped lang="scss">
  36. .application-card{
  37. padding: 28rpx 20rpx;
  38. background-color: #fff;
  39. border-radius: 16rpx;
  40. margin-top: 20rpx;
  41. margin-bottom: 200rpx;
  42. .title{
  43. font-size: 30rpx;
  44. font-weight: 600;
  45. color: #333;
  46. }
  47. ._label-1{
  48. display: flex;
  49. justify-content: space-between;
  50. font-size: 28rpx;
  51. color: #232323;
  52. margin: 20rpx 0;
  53. .result{
  54. color: #555;
  55. }
  56. }
  57. .photo{
  58. font-size: 28rpx;
  59. color: #232323;
  60. display: flex;
  61. justify-content: space-between;
  62. .photo-list{
  63. display: flex;
  64. justify-content: space-between;
  65. .img-1{
  66. width: 156rpx;
  67. height: 156rpx;
  68. border-radius: 10rpx;
  69. background-color: #D4D4D4;
  70. margin-left: 16rpx;
  71. }
  72. }
  73. }
  74. }
  75. </style>