addCar.vue 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823
  1. <template>
  2. <view class="content">
  3. <homenav :iStatusBarHeight="iStatusBarHeight" :title="'我的车库'" :cj="3"></homenav>
  4. <!-- 填写车辆信息 -->
  5. <!-- <view class="carMessage">
  6. <view class="mesView">
  7. <view class="leftTitle"><span class="stars">*</span> 车牌号</view>
  8. <input class="plateNumber" placeholder-style="color:#999999" placeholder="请输入车牌号" disabled="true"
  9. @tap="plateShow=true,bb()" v-model.trim="plateNo" />
  10. <plate-input v-if="plateShow" :plate="plateNo" @export="setPlate" @close="plateShow=false" />
  11. </view>
  12. <view class="line"></view>
  13. <view class="mesView">
  14. <view class="leftTitle">VIN</view>
  15. <view class="vinInput selectColor" @click="aaa">
  16. <span v-if="vin">{{vin}}</span>
  17. <span v-else style="color:#999999">请输入VIN</span>
  18. </view>
  19. <view class="kmStr"></view>
  20. </view>
  21. <view class="line"></view>
  22. <view class="mesView" @click="goCarModel()">
  23. <view class="leftTitle"><span class="stars">*</span>车型</view>
  24. <view class="carModBtn noSelectColor" v-if="!carModelInfo.value">请选择车型</view>
  25. <view class="carModBtn selectColor carMod" v-else>{{carModelInfo.value}}</view>
  26. <image src="../../../static/img/big_rightArrow.png" class="big_rightArrow"></image>
  27. </view>
  28. <view class="line"></view>
  29. <view class="mesView" @click="bb">
  30. <view class="leftTitle"><span class="stars">*</span>行驶里程</view>
  31. <input class="mileageInput selectColor" type="number" v-model="mileage" placeholder="请输入"
  32. placeholder-style="color:#999999" />
  33. <view class="kmStr">km</view>
  34. </view>
  35. <view class="line"></view>
  36. <view class="mesView" @click="bb">
  37. <view class="leftTitle">注册登记时间</view>
  38. <picker class="timeBtn" @change="bindChange" mode="date" :end="currentdate" :value="time">
  39. <view class="uni-input selectColor" v-if="time">{{time}}</view>
  40. <view class="uni-input noSelectColor" v-else>请选择</view>
  41. </picker>
  42. <image src="../../../static/img/big_rightArrow.png" class="big_rightArrow"></image>
  43. </view>
  44. </view>
  45. -->
  46. <view class="newBox">
  47. <!-- 车辆款型 -->
  48. <view class="modelBox">
  49. <view class="mbTop">
  50. <view class="mbTopTxt1">车辆款型</view>
  51. <view class="mbTopTxt2">完善信息为你精准匹配服务</view>
  52. </view>
  53. <view class="mbCont">
  54. <image :src="carModelInfo.carModelInfo.logo" mode="" class="logo"></image>
  55. <view class="mbContBox">
  56. <view style="display: flex;justify-content: space-between;">
  57. <view class="brand">{{carModelInfo.carModelInfo.brand?carModelInfo.carModelInfo.brand:''}}
  58. &nbsp; {{carModelInfo.carModelInfo.carModel?carModelInfo.carModelInfo.carModel:''}}
  59. </view>
  60. <view class="lineRgiht" @click="goModel">
  61. <view class="lineRtxt">重新选择</view>
  62. <image src="../../../static/img2/jt1.png" mode="" class="jtIcon"></image>
  63. </view>
  64. </view>
  65. <view class="carMTxt">{{carModelInfo.value?carModelInfo.value:''}}</view>
  66. </view>
  67. </view>
  68. </view>
  69. <!-- 车辆款型 -->
  70. <!-- 基信信息 -->
  71. <view class="modelBox" style="margin-top: 20rpx;">
  72. <view class="mbTop">
  73. <view class="mbTopTxt1">基本信息</view>
  74. </view>
  75. <view class="plateNumberMs">车牌号*</view>
  76. <view class="plateNumberBox" @tap="plateShow=true,bb()">
  77. <view class="sheng">{{plateNoArr.length?plateNoArr[0]:''}}</view>
  78. <view class="zhimu">{{plateNoArr.length?plateNoArr[1]:''}}</view>
  79. <view class="zhimu">{{plateNoArr.length?plateNoArr[2]:''}}</view>
  80. <view class="zhimu">{{plateNoArr.length?plateNoArr[3]:''}}</view>
  81. <view class="zhimu">{{plateNoArr.length?plateNoArr[4]:''}}</view>
  82. <view class="zhimu">{{plateNoArr.length?plateNoArr[5]:''}}</view>
  83. <view class="zhimu">{{plateNoArr.length?plateNoArr[6]:''}}</view>
  84. <view class="zhimu" v-if="plateNoArr.length==8">{{plateNoArr.length==8?plateNoArr[7]:''}}</view>
  85. <view class="xny" v-if="plateNoArr.length!=8">新能源</view>
  86. </view>
  87. <plate-input v-if="plateShow" :plate="plateNo" @export="setPlate" @close="plateShow=false" />
  88. <view class="jbLine">
  89. <view class="jbLineTitle">VIN</view>
  90. <view class="jbLineCont" @click="aaa">
  91. <span class="jbLineSpan" v-if="vin">{{vin}}</span>
  92. <span v-else style="color:#999999">请输入VIN</span>
  93. <!-- <input type="text" v-model="vin" class="jbLineInput" placeholder="请输入VIN"/> -->
  94. <image src="../../../static/img2/jt1.png" mode="" class="jtIcon2"></image>
  95. </view>
  96. </view>
  97. <view class="jbLine">
  98. <view class="jbLineTitle">当前里程</view>
  99. <view class="jbLineCont">
  100. <input type="number" v-model="mileage" class="jbLineInput" placeholder="请输入当前里程"/>
  101. <image src="../../../static/img2/jt1.png" mode="" class="jtIcon2"></image>
  102. </view>
  103. </view>
  104. <view class="jbLine">
  105. <view class="jbLineTitle">注册登记时间</view>
  106. <view class="jbLineCont">
  107. <picker class="timeBtn" @change="bindChange" mode="date" :end="currentdate" :value="time">
  108. <view class="uni-input selectColor" v-if="time">{{time}}</view>
  109. <view class="uni-input noSelectColor" v-else>请选择</view>
  110. </picker>
  111. <image src="../../../static/img2/jt1.png" mode="" class="jtIcon2"></image>
  112. </view>
  113. </view>
  114. <view class="jbMS">我们绝不会泄漏您的个人信息,仅用于适配商品</view>
  115. </view>
  116. <!-- 基信信息 -->
  117. </view>
  118. <view class="complete" @click="saveCar()">完成车辆</view>
  119. <!-- <view class="bottomView">
  120. <view class="saveCar" :style="{background:'#'+themeColor}" @click="saveCar()">保存</view>
  121. </view> -->
  122. <tki-float-keyboard ref="keyb" :mode="keyMode" :type="keyType"
  123. :title="keyTitle" @del="keyDel"
  124. @val="keyVal" @show="keyShow" @hide="keyHide"></tki-float-keyboard>
  125. </view>
  126. </template>
  127. <script>
  128. // 普通引入组件 https://ext.dcloud.net.cn/plugin?id=44
  129. import tkiFloatKeyboard from '@/components/tki-float-keyboard/tki-float-keyboard.vue'
  130. import plateInput from "@/components/uni-plate-input/uni-plate-input.vue"
  131. import homenav from "@/components/homenav/nav.vue"
  132. export default {
  133. components: {
  134. plateInput,tkiFloatKeyboard,homenav
  135. },
  136. data() {
  137. return {
  138. plateNo: '',
  139. plateShow: false,
  140. carModelInfo: '',
  141. time: '',
  142. mileage: '',
  143. carId: '',
  144. isEditCar: false,
  145. currentdate: '',
  146. plate_type: '',
  147. sbPlate: [],
  148. visible: false,
  149. defaultProps: {
  150. "label": "value",
  151. "value": "ids"
  152. },
  153. vin: '',
  154. type:'',
  155. themeColor:'',
  156. title: 'Hello',
  157. keyMode:'keyboard',
  158. keyTitle:'VIN',
  159. keyType:'1',
  160. iStatusBarHeight:'',
  161. plateNoArr:[],
  162. }
  163. },
  164. onLoad(opt) {
  165. this.iStatusBarHeight = uni.getSystemInfoSync().statusBarHeight;
  166. var carModelInfo = uni.getStorageSync("carModelInfo");
  167. if (carModelInfo) {
  168. this.carModelInfo = carModelInfo;
  169. }
  170. //uni.removeStorageSync('carModelInfo');
  171. this.themeColor = uni.getStorageSync("themeColor");
  172. this.getNowFormatDate();
  173. console.log(opt);
  174. this.type=opt.type
  175. this.isEditCar = opt.isEditCar
  176. this.carId = opt.id
  177. if (this.isEditCar == 'true') {
  178. this.getEditData()
  179. uni.setNavigationBarTitle({
  180. title: '编辑爱车'
  181. })
  182. }
  183. },
  184. onShow() {
  185. /* var carModelInfo = uni.getStorageSync("carModelInfo");
  186. if (carModelInfo) {
  187. this.carModelInfo = carModelInfo;
  188. } */
  189. },
  190. methods: {
  191. goModel(){
  192. uni.navigateTo({
  193. url:'carModel'
  194. })
  195. },
  196. keyDel(v){
  197. let d = this.vin
  198. this.vin = d.substring(0,d.length-1)
  199. },
  200. keyVal(v){
  201. console.log(v)
  202. if(this.vin==null){
  203. this.vin=''
  204. }
  205. this.vin=this.vin + v.toString()
  206. },
  207. keyShow(){
  208. },
  209. keyHide(){
  210. },
  211. bb(){
  212. this.$refs.keyb._keyHide() //隐藏键盘
  213. },
  214. aaa(){
  215. this.$refs.keyb._keyShow() //显示键盘
  216. },
  217. onConfirm(e) {
  218. console.log(e)
  219. this.carModelInfo = e.obj
  220. },
  221. onCancel() {
  222. this.visible = false
  223. },
  224. getNowFormatDate() {
  225. var date = new Date();
  226. var seperator1 = "-";
  227. var year = date.getFullYear();
  228. var month = date.getMonth() + 1;
  229. var day = date.getDate();
  230. if (month >= 1 && month <= 9) {
  231. month = "0" + month;
  232. }
  233. if (day >= 0 && day <= 9) {
  234. day = "0" + day;
  235. }
  236. var currentdate = year + seperator1 + month + seperator1 + day;
  237. this.currentdate = currentdate;
  238. },
  239. getEditData() {
  240. uni.showLoading({
  241. title: '加载中'
  242. })
  243. var carModelInfo = {
  244. carModelInfo: {
  245. }
  246. }
  247. this.$http('opencarInfoOwner/queryCarInfoDetail', {
  248. id: this.carId
  249. }, 'GET').then(res => {
  250. uni.hideLoading();
  251. carModelInfo.carModelInfo.logo = res.data.brandLogo;
  252. carModelInfo.carModelInfo.brand = res.data.brand;
  253. carModelInfo.carModelInfo.carSeries = res.data.series;
  254. carModelInfo.carModelInfo.displacement = res.data.displacement;
  255. carModelInfo.carModelInfo.transmissionType = res.data.transmissionType;
  256. carModelInfo.carModelInfo.productionYear = res.data.annualmoney;
  257. carModelInfo.carModelInfo.carModel = res.data.carModel;
  258. carModelInfo.carModelInfo.guidePrice = res.data.guidePrice;
  259. carModelInfo.carModelInfo.engineModel = res.data.engineType;
  260. carModelInfo.carModelInfo.nLevelID = res.data.nLevelID;
  261. carModelInfo.carModelInfo.salesName = res.data.saleName;
  262. // 展示时
  263. this.plateNo = res.data.plateNumber;
  264. this.plateNoArr=[ ...this.plateNo ];
  265. carModelInfo.value = res.data.carModel;
  266. if (res.data.buyDate) {
  267. this.time = res.data.buyDate.slice(0,10);
  268. }
  269. this.mileage = res.data.milage;
  270. this.carModelInfo = carModelInfo;
  271. this.vin = res.data.vIN
  272. console.log('this carModelInfo', this.carModelInfo);
  273. })
  274. },
  275. goCarModel() {
  276. this.bb()
  277. uni.navigateTo({
  278. url: 'carModel'
  279. })
  280. },
  281. setPlate(plate) {
  282. console.log(plate)
  283. if (plate.length >= 7) this.plateNo = plate;
  284. this.plateShow = false;
  285. if (plate.length == 7) {
  286. this.plate_type = 2
  287. } else {
  288. this.plate_type = 52
  289. }
  290. this.plateNoArr=[ ...plate ];
  291. console.log(this.plateNoArr)
  292. // this.queryCarmodelByPlateNumber()
  293. },
  294. queryCarmodelByPlateNumber() {
  295. uni.showLoading({
  296. title: '加载中'
  297. })
  298. this.$http('worldKeepCar/worldHome/queryCarmodelByPlateNumber', {
  299. license_plate: this.plateNo,
  300. plate_type: this.plate_type,
  301. }, 'GET').then(res => {
  302. uni.hideLoading();
  303. console.log(res);
  304. if (res.data) {
  305. this.vin = res.data.vin
  306. if (res.data.buyTime) {
  307. this.time = res.data.buyTime.slice(0, res.data.buyTime.length - 8);
  308. }
  309. }
  310. if (res.data.list && res.data.list.length > 0) {
  311. this.sbPlate = res.data.list
  312. //this.sbPlate=this.sbPlate.concat(this.sbPlate)
  313. if (this.sbPlate.length == 1) {
  314. //this.carModelInfo.value=res.data[0].value
  315. this.carModelInfo = res.data.list[0]
  316. } else {
  317. this.visible = true
  318. }
  319. }
  320. })
  321. },
  322. bindChange(e) {
  323. console.log(e);
  324. this.time = e.target.value
  325. },
  326. saveCar() {
  327. uni.showLoading({
  328. title: '保存中'
  329. })
  330. if (this.plateNo == '') {
  331. uni.showToast({
  332. title: '请填写车牌号',
  333. icon: 'none',
  334. duration: 3000
  335. });
  336. return false;
  337. }
  338. /* if(!this.mileage){
  339. uni.showToast({
  340. title: '请填写里程',
  341. icon: 'none',
  342. duration: 3000
  343. });
  344. return false;
  345. } */
  346. if(!this.carModelInfo.value){
  347. uni.showToast({
  348. title: '请选择车型',
  349. icon: 'none',
  350. duration: 3000
  351. });
  352. return false;
  353. }
  354. if (this.isEditCar == 'true') {
  355. this.updateTMemberCar()
  356. } else {
  357. this.addTMemberCar()
  358. }
  359. },
  360. addTMemberCar() {
  361. var cardata = {
  362. plateNumber: this.plateNo,
  363. milage: this.mileage?this.mileage:0,
  364. brand: "",
  365. displacement: "",
  366. series: "",
  367. annualmoney: "",
  368. carModel: "",
  369. saleName: "",
  370. transmissionType: "",
  371. model: "",
  372. nLevelID: "",
  373. engineType: "",
  374. brandLogo: "",
  375. buyDate: this.time,
  376. guidePrice: "",
  377. vIN: this.vin,
  378. };
  379. if(this.carModelInfo){
  380. cardata = {
  381. plateNumber: this.plateNo,
  382. milage: this.mileage?this.mileage:0,
  383. brand: this.carModelInfo.carModelInfo.brand,
  384. displacement: this.carModelInfo.carModelInfo.displacement,
  385. series: this.carModelInfo.carModelInfo.carSeries,
  386. annualmoney: this.carModelInfo.carModelInfo.productionYear,
  387. carModel: this.carModelInfo.value,
  388. saleName: this.carModelInfo.carModelInfo.salesName,
  389. transmissionType: this.carModelInfo.carModelInfo.transmissionType,
  390. model: this.carModelInfo.carModelInfo.carModel,
  391. nLevelID: this.carModelInfo.carModelInfo.nLevelID,
  392. engineType: this.carModelInfo.carModelInfo.engineModel,
  393. brandLogo: this.carModelInfo.carModelInfo.logo,
  394. buyDate: this.time,
  395. guidePrice: this.carModelInfo.carModelInfo.guidePrice,
  396. vIN: this.vin,
  397. }
  398. }
  399. this.$http('opencarInfoOwner/addCarOwner', cardata, 'POST').then(res => {
  400. uni.hideLoading();
  401. if (res.code == 0) {
  402. uni.showToast({
  403. title: '保存成功',
  404. icon: 'none',
  405. duration: 3000
  406. });
  407. uni.removeStorageSync('carModelInfo');
  408. if(this.type==1){
  409. uni.setStorage({
  410. key: 'indexaddcar',
  411. data: '1',
  412. success: function () {
  413. setTimeout(function() {
  414. uni.navigateBack({
  415. })
  416. }, 1000);
  417. }
  418. });
  419. }else{
  420. setTimeout(function() {
  421. uni.navigateBack({
  422. })
  423. }, 3000);
  424. }
  425. } else {
  426. uni.showToast({
  427. title: res.msg,
  428. icon: 'none',
  429. duration: 3000
  430. });
  431. }
  432. })
  433. },
  434. updateTMemberCar() {
  435. var cardata = {
  436. plateNumber: this.plateNo,
  437. milage: this.mileage,
  438. brand: "",
  439. displacement: "",
  440. series: "",
  441. annualmoney: "",
  442. carModel: "",
  443. saleName: "",
  444. transmissionType: "",
  445. model: "",
  446. nLevelID: "",
  447. engineType: "",
  448. brandLogo: "",
  449. buyDate: this.time,
  450. guidePrice: "",
  451. vIN: this.vin,
  452. id:this.carId,
  453. };
  454. if(this.carModelInfo){
  455. cardata = {
  456. plateNumber: this.plateNo,
  457. milage: this.mileage,
  458. brand: this.carModelInfo.carModelInfo.brand,
  459. displacement: this.carModelInfo.carModelInfo.displacement,
  460. series: this.carModelInfo.carModelInfo.carSeries,
  461. annualmoney: this.carModelInfo.carModelInfo.productionYear,
  462. carModel: this.carModelInfo.value,
  463. saleName: this.carModelInfo.carModelInfo.salesName,
  464. transmissionType: this.carModelInfo.carModelInfo.transmissionType,
  465. model: this.carModelInfo.carModelInfo.carModel,
  466. nLevelID: this.carModelInfo.carModelInfo.nLevelID,
  467. engineType: this.carModelInfo.carModelInfo.engineModel,
  468. brandLogo: this.carModelInfo.carModelInfo.logo,
  469. buyDate: this.time,
  470. guidePrice: this.carModelInfo.carModelInfo.guidePrice,
  471. vIN: this.vin,
  472. id:this.carId,
  473. }
  474. }
  475. this.$http('opencarInfoOwner/addCarOwner', cardata, 'POST').then(res => {
  476. uni.hideLoading();
  477. if (res.code == 0) {
  478. uni.showToast({
  479. title: '保存成功',
  480. icon: 'none',
  481. duration: 3000
  482. });
  483. uni.removeStorageSync('carModelInfo');
  484. setTimeout(function() {
  485. uni.navigateBack({
  486. })
  487. }, 3000);
  488. } else {
  489. uni.showToast({
  490. title: res.msg,
  491. icon: 'none',
  492. duration: 3000
  493. });
  494. }
  495. })
  496. },
  497. }
  498. }
  499. </script>
  500. <style>
  501. .content {
  502. min-height: 100vh;
  503. background: linear-gradient( 180deg, #FFF8E2 0%, #F4F4F4 100%);
  504. padding-top: 20rpx;
  505. }
  506. .logo{
  507. width: 125rpx;height: 125rpx;border-radius: 50%;
  508. }
  509. .newBox{
  510. padding: 24rpx;
  511. }
  512. .modelBox{
  513. background: #FFFFFF;border-radius: 20rpx;
  514. padding: 30rpx;
  515. }
  516. .mbTop{
  517. display: flex;line-height: 42rpx;
  518. }
  519. .mbTopTxt1{
  520. font-weight: 500;
  521. font-size: 30rpx;color: #090909;
  522. }
  523. .mbTopTxt2{
  524. font-weight: 400;color: #999999;
  525. font-size: 22rpx;padding-left: 25rpx;
  526. }
  527. .lineRgiht{
  528. display: flex;
  529. }
  530. .lineRtxt{
  531. font-weight: 400;line-height: 45rpx;
  532. font-size: 22rpx;
  533. color: #9A9A9A;
  534. padding-right: 10rpx;
  535. }
  536. .jtIcon{
  537. width: 10rpx;height: 20rpx;margin-top: 10rpx;
  538. }
  539. .brand{
  540. font-weight: 500;
  541. font-size: 32rpx;
  542. color: #090909;
  543. line-height: 45rpx;
  544. width: 350rpx;
  545. }
  546. .mbCont{
  547. display: flex;
  548. }
  549. .mbContBox{
  550. width: 480rpx;padding-left: 25rpx;
  551. }
  552. .mbCont{
  553. padding-top: 25rpx;
  554. }
  555. .carMTxt{
  556. font-weight: 400;
  557. font-size: 24rpx;
  558. color: #9E9E9E;
  559. line-height: 33rpx;
  560. padding-top: 6rpx;
  561. }
  562. .plateNumberMs{
  563. font-weight: 500;padding-top: 26rpx;
  564. font-size: 26rpx;
  565. color: #000000;
  566. }
  567. .plateNumberBox{
  568. display: flex;padding-top: 12rpx;
  569. padding-bottom: 20rpx;
  570. border-bottom: 1px solid #EEEEEE;
  571. }
  572. .sheng{
  573. width: 64rpx;
  574. height: 68rpx;
  575. background: #FACC2D;
  576. border-radius: 6rpx;
  577. font-size: 32rpx;
  578. color: #FFFFFF;
  579. text-align: center;
  580. line-height: 68rpx;
  581. margin-right: 6rpx;
  582. }
  583. .zhimu{
  584. width: 60rpx;
  585. height: 64rpx;
  586. border-radius: 6rpx;
  587. border: 2rpx solid #FACC2D;
  588. font-size: 32rpx;
  589. color: #090909;
  590. text-align: center;
  591. line-height: 68rpx;
  592. margin-right: 6rpx;
  593. }
  594. .xny{
  595. width: 68rpx;
  596. height: 64rpx;
  597. border-radius: 6rpx;
  598. border: 2rpx dashed #FACC2D;
  599. font-size: 20rpx;
  600. color: #FACC2D;
  601. text-align: center;
  602. line-height: 68rpx;
  603. }
  604. .jbLine{
  605. border-bottom: 1px solid #EEEEEE;
  606. padding: 12rpx 0;
  607. }
  608. .jtIcon2{
  609. width: 10rpx;height: 20rpx;margin-top: 8rpx;
  610. }
  611. .jbLineTitle{
  612. font-weight: 500;
  613. font-size: 26rpx;
  614. color: #000000;
  615. line-height: 37rpx;
  616. }
  617. .jbLineCont{
  618. display: flex;justify-content: space-between;
  619. }
  620. .jbLineInput{
  621. font-size: 24rpx;
  622. color: #3C3C3C;
  623. line-height: 34rpx;
  624. height: 34rpx;
  625. }
  626. .jbLineCont{
  627. font-size: 24rpx;
  628. color: #3C3C3C;
  629. line-height: 34rpx;
  630. }
  631. .jbMS{
  632. font-weight: 400;
  633. font-size: 24rpx;
  634. color: #9A9A9A;padding-top: 20rpx;
  635. }
  636. .complete{
  637. width: 661rpx;text-align: center;
  638. height: 86rpx;line-height: 86rpx;
  639. background: #FCD903;
  640. border-radius: 43rpx;
  641. font-size: 32rpx;
  642. color: #110B01;
  643. margin: 0 auto;
  644. margin-top: 50rpx;
  645. }
  646. .carMessage {
  647. margin: 0rpx 24rpx 40rpx;
  648. padding-top: 20rpx;
  649. height: 500rpx;
  650. background-color: #FFFFFF;
  651. border-radius: 10rpx;
  652. }
  653. .mesView {
  654. display: flex;
  655. align-items: center;
  656. width: 100%;
  657. height: 120rpx;
  658. background-color: #FFFFFF;
  659. }
  660. .leftTitle {
  661. margin: 28rpx;
  662. width: 180rpx;
  663. font-size: 28rpx;
  664. color: #666666;
  665. }
  666. .noSelectColor {
  667. color: #999999;
  668. }
  669. .selectColor {
  670. color: #333333;
  671. }
  672. .carMod {
  673. text-overflow: -o-ellipsis-lastline;
  674. overflow: hidden;
  675. text-overflow: ellipsis;
  676. display: -webkit-box;
  677. -webkit-line-clamp: 2;
  678. line-clamp: 2;
  679. -webkit-box-orient: vertical;
  680. }
  681. .big_rightArrow {
  682. margin-right: 28rpx;
  683. width: 14rpx;
  684. height: 23rpx;
  685. }
  686. .cityBtn {
  687. width: 65%;
  688. font-size: 28rpx;
  689. }
  690. .plateNumber {
  691. width: 55%;
  692. font-size: 28rpx;
  693. }
  694. .carModBtn {
  695. width: 65%;
  696. font-size: 28rpx;
  697. }
  698. .timeBtn {
  699. width: 65%;
  700. font-size: 28rpx;
  701. }
  702. .mileageInput {
  703. width: 20%;
  704. font-size: 28rpx;
  705. }
  706. .vinInput{
  707. width: 60%;
  708. font-size: 28rpx;
  709. }
  710. .kmStr {
  711. font-size: 28rpx;
  712. color: #333333;
  713. }
  714. .bottomView {
  715. background-color: #FFFFFF;
  716. width: 100%;
  717. height: 120rpx;
  718. position: fixed;
  719. bottom: 0rpx;
  720. padding-bottom: constant(safe-area-inset-bottom);
  721. padding-bottom: env(safe-area-inset-bottom);
  722. }
  723. .saveCar {
  724. background-color: #D53533;
  725. margin: 23rpx 30rpx;
  726. height: 74rpx;
  727. border-radius: 37rpx;
  728. color: #FFFFFF;
  729. font-size: 30rpx;
  730. font-weight: bold;
  731. text-align: center;
  732. line-height: 74rpx;
  733. }
  734. .line{
  735. margin: 1rpx 28rpx;
  736. background-color: #EEEEEE;
  737. height: 1rpx;
  738. }
  739. .stars{
  740. color: #FF2400;
  741. }
  742. </style>