index.vue 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279
  1. <template>
  2. <view class="content">
  3. <view class="top">
  4. <view class="searchBox">
  5. <view class="searchInputBox" @click="goSearch">
  6. <image src="../../static/img/icon_search.png" mode="" class="simg"></image>
  7. <input type="text" placeholder="请输入车型品牌或车系名称" placeholder-class="ip" class="ssinput">
  8. </view>
  9. <view class="st" @click="stBtn">
  10. <image src="../../static/img/icon_shitu.png" mode="" class="stimg"></image>
  11. <view class="shitu">识图</view>
  12. </view>
  13. </view>
  14. </view>
  15. <!-- 历史查询 -->
  16. <view class="historybox ">
  17. <view class="history">
  18. <view class="historyTop" @click="gohistory">
  19. <view class="historyTitle">历史查询</view>
  20. <image src="../../static/img/icon_arrow.png" mode="" class="jiantouimg"></image>
  21. </view>
  22. <view class="historyLine" v-for="(item,index) in 3">
  23. <image src="http://img.db.66km.cn/carbrandlogo/B - 宝马.png" mode="" class="historylinecarImg"></image>
  24. <view class="historylinecar">华晨宝马iX3 G08 电动 HA001N0电动领先型 ( 改款 )(2021-2021)过长换行</view>
  25. </view>
  26. </view>
  27. </view>
  28. <carModel ref="carModelView" ></carModel>
  29. <!-- 选择车型 -->
  30. <view class="ckcarBox" v-if="ckCarShow">
  31. <view class="ckcar">
  32. <view class="ckcarTop flex">
  33. <view class="ckcarTitle">请选择车型</view>
  34. <image src="../../static/img/icon_quxiao.png" mode="" class="ckcarClose" @click="ckcarClose"></image>
  35. </view>
  36. <view class="ckcarlineBox" v-for="(item,index) in moreVinList">
  37. <view class="ckcarline flex">
  38. <view class="ckcarLeft">{{item.title}}</view>
  39. <image src="../../static/img/icon_arrow.png" mode="" class="ckcarJtimg"></image>
  40. </view>
  41. </view>
  42. </view>
  43. </view>
  44. </view>
  45. </template>
  46. <script>
  47. import carModel from './carModel.vue'
  48. export default {
  49. components: {
  50. carModel, //注册子组件
  51. },
  52. data() {
  53. return {
  54. fileURl: '',
  55. ckCarShow:false,
  56. vinNum:'',
  57. moreVinList:[],
  58. }
  59. },
  60. onLoad() {
  61. var that=this;
  62. this.uniLogin()
  63. setTimeout(function(){
  64. that.$refs.carModelView.getdata();
  65. },500)
  66. },
  67. methods: {
  68. uniLogin(){
  69. var that=this;
  70. uni.login({
  71. provider: 'weixin',
  72. success: function (loginRes) {
  73. console.log(loginRes);
  74. that.getWxOpenID(loginRes)
  75. }
  76. });
  77. },
  78. getWxOpenID(e){
  79. var that=this;
  80. this.$http2('sys/getWxOpenID', {
  81. code:e.code,
  82. },'GET').then(res => {
  83. })
  84. },
  85. gohistory(){
  86. uni.navigateTo({
  87. url:'/pages/index/history'
  88. })
  89. },
  90. goSearch(){
  91. uni.navigateTo({
  92. url:'/pages/index/search'
  93. })
  94. },
  95. stBtn(){
  96. var that = this;
  97. uni.showLoading({ title: '加载中'});
  98. uni.chooseImage({
  99. sourceType: ['album','camera'],
  100. count:1,
  101. success: (chooseImageRes) => {
  102. console.log(chooseImageRes)
  103. const tempFilePaths = chooseImageRes.tempFilePaths;
  104. this.fileURl=tempFilePaths[0]
  105. uni.uploadFile({
  106. url: that.$baseURL+'scanner?action=/vinByOpenApi/scanner', //仅为示例,非真实的接口地址
  107. filePath: tempFilePaths[0],
  108. name: 'photo',
  109. /* formData: {
  110. 'user': 'test'
  111. }, */
  112. success: (uploadFileRes) => {
  113. var data=JSON.parse(uploadFileRes.data);
  114. uni.hideLoading();
  115. if(data.code!=1){
  116. console.log(data.data)
  117. that.vinNum=data.data;
  118. that.queryCarModelGroupByVinAggregation()
  119. }else{
  120. uni.showToast({
  121. title: data.msg,
  122. duration: 3000,
  123. icon:'none',
  124. });
  125. }
  126. //console.log(JSON.parse(uploadFileRes.data).data );
  127. }
  128. });
  129. }
  130. });
  131. },
  132. queryCarModelGroupByVinAggregation(){
  133. this.$http('matchingByOpen/queryCarModelGroupByVinAggregation', {
  134. vin: this.vinNum,type:2
  135. }, 'POST').then(res => {
  136. if(res.code!=1){
  137. this.moreVinList=res.data;
  138. this.ckCarShow=true;
  139. }
  140. else {
  141. uni.showToast({
  142. title: res.msg,
  143. duration: 3000,
  144. icon:'none',
  145. });
  146. }
  147. })
  148. },
  149. ckcarClose(){
  150. this.ckCarShow=false;
  151. }
  152. }
  153. }
  154. </script>
  155. <style scoped>
  156. .ckcarJtimg{
  157. width: 26rpx;height: 26rpx;margin-top: 4rpx;
  158. }
  159. .ckcarlineBox{
  160. padding:24rpx ;
  161. border-bottom: 1px solid #EEEEEE;
  162. }
  163. .ckcarLeft{
  164. font-weight: 400;line-height: 36rpx;
  165. color: #1A1A1A;font-size: 26rpx;
  166. }
  167. .ckcarBox{
  168. width: 100vw;height: 100vh;
  169. background:rgba(0, 0, 0, 0.4) ;
  170. position: fixed;top: 0;left: 0;
  171. }
  172. .ckcar{
  173. width: 750rpx;
  174. height: 772rpx;
  175. background: #FFFFFF;
  176. border-radius: 24rpx 24rpx 0rpx 0rpx;
  177. position: absolute;
  178. left: 0;
  179. bottom: 0;
  180. }
  181. .ckcarClose{
  182. width: 30rpx;height: 30rpx;
  183. }
  184. .ckcarTitle{
  185. font-weight: 500;font-size: 28rpx;
  186. color: #1A1A1A;
  187. line-height: 40rpx;
  188. }
  189. .ckcarTop{
  190. padding: 40rpx 26rpx 20rpx 24rpx;
  191. }
  192. .content{
  193. min-height: 100vh;background: #F4F5F7;
  194. }
  195. .top{
  196. width: 100%;height: 230rpx;
  197. background: url('http://dmsphoto.66km.com.cn/thFiles/DE1573A0-1C08-4243-8313-C0BA094406D0.png') no-repeat;
  198. background-size: 100% 100%;
  199. }
  200. .searchInputBox{
  201. width: 634rpx;display: flex;
  202. height: 80rpx;
  203. background: #FFFFFF;
  204. border-radius: 16rpx;
  205. }
  206. .simg{
  207. width: 34rpx;height: 34rpx;margin-top: 23rpx;margin-left:30rpx;
  208. }
  209. .stimg{
  210. width: 44rpx;height: 44rpx;
  211. }
  212. .searchBox{
  213. display: flex;padding: 30rpx 24rpx;
  214. justify-content: space-between;
  215. }
  216. .ssinput{
  217. font-size: 28rpx;font-weight: 400;padding-left: 24rpx;line-height: 80rpx;height: 80rpx;
  218. }
  219. .ip{
  220. color: #999999;
  221. }
  222. .shitu{
  223. font-weight: 400;
  224. color: #FFFFFF;font-size: 22rpx;
  225. }
  226. .st{
  227. text-align: center;
  228. }
  229. .historybox{
  230. padding: 0 24rpx; margin-top: -80rpx;
  231. }
  232. .history{
  233. background: #FFFFFF;
  234. border-radius: 16rpx;
  235. padding: 30rpx;padding-bottom: 0;
  236. }
  237. .jiantouimg{
  238. width: 26rpx;height: 26rpx;margin-top: 7rpx;
  239. }
  240. .historyTop{
  241. display: flex;justify-content: space-between;
  242. padding-bottom: 30rpx;
  243. }
  244. .historyTitle{
  245. font-weight: 500;font-size: 28rpx;
  246. color: #1A1A1A;line-height: 40rpx;
  247. }
  248. .historylinecarImg{
  249. width: 46rpx;
  250. height: 46rpx;
  251. }
  252. .historylinecar{
  253. font-weight: 400;font-size: 26rpx;
  254. color: #1A1A1A;
  255. line-height: 37rpx;width: 576rpx;
  256. }
  257. .historyLine{
  258. display: flex;justify-content: space-between;
  259. padding: 30rpx 0;border-top: 1rpx solid #EEEEEE;
  260. }
  261. </style>