search.vue 8.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347
  1. <template>
  2. <view class="content">
  3. <homenav :iStatusBarHeight="iStatusBarHeight" :title="'搜索'"></homenav>
  4. <view class="sTopBox">
  5. <view class="searchInputBox" >
  6. <image src="../../static/img/icon_search.png" mode="" class="simg"></image>
  7. <input v-model="value" type="text" placeholder="请输入车辆品牌、车系或VIN码"
  8. placeholder-class="ip" class="ssinput" @confirm="searchFn" focus>
  9. </view>
  10. <view class="searchBtn" @click="searchFn">
  11. 搜索
  12. </view>
  13. </view>
  14. <view class="box">
  15. <view class="historyLine" v-for="(item,index) in carMlist">
  16. <!-- <image src="http://img.db.66km.cn/carbrandlogo/B - 宝马.png" mode="" class="historylinecarImg"></image> -->
  17. <view class="historylinecar" @click="carMbtn(item)">{{item.title}}</view>
  18. </view>
  19. </view>
  20. <!-- 选择车型 -->
  21. <view class="ckcarBox" v-if="ckCarShow">
  22. <view class="ckcar">
  23. <view class="ckcarTop flex">
  24. <view class="ckcarTitle">请选择车型</view>
  25. <image src="../../static/img/icon_quxiao.png" mode="" class="ckcarClose" @click="ckcarClose"></image>
  26. </view>
  27. <view class="ckcarlineBox" v-for="(item,index) in vinList" @click="goDetal(item)">
  28. <view class="ckcarline flex" >
  29. <view class="ckcarLeft">{{item.title}}</view>
  30. <image src="../../static/img/icon_arrow.png" mode="" class="ckcarJtimg"></image>
  31. </view>
  32. </view>
  33. </view>
  34. </view>
  35. <view class="popupone" @click="popupc" v-if="popuponeShow">
  36. <view class="popup-content" @click.stop="">
  37. <view style="padding: 24rpx 0;">
  38. <view class="manufactorP">{{manufactor}}</view>
  39. </view>
  40. <scroll-view class="brandList" scroll-y="true">
  41. <view class="pLine" v-for="(item,index) in popuponeList" @click="popuponeBtn(item)">{{item.title}}</view>
  42. </scroll-view>
  43. </view>
  44. </view>
  45. <view class="popupone popupTwo" @click="popupcTwo" v-if="popupTwoShow">
  46. <view class="popup-content" @click.stop="">
  47. <view class="status_bar" :style="{height: iStatusBarHeight + 'px'}"></view>
  48. <view style="height: 44px;"></view>
  49. <view style="">
  50. <!-- <view class="manufactorP">{{displacement}}</view> -->
  51. <view class="manufactorPTow"> <span>{{displacement}}</span>
  52. <span @click="poneHide">上一步</span>
  53. </view>
  54. </view>
  55. <scroll-view class="brandList" scroll-y="true">
  56. <view class="pLine" v-for="(item,index) in displacementList" @click="goDetalcx(item)">{{item.displacement}}</view>
  57. </scroll-view>
  58. </view>
  59. </view>
  60. </view>
  61. </template>
  62. <script>
  63. import homenav from "../../components/homenav/nav.vue"
  64. export default {
  65. components: {
  66. homenav
  67. },
  68. data() {
  69. return {
  70. value:'',
  71. ckCarShow:false,
  72. vinList:[],
  73. carMlist:[],
  74. carMshow:false,
  75. popuponeShow:false,
  76. popuponeList:[],
  77. manufactor:'',
  78. displacementList:'',
  79. type:'',
  80. popupTwoShow:false,
  81. displacement:'',
  82. brand:'',
  83. carSeries:'',
  84. isVin:'',
  85. vin:'',
  86. iStatusBarHeight:'',
  87. focusKuwei:false,
  88. }
  89. },
  90. onLoad(opt) {
  91. this.iStatusBarHeight = uni.getSystemInfoSync().statusBarHeight;
  92. setTimeout(() => {
  93. this.focusKuwei=true;
  94. }, 500)
  95. },
  96. methods: {
  97. goDetal(e){
  98. uni.navigateTo({
  99. url:'/pages/index/byItem?nLevelID='+e.carModelInfo.nLevelID+'&logo='+e.carModelInfo.logo+'&isVin='+this.isVin+'&value='+e.value+'&id='+e.ids+'&vin='+this.vin
  100. })
  101. },
  102. goDetalcx(e){
  103. console.log(e)
  104. uni.navigateTo({
  105. url:'/pages/index/byItem?scarid='+e.id
  106. })
  107. },
  108. carMbtn(e){
  109. this.type=e.type;
  110. if(e.type==1){
  111. this.manufactor=e.manufactor;
  112. this.getpopuponeList()
  113. }else{
  114. this.brand=e.brand
  115. this.carSeries=e.carSeries
  116. this.manufactor=e.manufactor
  117. this.getpopuponeList(e)
  118. }
  119. },
  120. popuponeBtn(item){
  121. this.displacementList=item.displacementList;
  122. this.displacement=item.title;
  123. this.popupTwoShow=true;
  124. console.log( this.displacementList)
  125. },
  126. poneHide(){
  127. this.popupTwoShow=false;
  128. },
  129. popupcTwo(){
  130. this.popupTwoShow=false;
  131. },
  132. getpopuponeList(e){
  133. uni.showLoading({ title: '加载中'});
  134. if(this.type==1){
  135. var params={
  136. manufactor: this.manufactor,type:this.type
  137. }
  138. this.$http('matchingByOpen/queryCarModelGroupIiPackageSecond', params,'POST').then(res => {
  139. uni.hideLoading();
  140. this.popuponeList=res.data;
  141. this.popuponeShow=true;
  142. })
  143. }else if(this.type==2){
  144. var params={
  145. manufactor: this.manufactor,type:this.type,carSeries:this.carSeries,brand:this.brand
  146. }
  147. this.$http('matchingByOpen/queryCarModelGroupIiPackageSecond', params,'POST').then(res => {
  148. uni.hideLoading();
  149. this.popuponeList=res.data;
  150. this.popuponeShow=true;
  151. })
  152. }else{
  153. uni.hideLoading();
  154. console.log(e)
  155. this.displacementList=e.displacementList;
  156. this.popupTwoShow=true;
  157. }
  158. },
  159. popupc(){
  160. this.popuponeShow=false;
  161. },
  162. searchFn(){
  163. console.log(this.value.length)
  164. if(!this.value){
  165. uni.showToast({
  166. title: '请输入车辆品牌、车系或VIN码',
  167. icon:'none',
  168. duration: 3000,
  169. });
  170. return false
  171. }
  172. if(this.value.length==17){
  173. uni.showLoading({ title: '加载中'});
  174. this.isVin=1;
  175. this.vin=this.value;
  176. this.vinList=[];
  177. this.$http('matchingByOpen/queryCarModelGroupByVinAggregation', {
  178. vin: this.value,type:2
  179. },'POST').then(res => {
  180. uni.hideLoading();
  181. if(res.code==0){
  182. this.vinList=res.data;
  183. if(this.vinList.length==1){
  184. this.goDetal(this.vinList[0])
  185. }else{
  186. this.ckCarShow=true;
  187. this.carMshow=false;
  188. }
  189. }
  190. })
  191. }else{
  192. uni.showLoading({ title: '加载中'});
  193. this.isVin=0;
  194. this.vin='';
  195. this.$http('matchingByOpen/queryCarModelGroupIiPackage', {
  196. name: this.value,
  197. },'POST').then(res => {
  198. uni.hideLoading();
  199. this.carMlist=res.data;
  200. this.carMshow=true;
  201. this.ckCarShow=false;
  202. })
  203. }
  204. },
  205. ckcarClose(){
  206. this.ckCarShow=false;
  207. }
  208. }
  209. }
  210. </script>
  211. <style scoped>
  212. .manufactorP{
  213. line-height: 69rpx;padding-left: 24rpx;
  214. width: 504rpx;margin-left: 30rpx;
  215. height: 69rpx;
  216. background: #FF4F00 linear-gradient(132deg, #FF8635 0%, #FF4828 100%);
  217. border-radius: 16rpx;
  218. font-weight: 500;
  219. color: #FFFFFF;font-size: 28rpx;
  220. }
  221. .manufactorPTow{
  222. line-height: 69rpx;padding-left: 24rpx;
  223. padding-right: 24rpx;display: flex;
  224. justify-content: space-between;
  225. background: #FF4F00 linear-gradient(132deg, #FF8635 0%, #FF4828 100%);
  226. font-weight: 500;
  227. color: #FFFFFF;font-size: 28rpx;
  228. }
  229. .brandList{
  230. height: calc(100vh - 200rpx);
  231. /* padding-bottom:var(--status-bar-height); */
  232. }
  233. .pLine{
  234. border-bottom: 1rpx solid #EEEEEE;
  235. font-weight: 400;
  236. color: #333333;font-size: 26rpx;
  237. padding: 30rpx 24rpx;
  238. }
  239. .popupone{
  240. width: 100vw;height: 100vh;
  241. background:rgba(0, 0, 0, 0.4) ;
  242. position: fixed;top: 0;left: 0;
  243. z-index: 11;
  244. }
  245. .popupTwo{
  246. z-index: 111;
  247. }
  248. .popup-content{
  249. width: 80vw;
  250. background: #FFFFFF;
  251. height: 100vh;
  252. margin-left: 20vw;
  253. }
  254. .ckcarJtimg{
  255. width: 26rpx;height: 26rpx;margin-top: 4rpx;
  256. }
  257. .ckcarlineBox{
  258. padding:24rpx ;
  259. border-bottom: 1px solid #EEEEEE;
  260. }
  261. .ckcarLeft{
  262. font-weight: 400;line-height: 36rpx;
  263. color: #1A1A1A;font-size: 26rpx;
  264. }
  265. .ckcarBox{
  266. width: 100vw;height: 100vh;
  267. background:rgba(0, 0, 0, 0.4) ;
  268. position: fixed;top: 0;left: 0;
  269. }
  270. .ckcar{
  271. width: 750rpx;
  272. height: 772rpx;
  273. background: #FFFFFF;
  274. border-radius: 24rpx 24rpx 0rpx 0rpx;
  275. position: absolute;
  276. left: 0;
  277. bottom: 0;
  278. }
  279. .ckcarClose{
  280. width: 30rpx;height: 30rpx;
  281. }
  282. .ckcarTitle{
  283. font-weight: 500;font-size: 28rpx;
  284. color: #1A1A1A;
  285. line-height: 40rpx;
  286. }
  287. .ckcarTop{
  288. padding: 40rpx 26rpx 20rpx 24rpx;
  289. }
  290. .box{
  291. padding: 0 24rpx;
  292. }
  293. .sTopBox{
  294. display: flex;padding: 30rpx 24rpx;
  295. }
  296. .searchBtn{
  297. font-weight: 400;font-size: 28rpx;padding-left: 24rpx;
  298. color: #1A1A1A;line-height: 80rpx;
  299. }
  300. .searchInputBox{
  301. width: 622rpx;display: flex;
  302. height: 80rpx;
  303. background: #F9F9F9;
  304. border-radius: 16rpx;
  305. }
  306. .ssinput{
  307. font-size: 28rpx;font-weight: 400;padding-left: 24rpx;line-height: 80rpx;height: 80rpx;
  308. width: 600rpx;
  309. }
  310. .simg{
  311. width: 36rpx;height: 34rpx;margin-top: 23rpx;margin-left:30rpx;
  312. }
  313. .historylinecarImg{
  314. width: 46rpx;
  315. height: 46rpx;
  316. }
  317. .historylinecar{
  318. font-weight: 400;font-size: 26rpx;
  319. color: #1A1A1A;
  320. line-height: 37rpx;width: 636rpx;
  321. }
  322. .historyLine{
  323. display: flex;justify-content: space-between;
  324. padding: 30rpx 0;border-bottom: 1rpx solid #EEEEEE;
  325. }
  326. </style>