addCarCK.vue 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188
  1. <template>
  2. <view class="box">
  3. <view class="title">选择车型</view>
  4. <view class="cont">
  5. <view class="line" @click="goCarModel">
  6. <view class="lineTxt">手动选择车型</view>
  7. <view class="lineRgiht">
  8. <view class="lineRtxt">请选择</view>
  9. <image src="../../static/img2/jt1.png" mode="" class="jtIcon"></image>
  10. </view>
  11. </view>
  12. <view class="line" @click="scVinIMg">
  13. <view class="lineTxt">扫描VIN码</view>
  14. <view class="lineRgiht">
  15. <image src="../../static/img2/sm.png" mode="" class="smIcon"></image>
  16. </view>
  17. </view>
  18. </view>
  19. </view>
  20. </template>
  21. <script>
  22. export default {
  23. components: {
  24. },
  25. data() {
  26. return {
  27. }
  28. },
  29. onLoad(opt) {
  30. },
  31. onShow() {
  32. },
  33. methods: {
  34. goCarModel(){
  35. uni.navigateTo({
  36. url:'../user/addCar/carModel'
  37. })
  38. },
  39. scVinIMg(){
  40. var that = this;
  41. uni.chooseImage({
  42. sourceType: ['album','camera'],
  43. count:1,
  44. success: (chooseImageRes) => {
  45. const tempFilePaths = chooseImageRes.tempFilePaths;
  46. that.file=tempFilePaths[0]
  47. uni.uploadFile({
  48. url: that.$request.baseUrl+'accompany/SuperCheckSheet/uploadFile', //仅为示例,非真实的接口地址
  49. filePath: tempFilePaths[0],
  50. name: 'file',
  51. formData: {
  52. 'user': 'test'
  53. },
  54. success: (uploadFileRes) => {
  55. console.log(JSON.parse(uploadFileRes.data).data );
  56. //that.imgArr=that.imgArr.concat(JSON.parse(uploadFileRes.data).data) ;
  57. that.vinImg=JSON.parse(uploadFileRes.data).data[0];
  58. that.vinScanner()
  59. }
  60. });
  61. /* that.$http('accompany/SuperCheckSheet/uploadFile', tempFilePaths[0], 'POST').then(res => {
  62. }) */
  63. }
  64. });
  65. },
  66. vinScanner(){
  67. uni.showLoading({
  68. title:'正在识别中'
  69. });
  70. /*
  71. this.$http('miniAppMyBMemberCar/vinScanner', {
  72. photo:this.file,
  73. },'POST').then(res => {
  74. uni.hideLoading();
  75. //this.carGroupList=res.data.carGroupList
  76. }) */
  77. var that=this;
  78. uni.uploadFile({
  79. url: that.$request.baseUrl+'miniAppMyBMemberCar/vinScanner',
  80. filePath: that.file,
  81. name: 'photo',
  82. formData: {
  83. 'user': 'test'
  84. },
  85. success: (uploadFileRes) => {
  86. uni.hideLoading();
  87. console.log(JSON.parse(uploadFileRes.data) );
  88. if(JSON.parse(uploadFileRes.data).code==0){
  89. that.vin = JSON.parse(uploadFileRes.data).data;
  90. that.queryCarModelGroupByVin()
  91. }else{
  92. uni.showToast({
  93. title: JSON.parse(uploadFileRes.data).msg,
  94. icon: 'none',
  95. duration: 2000,
  96. });
  97. }
  98. }
  99. });
  100. },
  101. queryCarModelGroupByVin(){
  102. uni.showLoading({ });
  103. this.$http('miniAppMyBMemberCar/queryCarModelGroupByVin', {
  104. vin:this.vin,
  105. },'GET').then(res => {
  106. uni.hideLoading();
  107. if(res.code!=0){
  108. uni.showToast({
  109. title: res.msg,
  110. icon: 'none',
  111. duration: 2000,
  112. });
  113. }else{
  114. /* this.vinboxtwoShow=true
  115. this.vinSbList=res.data;
  116. this.vincarModelInfo=this.vinSbList[0] */
  117. }
  118. })
  119. },
  120. },
  121. }
  122. </script>
  123. <style scoped>
  124. .box {
  125. min-height: 100vh;
  126. background: #F4F5F7;
  127. }
  128. .title{
  129. font-weight: 400;
  130. font-size: 22rpx;
  131. color: #000000;
  132. padding-top: 40rpx;
  133. padding-left: 24rpx;
  134. padding-bottom: 28rpx;
  135. }
  136. .cont{
  137. padding: 0 24rpx;
  138. }
  139. .line{
  140. background: #FFFFFF;
  141. border-radius: 10rpx;
  142. padding: 30rpx;
  143. line-height: 40rpx;
  144. margin-bottom: 20rpx;
  145. display: flex;justify-content: space-between;
  146. }
  147. .lineTxt{
  148. font-weight: 500;
  149. font-size: 28rpx;
  150. color: #000000;
  151. line-height: 40rpx;
  152. }
  153. .lineRtxt{
  154. font-weight: 400;line-height: 40rpx;
  155. font-size: 22rpx;
  156. color: #646464;
  157. padding-right: 10rpx;
  158. }
  159. .jtIcon{
  160. width: 10rpx;height: 20rpx;margin-top: 10rpx;
  161. }
  162. .smIcon{
  163. width: 36rpx;height: 36rpx;margin-top: 2rpx;
  164. }
  165. .lineRgiht{
  166. display: flex;
  167. }
  168. </style>