result.vue 2.5 KB

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