result.vue 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  1. <template>
  2. <view>
  3. <view class="head">
  4. <view class="tips">
  5. <image src="../../../static/sailun/successful.png" mode=""></image>
  6. <view>查询成功</view>
  7. </view>
  8. <view class="stripe"></view>
  9. <view class="roll">
  10. <view>232654561651</view>
  11. <view>
  12. <view></view>
  13. <view></view>
  14. <u-line color="#f4f4f4" border-style="dashed" :hair-line="true" length="94%" style="margin: 0 auto;padding-top: 30rpx;" />
  15. </view>
  16. <view class="Exhibition">
  17. <view><text>轮胎胎号</text><text>232654561651</text></view>
  18. <view><text>轮胎类型</text><text>扫码出库</text></view>
  19. <view><text>轮胎品牌</text><text>赛轮轮胎</text></view>
  20. <view><text>轮胎规格</text><text>12R22.5</text></view>
  21. <view><text>创建时间</text><text>2020-02-22 10:22:23</text></view>
  22. </view>
  23. </view>
  24. <u-button type="primary" shape="circle" class="button">继续查询</u-button>
  25. </view>
  26. </view>
  27. </template>
  28. <script>
  29. </script>
  30. <style lang="scss" scoped>
  31. .button {
  32. width: 90%;
  33. margin-top: 200rpx;
  34. }
  35. .head {
  36. width: 750rpx;
  37. height: 440rpx;
  38. background-color: #0095FF;
  39. .stripe {
  40. width: 650rpx;
  41. height: 30rpx;
  42. background: rgba(0, 0, 0, 0.2);
  43. border-radius: 12rpx;
  44. margin: 0 auto;
  45. margin-top: 40rpx;
  46. }
  47. .roll>view:nth-child(1) {
  48. font-size: 42rpx;
  49. font-weight: bold;
  50. color: #0192FD;
  51. text-align: center;
  52. margin-bottom: 50rpx;
  53. }
  54. .roll {
  55. width: 600rpx;
  56. height: auto;
  57. background: #FFFFFF;
  58. margin: 0 auto;
  59. margin-top: -15rpx;
  60. box-shadow: 0rpx 0rpx 20rpx 0rpx rgba(101, 176, 249, 0.3);
  61. border-bottom-left-radius: 10rpx;
  62. border-bottom-right-radius: 10rpx;
  63. padding-top: 50rpx;
  64. padding-bottom: 40rpx;
  65. view:nth-child(2) {
  66. width: 100%;
  67. height: auto;
  68. view:nth-child(1),
  69. {
  70. width: 50rpx;
  71. height: 50rpx;
  72. background-color: #F4F4F4;
  73. border-radius: 100%;
  74. float: left;
  75. margin-left: -30rpx;
  76. }
  77. view:nth-child(2) {
  78. width: 50rpx;
  79. height: 50rpx;
  80. background-color: #F4F4F4;
  81. border-radius: 100%;
  82. float: right;
  83. margin-right: -30rpx;
  84. }
  85. }
  86. }
  87. .tips {
  88. text-align: center;
  89. image {
  90. margin-top: 60rpx;
  91. width: 106rpx;
  92. height: 112rpx;
  93. }
  94. view {
  95. margin-top: 50rpx;
  96. color: #FFFFFF;
  97. font-size: 32rpx;
  98. font-weight: bold;
  99. }
  100. }
  101. }
  102. .Exhibition {
  103. width: 94%;
  104. margin: 0 auto;
  105. margin-top: 25rpx;
  106. }
  107. .Exhibition>view{
  108. margin-bottom: 10rpx;
  109. }
  110. .Exhibition>view>text:nth-child(2) {
  111. float: right;
  112. }
  113. </style>