carModel.vue 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842
  1. <template>
  2. <view class="box">
  3. <!-- 自定义头部 -->
  4. <view class="zdyNav">
  5. <view class="status_bar" :style="{height: iStatusBarHeight + 'px'}"></view>
  6. <view class="zdyNavCont">
  7. <view class="zdyNavContLeft">
  8. <image src="../../../static/img/baiheiback.png" mode="" class="baiheibackImg" @click="gofhj"></image>
  9. <!-- <image src="../../static/img/chahao.png" mode="" class="gaunbiIMg" @click="goback"></image> -->
  10. </view>
  11. <view class="zdyNavContTitle">自主选车</view>
  12. <view class="zdyNavContRight"></view>
  13. </view>
  14. </view>
  15. <view class="status_bar" :style="{height: iStatusBarHeight + 'px'}"></view>
  16. <view style="height: 44px;"></view>
  17. <!-- <view class="tab">
  18. <view class="tabLine" :class="{activeTab:tabIndex==1}" @click="tabIndex=1">手动选车</view>
  19. <view class="tabLine" :class="{activeTab:tabIndex==2}" @click="tabIndex=2">VIN识别</view>
  20. </view> -->
  21. <view class="tab1 " v-if="tabIndex==1">
  22. <scroll-view class="scroll-view" :scroll-into-view="toView" scroll-y="true" >
  23. <view class="brand-select">
  24. <template v-for="item in carModelList">
  25. <view :id="item['首字母']" v-if="item['首字母']!='热门'">
  26. <view class="brand-select-title" :id="item['首字母']+'-model'">
  27. <h5 :class="{'brand-select-titleselect':item['首字母']==toView}">{{item['首字母']}}</h5>
  28. </view>
  29. <view class="brand-select-wrapper">
  30. <a class="brand-select-item" v-for="item2 in item['品牌列表']" @click="selectBrand(item2)" :id="item2.brand">
  31. <img :src="item2.logo" class="brand-select-item-icon">
  32. <span>{{item2.brand||item2.name}}</span>
  33. </a>
  34. </view>
  35. </view>
  36. <view :id="'rm'" v-if="item['首字母']=='热门'">
  37. <view class="brand-select-title" :id="item['首字母']+'-model'">
  38. <h5 :class="{'brand-select-titleselect':item['首字母']==toView}">{{item['首字母']}}</h5>
  39. </view>
  40. <view class="brand-select-wrapper">
  41. <a class="brand-select-item" v-for="item2 in item['品牌列表']" @click="selectBrand(item2)" :id="item2.brand">
  42. <img :src="item2.logo" class="brand-select-item-icon">
  43. <span>{{item2.brand||item2.name}}</span>
  44. </a>
  45. </view>
  46. </view>
  47. </template>
  48. </view>
  49. </scroll-view >
  50. <div class="fast-navigation">
  51. <a class="fast-navigation-sel" :class="{'select':item['首字母']==toView}" v-for="item in carModelList" @tap="bindToView(item)">{{item['首字母']}}</a>
  52. </div>
  53. </view>
  54. <uni-popup ref="popup" type="right" :mask-click="true">
  55. <view class="popup-content" >
  56. <view class="status_bar" :style="{height: iStatusBarHeight + 'px'}"></view>
  57. <view style="height: 44px;"></view>
  58. <h3 class="carModel-nav-title cell-logo">
  59. <img :src="selectedCarBrand.logo" class="carModel-nav-title-img">
  60. <span class="carModel-nav-title-msg">{{ selectedCarBrand.brand }}</span>
  61. </h3>
  62. <scroll-view class="brandList" scroll-y="true">
  63. <view v-for="item in carSeriesList" :key="item.manufactor" >
  64. <h3 class="cell-item-title">{{ item.manufactor }}</h3>
  65. <span v-for="item2 in item.carSeries" :key="item2" :title="item2" class="span-cell" @click="selectCarFactory(item.manufactor,item2)" >{{item2}}</span>
  66. </view>
  67. </scroll-view>
  68. </view>
  69. </uni-popup>
  70. <!-- 排量 -->
  71. <view class="displacementListBox" v-show="displacementListShow">
  72. <view class="status_bar" :style="{height: iStatusBarHeight + 'px'}"></view>
  73. <view style="height: 44px;"></view>
  74. <h3 class="carModel-nav-title">
  75. <img :src="selectedCarBrand.logo" class="carModel-nav-title-img" @click="$emit('changeStep', 1)">
  76. <span class="carModel-nav-title-msg">{{ selectedCarBrand.brand }} {{ carSeries }}</span>
  77. </h3>
  78. <scroll-view scroll-y="true" class="brandList">
  79. <view @click="selectDisplacement(item)" v-for="item in displacementList" class="displacementListLine" >
  80. {{item}}
  81. </view>
  82. </scroll-view>
  83. </view>
  84. <!-- 离合器 -->
  85. <view class="carGroupListBox" v-show="carGroupListShow">
  86. <view class="status_bar" :style="{height: iStatusBarHeight + 'px'}"></view>
  87. <view style="height: 44px;"></view>
  88. <h3 class="carModel-nav-title">
  89. <img :src="selectedCarBrand.logo" class="carModel-nav-title-img" @click="$emit('changeStep', 1)">
  90. <span class="carModel-nav-title-msg">{{ selectedCarBrand.brand }} {{ carSeries }}{{displacement}}</span>
  91. </h3>
  92. <scroll-view scroll-y="true" class="brandList">
  93. <view @click="goAddCar(item)" v-for="item in carGroupList" class="displacementListLine" >
  94. {{item.title}}
  95. </view>
  96. </scroll-view>
  97. </view>
  98. <!-- 离合器 -->
  99. <view class="tab2" v-if="tabIndex==2">
  100. <view class="vinboxone" v-if="vinboxoneShow">
  101. <view class="smvin">请扫描VIN</view>
  102. <view class="smvin2">扫描时请保持环境光线充足不要反光</view>
  103. <view class="sltp">
  104. <!-- <image src="../../static/img/vin.png" mode="" class="sltpImg" ></image> --><!-- v-if="!vinImg" -->
  105. <!-- <image :src="vinImg" mode="widthFix" class="vinImg" v-if="vinImg"></image> -->
  106. </view>
  107. <view class="vinSc" @click="scVinIMg">上传图片</view>
  108. </view>
  109. <view class="vinboxTwo" v-if="vinboxtwoShow">
  110. <view class="vinboxTwoTopFh" @click="vinboxtwoShow=false"> 返回扫描 </view>
  111. <view class="vinboxTwoTopVIn">车辆识别代码:{{vin}}</view>
  112. <view class="vinCxNum"> 共{{vinSbList.length}}条查询结果</view>
  113. <view class="vinXzBox">
  114. <!-- <view class="vinXzLine">
  115. <view class="vinXzLineCx">品牌+车系+排量+变速器描述</view>
  116. <image src="../../static/img/icon_checked.png" mode="" class="loginLogo"></image>
  117. </view> -->
  118. <view class="vinXzLine" v-for="(vinItem,vIndex) in vinSbList" @click="ckVin(vinItem,vIndex)">
  119. <view class="vinXzLineCx">{{vinItem.title}}</view>
  120. <view class="vinXzLineyk" v-if="vinIndex!=vIndex"></view>
  121. <!-- <image src="../../static/img/icon_checked.png" mode="" v-if="vinIndex==vIndex" class="loginLogo"></image> -->
  122. </view>
  123. <view class="status_bar" :style="{height: iStatusBarHeight + 'px'}"></view>
  124. </view>
  125. </view>
  126. <view class="vinboxTwoBottom" v-if="vinboxtwoShow" :style="{bottom:iStatusBarHeight+'px'}">
  127. <view class="shoudonng" @click="shoudong">都不是,手动选车</view>
  128. <view class="qrcx" @click="qrcx">确认车型</view>
  129. </view>
  130. </view>
  131. </view>
  132. </template>
  133. <script>
  134. export default {
  135. components: {
  136. },
  137. data() {
  138. return {
  139. carList:'',
  140. tabIndex:1,
  141. carModelList:'',
  142. toView:'',
  143. type:'right',
  144. brand:'',
  145. carSeriesList:'',
  146. selectedCarBrand:'',
  147. manufactor:'',
  148. carSeries:'',
  149. displacementList:'',
  150. displacementListShow:false,
  151. selectedCarSeries:'',
  152. displacement:'',
  153. carGroupList:'',
  154. carGroupListShow:false,
  155. type:'',
  156. delId:'',
  157. vinImg:'',
  158. file:'',
  159. vin:'',
  160. vinboxoneShow:true,
  161. vinboxtwoShow:false,
  162. addNum:'',
  163. iStatusBarHeight:'',
  164. popupShow:false,
  165. vinSbList:[],
  166. vinIndex:0,
  167. vincarModelInfo:'',
  168. }
  169. },
  170. onLoad(opt) {
  171. this.iStatusBarHeight = uni.getSystemInfoSync().statusBarHeight;
  172. if(opt.type==2){
  173. this.type=2
  174. }
  175. if(opt.add){
  176. this.addNum=opt.add
  177. }
  178. this.delId=opt.delId;
  179. this.queryCarModelGroupPackage();
  180. },
  181. methods: {
  182. ckVin(vinItem,vIndex){
  183. this.vinIndex=vIndex;
  184. this.vincarModelInfo=vinItem
  185. },
  186. qrcx(){
  187. this.goAddCar(this.vincarModelInfo)
  188. },
  189. shoudong(){
  190. this.vinboxtwoShow=false;
  191. this.tabIndex=1;
  192. },
  193. goback(){
  194. uni.navigateBack({
  195. delta:1
  196. })
  197. },
  198. gofhj(){
  199. if(this.carGroupListShow){
  200. this.carGroupListShow=false
  201. }else if(this.displacementListShow){
  202. this.displacementListShow=false
  203. }else if(this.popupShow){
  204. this.popupShow=false
  205. this.$refs.popup.close()
  206. }else{
  207. uni.navigateBack({
  208. delta:1
  209. })
  210. }
  211. },
  212. scVinIMg(){
  213. var that = this;
  214. uni.chooseImage({
  215. sourceType: ['album','camera'],
  216. count:1,
  217. success: (chooseImageRes) => {
  218. const tempFilePaths = chooseImageRes.tempFilePaths;
  219. that.file=tempFilePaths[0]
  220. uni.uploadFile({
  221. url: that.$request.baseUrl+'accompany/SuperCheckSheet/uploadFile', //仅为示例,非真实的接口地址
  222. filePath: tempFilePaths[0],
  223. name: 'file',
  224. formData: {
  225. 'user': 'test'
  226. },
  227. success: (uploadFileRes) => {
  228. console.log(JSON.parse(uploadFileRes.data).data );
  229. //that.imgArr=that.imgArr.concat(JSON.parse(uploadFileRes.data).data) ;
  230. that.vinImg=JSON.parse(uploadFileRes.data).data[0];
  231. that.vinScanner()
  232. }
  233. });
  234. /* that.$http('accompany/SuperCheckSheet/uploadFile', tempFilePaths[0], 'POST').then(res => {
  235. }) */
  236. }
  237. });
  238. },
  239. vinScanner(){
  240. uni.showLoading({
  241. title:'正在识别中'
  242. });
  243. /*
  244. this.$http('miniAppMyBMemberCar/vinScanner', {
  245. photo:this.file,
  246. },'POST').then(res => {
  247. uni.hideLoading();
  248. //this.carGroupList=res.data.carGroupList
  249. }) */
  250. var that=this;
  251. uni.uploadFile({
  252. url: that.$request.baseUrl+'miniAppMyBMemberCar/vinScanner',
  253. filePath: that.file,
  254. name: 'photo',
  255. formData: {
  256. 'user': 'test'
  257. },
  258. success: (uploadFileRes) => {
  259. uni.hideLoading();
  260. console.log(JSON.parse(uploadFileRes.data) );
  261. if(JSON.parse(uploadFileRes.data).code==0){
  262. that.vin = JSON.parse(uploadFileRes.data).data;
  263. that.queryCarModelGroupByVin()
  264. }else{
  265. uni.showToast({
  266. title: JSON.parse(uploadFileRes.data).msg,
  267. icon: 'none',
  268. duration: 2000,
  269. });
  270. }
  271. }
  272. });
  273. },
  274. queryCarModelGroupByVin(){
  275. uni.showLoading({ });
  276. this.$http('miniAppMyBMemberCar/queryCarModelGroupByVin', {
  277. vin:this.vin,
  278. },'GET').then(res => {
  279. uni.hideLoading();
  280. if(res.code!=0){
  281. uni.showToast({
  282. title: res.msg,
  283. icon: 'none',
  284. duration: 2000,
  285. });
  286. }else{
  287. this.vinboxtwoShow=true
  288. this.vinSbList=res.data;
  289. this.vincarModelInfo=this.vinSbList[0]
  290. }
  291. })
  292. },
  293. goAddCar(item){
  294. console.log(item)
  295. var carModelInfo=item;
  296. var that=this;
  297. uni.setStorage({
  298. key: 'carModelInfo',
  299. data: carModelInfo,
  300. success: function () {
  301. /* uni.navigateBack({
  302. delta:1
  303. }) */
  304. uni.redirectTo({
  305. url:'addCar'
  306. })
  307. }
  308. });
  309. },
  310. selectBrand(item){
  311. console.log(item)
  312. this.selectedCarBrand=item;
  313. this.$refs.popup.open("right")
  314. this.popupShow=true;
  315. this.brand=item.brand
  316. this.getbrand()
  317. },
  318. selectCarFactory(manufactor,item){
  319. this.manufactor=manufactor;
  320. this.carSeries=item;
  321. //this.selectedCarSeries=item
  322. this.displacementListShow=true;
  323. this.getdisplacementList()
  324. },
  325. selectDisplacement(item){
  326. this.displacement=item;
  327. this.carGroupListShow=true;
  328. this.getmodelList();
  329. },
  330. getmodelList(){
  331. uni.showLoading({
  332. title: '加载中'
  333. })
  334. this.$http('opencarInfoOwner/queryCarModelGroupPackage', {
  335. brand:this.brand,
  336. manufactor:this.manufactor,
  337. carSeries:this.carSeries,
  338. displacement:this.displacement
  339. },'POST').then(res => {
  340. uni.hideLoading();
  341. this.carGroupList=res.data.carGroupList
  342. })
  343. },
  344. getdisplacementList(){
  345. uni.showLoading({
  346. title: '加载中'
  347. })
  348. this.$http('opencarInfoOwner/queryCarModelGroupPackage', {
  349. brand:this.brand,
  350. manufactor:this.manufactor,
  351. carSeries:this.carSeries
  352. },'POST').then(res => {
  353. uni.hideLoading();
  354. this.displacementList=res.data.displacementList
  355. })
  356. },
  357. queryCarModelGroupPackage(){
  358. uni.showLoading({
  359. title: '加载中'
  360. })
  361. this.$http('opencarInfoOwner/queryCarModelGroupPackage', {
  362. },'POST').then(res => {
  363. // debugger
  364. //console.log(res.code)
  365. if(res.code!=0){
  366. uni.showToast({
  367. title: res.msg,
  368. icon: 'none',
  369. duration: 2000,
  370. });
  371. }
  372. uni.hideLoading();
  373. this.carModelList=res.data.brands
  374. })
  375. },
  376. bindToView(item){
  377. console.log(item)
  378. if(item['首字母']=='热门'){
  379. this.toView ='rm'
  380. }else{
  381. this.toView = item['首字母']
  382. }
  383. console.log(this.toView)
  384. //this.scrollTop = 0
  385. },
  386. /* login(){
  387. uni.navigateTo({
  388. url:'../login/login'
  389. })
  390. } */
  391. close(){
  392. this.$refs.popup.close()
  393. },
  394. getbrand(){
  395. uni.showLoading({
  396. title: '加载中'
  397. })
  398. this.$http('opencarInfoOwner/queryCarModelGroupPackage', {
  399. brand:this.brand
  400. },'POST').then(res => {
  401. uni.hideLoading();
  402. this.carSeriesList=res.data.carSeriesList
  403. })
  404. }
  405. }
  406. }
  407. </script>
  408. <style scoped lang="scss">
  409. .box{
  410. min-height: 100vh;
  411. background:#F4F5F7 ;
  412. }
  413. .vinboxTwoTopFh{
  414. font-size: 26rpx;
  415. padding: 30rpx 24rpx;
  416. color: #3F90F7;
  417. }
  418. .vinboxTwoBottom{
  419. width: 750rpx;
  420. height: 120rpx;
  421. background: #FFFFFF;
  422. box-shadow: 0px -2px 20px 0px rgba(153, 153, 153, 0.2);
  423. position: absolute;
  424. left: 0;
  425. bottom: 0;
  426. display: flex;
  427. justify-content: space-around;
  428. }
  429. .shoudonng{
  430. width: 336rpx;
  431. height: 74rpx;
  432. border-radius: 37rpx;
  433. border: 1px solid #FF4F00;
  434. line-height: 74rpx;
  435. text-align: center;
  436. font-size: 30rpx;
  437. color: #FF4F00;
  438. margin-top: 23rpx;
  439. }
  440. .qrcx{
  441. width: 336rpx;
  442. height: 74rpx;
  443. background: linear-gradient(124deg, #FF8700 0%, #FF4F00 100%);
  444. border-radius: 37rpx;
  445. line-height: 74rpx;
  446. text-align: center;
  447. font-size: 30rpx;
  448. color: #FFFFFF;
  449. margin-top: 23rpx;
  450. }
  451. .vinXzBox{
  452. padding-bottom: 120rpx;
  453. }
  454. .loginLogo{
  455. width: 28rpx;
  456. height: 28rpx;
  457. }
  458. .vinXzLineyk{
  459. width: 24rpx;
  460. height: 24rpx;
  461. border: 2rpx solid #999999;
  462. border-radius: 50%;
  463. }
  464. .vinXzLine{
  465. padding: 30rpx 24rpx;
  466. display: flex;
  467. justify-content: space-between;
  468. color: #3C3C3C;
  469. font-size: 28rpx;
  470. line-height: 28rpx;
  471. border-bottom: 1px solid #DDDDDD;
  472. }
  473. .vinboxTwoTopVIn{
  474. font-size: 28rpx;
  475. color: #666666;
  476. padding-left: 24rpx;
  477. padding-bottom: 30rpx;
  478. }
  479. .zdyNav{
  480. width: 100vw;
  481. background: #FFFFFF;
  482. position: fixed;
  483. top: 0;
  484. left: 0;
  485. z-index: 1111111;
  486. }
  487. .zdyNavCont{
  488. height: 44px;
  489. font-size: 28rpx;
  490. // font-weight: bold;
  491. display: flex;
  492. justify-content: space-between;
  493. line-height: 44px;
  494. }
  495. .vinCxNum{
  496. background: #F4F5F7;
  497. font-size: 26rpx;
  498. padding: 18rpx 24rpx;
  499. color: #999999;
  500. }
  501. .baiheibackImg{
  502. width: 70px;
  503. height: 44px;
  504. }
  505. .gaunbiIMg{
  506. width: 20px;
  507. height: 20px;
  508. padding: 12px;
  509. }
  510. .zdyNavContLeft{
  511. }
  512. .zdyNavContTitle{
  513. color: #000000;
  514. font-size: 30rpx;
  515. font-weight: bold;
  516. }
  517. .zdyNavContRight{
  518. width: 100px;
  519. }
  520. .smvin{
  521. color: #3C3C3C;
  522. font-size: 30rpx;
  523. }
  524. .smvin2{
  525. color: #999999;
  526. font-size: 26rpx;
  527. }
  528. .tab2{
  529. padding: 30rpx 24rpx;
  530. min-height: calc(100vh - 150rpx - 44px);
  531. background: #FFFFFF;
  532. position: relative;
  533. }
  534. .vinboxTwo{
  535. position: absolute;
  536. top: 0;
  537. left: 0;
  538. width: 750rpx;
  539. min-height: calc(100vh - 150rpx - 44px);
  540. background: #FFFFFF;
  541. }
  542. .sltpImg{
  543. width: 704rpx;
  544. height: 353rpx;
  545. }
  546. .vinImg{
  547. width: 704rpx;
  548. }
  549. .sltp{
  550. padding-top: 20rpx;
  551. }
  552. .vinSc{
  553. width: 690rpx;
  554. height: 74rpx;
  555. background: linear-gradient(124deg, #FF8700 0%, #FF4F00 100%);
  556. border-radius: 37rpx;
  557. text-align: center;
  558. line-height: 74rpx;
  559. color: #FFFFFF;
  560. font-size: 30rpx;
  561. margin-top: 70rpx;
  562. }
  563. .nodataImg{
  564. width: 400rpx;
  565. padding-top: 100rpx;
  566. }
  567. .noTxt{
  568. font-size: 36rpx;
  569. color: #999999;
  570. padding-top: 50rpx;
  571. }
  572. .nodataBox{
  573. text-align: center;
  574. }
  575. .addBtn{
  576. width: 690rpx;
  577. height: 74rpx;
  578. background: linear-gradient(124deg, #FF8700 0%, #FF4F00 100%);
  579. border-radius: 37rpx;
  580. line-height: 74rpx;
  581. text-align: center;
  582. color: #FFFFFF;
  583. font-size: 30rpx;
  584. position: fixed;
  585. bottom: 23rpx;
  586. left: 30rpx;
  587. }
  588. .carlistBox{
  589. padding-bottom: 120rpx;
  590. }
  591. .tab{
  592. background: #FFFFFF;
  593. display: flex;
  594. justify-content: space-around;
  595. line-height: 93rpx;
  596. color: #3C3C3C;
  597. font-size: 30rpx;
  598. border-bottom: 1px solid #F4F5F7;
  599. }
  600. .activeTab{
  601. color: #FF4F00;text-decoration: underline
  602. }
  603. /* .brand-select-title{
  604. height: 80px;
  605. background:rgba(247,247,247,1);
  606. position: relative;
  607. } */
  608. .brand-select{
  609. .brand-select-title{
  610. height: 80rpx;
  611. background:rgba(247,247,247,1);
  612. position: relative;
  613. h5{
  614. position: absolute;
  615. height:40rpx;
  616. font-size:28rpx;
  617. font-weight:500;
  618. color:rgba(102,102,102,1);
  619. line-height:40rpx;
  620. top: 20rpx;
  621. left: 30rpx;
  622. }
  623. }
  624. .brand-select-wrapper{
  625. display: flex;
  626. flex-wrap: wrap;
  627. background:rgba(255,255,255,1);
  628. width: 100vw;
  629. .brand-select-item{
  630. display: block;
  631. width: 80rpx;
  632. height: 100rpx;
  633. padding: 30rpx;
  634. img{
  635. display: inline-block;
  636. margin-left: 10rpx;
  637. width: 60rpx;
  638. height: 60rpx;
  639. }
  640. span{
  641. display: inline-block;
  642. text-align: center;
  643. height:33rpx;
  644. width: 90rpx;
  645. font-size:24rpx;
  646. font-weight:400;
  647. color:rgba(51,51,51,1);
  648. line-height:33rpx;
  649. }
  650. }
  651. }
  652. }
  653. .fast-navigation{
  654. position: fixed;
  655. text-align: center;
  656. right: 16rpx;
  657. top: 360rpx;
  658. width: 23rpx;
  659. font-size:24rpx;
  660. font-weight:500;
  661. line-height:35rpx;
  662. color: rgb(153, 153, 153);
  663. a{
  664. display: block;
  665. }
  666. .select{
  667. color: #FF4F00;
  668. }
  669. }
  670. .scroll-view{
  671. height: calc(100vh - 93rpx);
  672. }
  673. .popup-height {
  674. width: 200px;
  675. }
  676. .popup-content{
  677. width: 590rpx;
  678. background: #FFFFFF;
  679. height: 100vh;
  680. }
  681. .carModel-nav-title{
  682. height:100rpx;
  683. background: linear-gradient(134deg, #FF8635 0%, #FF4828 100%);
  684. line-height: 100rpx;
  685. display: flex;
  686. z-index: 500;
  687. &.cell-logo{
  688. position: sticky;
  689. top: 0;
  690. background: linear-gradient(134deg, #FF8635 0%, #FF4828 100%);
  691. }
  692. .carModel-nav-title-box{
  693. width: 100%;
  694. display: flex;
  695. }
  696. .carModel-nav-title-img{
  697. margin: 20rpx;
  698. width: 60rpx;
  699. height: 60rpx;
  700. }
  701. .carModel-nav-title-msg{
  702. font-size:30rpx;
  703. font-weight:400;
  704. color:rgba(255,255,255,1);
  705. display: block;
  706. padding-right: 20rpx;
  707. }
  708. }
  709. .cell-item-title{
  710. height:60rpx;
  711. background:rgba(250,250,250,1);
  712. font-size:28rpx;
  713. font-weight:400;
  714. color:rgba(102,102,102,1);
  715. line-height:60rpx;
  716. padding-left: 26rpx;
  717. }
  718. .span-cell{
  719. position: relative;
  720. display: -webkit-box;
  721. display: -webkit-flex;
  722. display: flex;
  723. box-sizing: border-box;
  724. width: 100%;
  725. padding: 6rpx 30rpx;
  726. overflow: hidden;
  727. color: #323233;
  728. font-size: 3.73333vw;
  729. line-height: 82rpx;
  730. height: 82rpx;
  731. background-color: #fff;
  732. border-bottom: 1px solid #ebedf0;
  733. }
  734. .carModel-nav-title{
  735. height:100rpx;
  736. background: linear-gradient(134deg, #FF8635 0%, #FF4828 100%);
  737. line-height: 100rpx;
  738. display: flex;
  739. z-index: 500;
  740. &.cell-logo{
  741. position: sticky;
  742. top: 0;
  743. background: linear-gradient(134deg, #FF8635 0%, #FF4828 100%);
  744. }
  745. .carModel-nav-title-box{
  746. width: 100%;
  747. display: flex;
  748. }
  749. .carModel-nav-title-img{
  750. margin: 20rpx;
  751. width: 60rpx;
  752. height: 60rpx;
  753. }
  754. .carModel-nav-title-msg{
  755. font-size:30rpx;
  756. font-weight:400;
  757. color:rgba(255,255,255,1);
  758. display: block;
  759. padding-right: 20px;
  760. }
  761. }
  762. .displacementListLine{
  763. min-height: 50rpx;
  764. padding: 20rpx 20rpx 20rpx 30rpx;
  765. font-size:28rpx;
  766. font-weight:600;
  767. color:rgba(51,51,51,1);
  768. line-height:50rpx;
  769. border-top: 2rpx solid rgb(238, 238, 238);
  770. background-color: rgb(255, 255, 255);
  771. }
  772. .displacementListBox{
  773. position: fixed;
  774. top: 0;
  775. left: 0;
  776. width: 100vw;
  777. height: 100vh;
  778. background:#F4F5F7 ;
  779. z-index: 11111;
  780. /* #ifdef H5 */
  781. top:44px;
  782. /* #endif */
  783. }
  784. .carGroupListBox{
  785. position: fixed;
  786. top: 0;
  787. left: 0;
  788. width: 100vw;
  789. height: 100vh;
  790. background:#F4F5F7 ;
  791. z-index: 11111;
  792. /* #ifdef H5 */
  793. top:44px;
  794. /* #endif */
  795. }
  796. .brandList{
  797. height: calc(100vh - 250rpx);
  798. }
  799. .brand-select-titleselect{
  800. color: #FF4F00 !important;
  801. }
  802. </style>