carModel.vue 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817
  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. }
  305. });
  306. },
  307. selectBrand(item){
  308. console.log(item)
  309. this.selectedCarBrand=item;
  310. this.$refs.popup.open("right")
  311. this.popupShow=true;
  312. this.brand=item.brand
  313. this.getbrand()
  314. },
  315. selectCarFactory(manufactor,item){
  316. this.manufactor=manufactor;
  317. this.carSeries=item;
  318. //this.selectedCarSeries=item
  319. this.displacementListShow=true;
  320. this.getdisplacementList()
  321. },
  322. selectDisplacement(item){
  323. this.displacement=item;
  324. this.carGroupListShow=true;
  325. this.getmodelList();
  326. },
  327. getmodelList(){
  328. uni.showLoading({ });
  329. this.$http('worldKeepCar/worldHome/queryCarModelGroupPackage', {
  330. brand:this.brand,
  331. manufactor:this.manufactor,
  332. carSeries:this.carSeries,
  333. displacement:this.displacement
  334. },'GET').then(res => {
  335. uni.hideLoading();
  336. this.carGroupList=res.data.carGroupList
  337. })
  338. },
  339. getdisplacementList(){
  340. uni.showLoading({ });
  341. this.$http('worldKeepCar/worldHome/queryCarModelGroupPackage', {
  342. brand:this.brand,
  343. manufactor:this.manufactor,
  344. carSeries:this.carSeries
  345. },'GET').then(res => {
  346. uni.hideLoading();
  347. this.displacementList=res.data.displacementList
  348. })
  349. },
  350. queryCarModelGroupPackage(){
  351. uni.showLoading({ });
  352. this.$http('worldKeepCar/worldHome/queryCarModelGroupPackage', {
  353. },'GET').then(res => {
  354. uni.hideLoading();
  355. this.carModelList=res.data.brands
  356. })
  357. },
  358. bindToView(item){
  359. console.log(item)
  360. if(item['首字母']=='热门'){
  361. this.toView ='rm'
  362. }else{
  363. this.toView = item['首字母']
  364. }
  365. console.log(this.toView)
  366. //this.scrollTop = 0
  367. },
  368. /* login(){
  369. uni.navigateTo({
  370. url:'../login/login'
  371. })
  372. } */
  373. close(){
  374. this.$refs.popup.close()
  375. },
  376. getbrand(){
  377. uni.showLoading({ });
  378. this.$http('worldKeepCar/worldHome/queryCarModelGroupPackage', {
  379. brand:this.brand
  380. },'GET').then(res => {
  381. uni.hideLoading();
  382. this.carSeriesList=res.data.carSeriesList
  383. })
  384. }
  385. }
  386. }
  387. </script>
  388. <style scoped lang="scss">
  389. .box{
  390. min-height: 100vh;
  391. background:#F4F5F7 ;
  392. }
  393. .vinboxTwoTopFh{
  394. font-size: 26rpx;
  395. padding: 30rpx 24rpx;
  396. color: #3F90F7;
  397. }
  398. .vinboxTwoBottom{
  399. width: 750rpx;
  400. height: 120rpx;
  401. background: #FFFFFF;
  402. box-shadow: 0px -2px 20px 0px rgba(153, 153, 153, 0.2);
  403. position: absolute;
  404. left: 0;
  405. bottom: 0;
  406. display: flex;
  407. justify-content: space-around;
  408. }
  409. .shoudonng{
  410. width: 336rpx;
  411. height: 74rpx;
  412. border-radius: 37rpx;
  413. border: 1px solid #FF4F00;
  414. line-height: 74rpx;
  415. text-align: center;
  416. font-size: 30rpx;
  417. color: #FF4F00;
  418. margin-top: 23rpx;
  419. }
  420. .qrcx{
  421. width: 336rpx;
  422. height: 74rpx;
  423. background: linear-gradient(124deg, #FF8700 0%, #FF4F00 100%);
  424. border-radius: 37rpx;
  425. line-height: 74rpx;
  426. text-align: center;
  427. font-size: 30rpx;
  428. color: #FFFFFF;
  429. margin-top: 23rpx;
  430. }
  431. .vinXzBox{
  432. padding-bottom: 120rpx;
  433. }
  434. .loginLogo{
  435. width: 28rpx;
  436. height: 28rpx;
  437. }
  438. .vinXzLineyk{
  439. width: 24rpx;
  440. height: 24rpx;
  441. border: 2rpx solid #999999;
  442. border-radius: 50%;
  443. }
  444. .vinXzLine{
  445. padding: 30rpx 24rpx;
  446. display: flex;
  447. justify-content: space-between;
  448. color: #3C3C3C;
  449. font-size: 28rpx;
  450. line-height: 28rpx;
  451. border-bottom: 1px solid #DDDDDD;
  452. }
  453. .vinboxTwoTopVIn{
  454. font-size: 28rpx;
  455. color: #666666;
  456. padding-left: 24rpx;
  457. padding-bottom: 30rpx;
  458. }
  459. .zdyNav{
  460. width: 100vw;
  461. background: #FFFFFF;
  462. position: fixed;
  463. top: 0;
  464. left: 0;
  465. z-index: 1111111;
  466. }
  467. .zdyNavCont{
  468. height: 44px;
  469. font-size: 28rpx;
  470. // font-weight: 700;
  471. display: flex;
  472. justify-content: space-between;
  473. line-height: 44px;
  474. }
  475. .vinCxNum{
  476. background: #F4F5F7;
  477. font-size: 26rpx;
  478. padding: 18rpx 24rpx;
  479. color: #999999;
  480. }
  481. .baiheibackImg{
  482. width: 70px;
  483. height: 44px;
  484. }
  485. .gaunbiIMg{
  486. width: 20px;
  487. height: 20px;
  488. padding: 12px;
  489. }
  490. .zdyNavContLeft{
  491. }
  492. .zdyNavContRight{
  493. width: 114px;
  494. }
  495. .smvin{
  496. color: #3C3C3C;
  497. font-size: 30rpx;
  498. }
  499. .smvin2{
  500. color: #999999;
  501. font-size: 26rpx;
  502. }
  503. .tab2{
  504. padding: 30rpx 24rpx;
  505. min-height: calc(100vh - 150rpx - 44px);
  506. background: #FFFFFF;
  507. position: relative;
  508. }
  509. .vinboxTwo{
  510. position: absolute;
  511. top: 0;
  512. left: 0;
  513. width: 750rpx;
  514. min-height: calc(100vh - 150rpx - 44px);
  515. background: #FFFFFF;
  516. }
  517. .sltpImg{
  518. width: 704rpx;
  519. height: 353rpx;
  520. }
  521. .vinImg{
  522. width: 704rpx;
  523. }
  524. .sltp{
  525. padding-top: 20rpx;
  526. }
  527. .vinSc{
  528. width: 690rpx;
  529. height: 74rpx;
  530. background: linear-gradient(124deg, #FF8700 0%, #FF4F00 100%);
  531. border-radius: 37rpx;
  532. text-align: center;
  533. line-height: 74rpx;
  534. color: #FFFFFF;
  535. font-size: 30rpx;
  536. margin-top: 70rpx;
  537. }
  538. .nodataImg{
  539. width: 400rpx;
  540. padding-top: 100rpx;
  541. }
  542. .noTxt{
  543. font-size: 36rpx;
  544. color: #999999;
  545. padding-top: 50rpx;
  546. }
  547. .nodataBox{
  548. text-align: center;
  549. }
  550. .addBtn{
  551. width: 690rpx;
  552. height: 74rpx;
  553. background: linear-gradient(124deg, #FF8700 0%, #FF4F00 100%);
  554. border-radius: 37rpx;
  555. line-height: 74rpx;
  556. text-align: center;
  557. color: #FFFFFF;
  558. font-size: 30rpx;
  559. position: fixed;
  560. bottom: 23rpx;
  561. left: 30rpx;
  562. }
  563. .carlistBox{
  564. padding-bottom: 120rpx;
  565. }
  566. .tab{
  567. background: #FFFFFF;
  568. display: flex;
  569. justify-content: space-around;
  570. line-height: 93rpx;
  571. color: #3C3C3C;
  572. font-size: 30rpx;
  573. border-bottom: 1px solid #F4F5F7;
  574. }
  575. .activeTab{
  576. color: #FF4F00;text-decoration: underline
  577. }
  578. /* .brand-select-title{
  579. height: 80px;
  580. background:rgba(247,247,247,1);
  581. position: relative;
  582. } */
  583. .brand-select{
  584. .brand-select-title{
  585. height: 80rpx;
  586. background:rgba(247,247,247,1);
  587. position: relative;
  588. h5{
  589. position: absolute;
  590. height:40rpx;
  591. font-size:28rpx;
  592. font-weight:500;
  593. color:rgba(102,102,102,1);
  594. line-height:40rpx;
  595. top: 20rpx;
  596. left: 30rpx;
  597. }
  598. }
  599. .brand-select-wrapper{
  600. display: flex;
  601. flex-wrap: wrap;
  602. background:rgba(255,255,255,1);
  603. width: 100vw;
  604. .brand-select-item{
  605. display: block;
  606. width: 80rpx;
  607. height: 100rpx;
  608. padding: 30rpx;
  609. img{
  610. display: inline-block;
  611. margin-left: 10rpx;
  612. width: 60rpx;
  613. height: 60rpx;
  614. }
  615. span{
  616. display: inline-block;
  617. text-align: center;
  618. height:33rpx;
  619. width: 90rpx;
  620. font-size:24rpx;
  621. font-weight:400;
  622. color:rgba(51,51,51,1);
  623. line-height:33rpx;
  624. }
  625. }
  626. }
  627. }
  628. .fast-navigation{
  629. position: fixed;
  630. text-align: center;
  631. right: 16rpx;
  632. top: 360rpx;
  633. width: 23rpx;
  634. font-size:30rpx;
  635. font-weight:500;
  636. line-height:35rpx;
  637. color: rgb(153, 153, 153);
  638. a{
  639. display: block;
  640. }
  641. .select{
  642. color: #FF4F00;
  643. }
  644. }
  645. .scroll-view{
  646. height: calc(100vh - 93rpx);
  647. }
  648. .popup-height {
  649. width: 200px;
  650. }
  651. .popup-content{
  652. width: 590rpx;
  653. background: #FFFFFF;
  654. height: 100vh;
  655. }
  656. .carModel-nav-title{
  657. height:100rpx;
  658. background: linear-gradient(134deg, #FF8635 0%, #FF4828 100%);
  659. line-height: 100rpx;
  660. display: flex;
  661. z-index: 500;
  662. &.cell-logo{
  663. position: sticky;
  664. top: 0;
  665. background: linear-gradient(134deg, #FF8635 0%, #FF4828 100%);
  666. }
  667. .carModel-nav-title-box{
  668. width: 100%;
  669. display: flex;
  670. }
  671. .carModel-nav-title-img{
  672. margin: 20rpx;
  673. width: 60rpx;
  674. height: 60rpx;
  675. }
  676. .carModel-nav-title-msg{
  677. font-size:30rpx;
  678. font-weight:400;
  679. color:rgba(255,255,255,1);
  680. display: block;
  681. padding-right: 20rpx;
  682. }
  683. }
  684. .cell-item-title{
  685. height:60rpx;
  686. background:rgba(250,250,250,1);
  687. font-size:28rpx;
  688. font-weight:400;
  689. color:rgba(102,102,102,1);
  690. line-height:60rpx;
  691. padding-left: 26rpx;
  692. }
  693. .span-cell{
  694. position: relative;
  695. display: -webkit-box;
  696. display: -webkit-flex;
  697. display: flex;
  698. box-sizing: border-box;
  699. width: 100%;
  700. padding: 6rpx 30rpx;
  701. overflow: hidden;
  702. color: #323233;
  703. font-size: 3.73333vw;
  704. line-height: 82rpx;
  705. height: 82rpx;
  706. background-color: #fff;
  707. border-bottom: 1px solid #ebedf0;
  708. }
  709. .carModel-nav-title{
  710. height:100rpx;
  711. background: linear-gradient(134deg, #FF8635 0%, #FF4828 100%);
  712. line-height: 100rpx;
  713. display: flex;
  714. z-index: 500;
  715. &.cell-logo{
  716. position: sticky;
  717. top: 0;
  718. background: linear-gradient(134deg, #FF8635 0%, #FF4828 100%);
  719. }
  720. .carModel-nav-title-box{
  721. width: 100%;
  722. display: flex;
  723. }
  724. .carModel-nav-title-img{
  725. margin: 20rpx;
  726. width: 60rpx;
  727. height: 60rpx;
  728. }
  729. .carModel-nav-title-msg{
  730. font-size:30rpx;
  731. font-weight:400;
  732. color:rgba(255,255,255,1);
  733. display: block;
  734. padding-right: 20px;
  735. }
  736. }
  737. .displacementListLine{
  738. min-height: 50rpx;
  739. padding: 20rpx 20rpx 20rpx 30rpx;
  740. font-size:28rpx;
  741. font-weight:600;
  742. color:rgba(51,51,51,1);
  743. line-height:50rpx;
  744. border-top: 2rpx solid rgb(238, 238, 238);
  745. background-color: rgb(255, 255, 255);
  746. }
  747. .displacementListBox{
  748. position: fixed;
  749. top: 0;
  750. left: 0;
  751. width: 100vw;
  752. height: 100vh;
  753. background:#F4F5F7 ;
  754. z-index: 11111;
  755. /* #ifdef H5 */
  756. top:44px;
  757. /* #endif */
  758. }
  759. .carGroupListBox{
  760. position: fixed;
  761. top: 0;
  762. left: 0;
  763. width: 100vw;
  764. height: 100vh;
  765. background:#F4F5F7 ;
  766. z-index: 11111;
  767. /* #ifdef H5 */
  768. top:44px;
  769. /* #endif */
  770. }
  771. .brandList{
  772. height: calc(100vh - 100rpx);
  773. }
  774. .brand-select-titleselect{
  775. color: #FF4F00 !important;
  776. }
  777. </style>