index.vue 8.2 KB

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