index.vue 8.0 KB

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