search.vue 7.1 KB

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