correction.vue 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. <template>
  2. <view class="content">
  3. <homenav :iStatusBarHeight="iStatusBarHeight" :title="'纠错'"></homenav>
  4. <view class="box">
  5. <view class="line">
  6. <view class="lineTitle">纠错类型</view>
  7. <view class="lineCont">VIN解析纠错</view>
  8. </view>
  9. <view class="line">
  10. <view class="lineTitle">VIN</view>
  11. <view class="lineCont">VIN222222222222</view>
  12. </view>
  13. <view class="line">
  14. <view class="lineTitle">车型</view>
  15. <view class="lineCont">奥迪奥迪奥迪奥迪奥迪奥迪奥迪奥迪CCCC奥迪奥迪奥迪奥迪奥迪奥迪奥迪奥迪1019</view>
  16. </view>
  17. <view class="line">
  18. <view class="lineTitle">错误说明</view>
  19. <view class="lineCont">
  20. <textarea class="lineConttextarea" placeholder="请输入" name="" id=""></textarea>
  21. </view>
  22. </view>
  23. <view class="line" style="border: none;">
  24. <view class="lineTitle">上传图片</view>
  25. <view class="lineCont lineImgBox">
  26. <image class="lineImg" src="/static/img/noimg.png" mode=""></image>
  27. <image class="lineImg" src="/static/img/scimg.png" mode=""></image>
  28. </view>
  29. </view>
  30. <view class="btnBox">
  31. <view class="btn">提交</view>
  32. </view>
  33. </view>
  34. </view>
  35. </template>
  36. <script>
  37. import nodata from '../../components/nodata/nodata.vue'
  38. import homenav from "../../components/homenav/nav.vue"
  39. export default {
  40. components: {
  41. nodata,homenav
  42. },
  43. data() {
  44. return {
  45. iStatusBarHeight:'',
  46. optdata:'',
  47. }
  48. },
  49. onLoad(opt) {
  50. console.log(opt)
  51. this.iStatusBarHeight = uni.getSystemInfoSync().statusBarHeight;
  52. this.optdata=opt;
  53. },
  54. methods: {
  55. }
  56. }
  57. </script>
  58. <style scoped>
  59. .jtImg{
  60. width: 26rpx;height: 26rpx;
  61. }
  62. .line{
  63. padding: 20rpx 24rpx;
  64. border-bottom: 1px solid #eaeaea;
  65. display: flex;font-size: 28rpx;
  66. color: #333;
  67. }
  68. .lineTitle{
  69. width: 150rpx;
  70. }
  71. .lineCont{
  72. color: #666;
  73. width: 550rpx;
  74. }
  75. .lineConttextarea{
  76. height: 180rpx;width: 520rpx;
  77. border: 1px solid #eaeaea;
  78. padding: 16rpx;
  79. }
  80. .lineImg{
  81. width: 160rpx;
  82. height: 160rpx;
  83. margin-right: 20rpx;
  84. }
  85. .btnBox{
  86. padding-top: 200rpx;
  87. display: flex;justify-content: center;
  88. }
  89. .btn{
  90. width: 600rpx;
  91. height: 80rpx;
  92. text-align: center;
  93. line-height: 80rpx;
  94. color: #fff;
  95. font-size: 32rpx;
  96. background: #FF4F00;
  97. border-radius: 16rpx;
  98. }
  99. </style>