addCarCK.vue 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205
  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.redirectTo({
  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. var vinSbList=res.data
  118. /* uni.redirectTo({
  119. url:'../user/addCar/carModel'
  120. }) */
  121. var vin=this.vin
  122. uni.setStorage({
  123. key: 'carModelInfo',
  124. data: vinSbList[0],
  125. success: function () {
  126. uni.redirectTo({
  127. url:'../user/addCar/addCar?vin='+vin
  128. })
  129. }
  130. });
  131. }
  132. })
  133. },
  134. },
  135. }
  136. </script>
  137. <style scoped>
  138. .box {
  139. min-height: 100vh;
  140. background: #F4F5F7;
  141. }
  142. .title{
  143. font-weight: 400;
  144. font-size: 22rpx;
  145. color: #000000;
  146. padding-top: 40rpx;
  147. padding-left: 24rpx;
  148. padding-bottom: 28rpx;
  149. }
  150. .cont{
  151. padding: 0 24rpx;
  152. }
  153. .line{
  154. background: #FFFFFF;
  155. border-radius: 10rpx;
  156. padding: 30rpx;
  157. line-height: 40rpx;
  158. margin-bottom: 20rpx;
  159. display: flex;justify-content: space-between;
  160. }
  161. .lineTxt{
  162. font-weight: 500;
  163. font-size: 28rpx;
  164. color: #000000;
  165. line-height: 40rpx;
  166. }
  167. .lineRtxt{
  168. font-weight: 400;line-height: 40rpx;
  169. font-size: 22rpx;
  170. color: #646464;
  171. padding-right: 10rpx;
  172. }
  173. .jtIcon{
  174. width: 10rpx;height: 20rpx;margin-top: 10rpx;
  175. }
  176. .smIcon{
  177. width: 36rpx;height: 36rpx;margin-top: 2rpx;
  178. }
  179. .lineRgiht{
  180. display: flex;
  181. }
  182. </style>