addCar.vue 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837
  1. <template>
  2. <view class="content">
  3. <homenav :iStatusBarHeight="iStatusBarHeight" :bgColor="bgColor" :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. bgColor:'#FFF8E2'
  163. }
  164. },
  165. onLoad(opt) {
  166. this.iStatusBarHeight = uni.getSystemInfoSync().statusBarHeight;
  167. var carModelInfo = uni.getStorageSync("carModelInfo");
  168. if (carModelInfo) {
  169. this.carModelInfo = carModelInfo;
  170. }
  171. //uni.removeStorageSync('carModelInfo');
  172. this.themeColor = uni.getStorageSync("themeColor");
  173. this.getNowFormatDate();
  174. console.log(opt);
  175. this.type=opt.type
  176. this.isEditCar = opt.isEditCar
  177. this.carId = opt.id
  178. var vin=opt.vin
  179. if(vin){
  180. this.vin=vin
  181. }
  182. if (this.isEditCar == 'true') {
  183. this.getEditData()
  184. uni.setNavigationBarTitle({
  185. title: '编辑爱车'
  186. })
  187. /* uni.setNavigationBarColor({
  188. frontColor: "#000000",
  189. backgroundColor: '#FFF8E2'
  190. }) */
  191. }
  192. },
  193. onShow() {
  194. var carModelInfo = uni.getStorageSync("carModelInfo");
  195. if (carModelInfo) {
  196. this.carModelInfo = carModelInfo;
  197. }
  198. },
  199. methods: {
  200. goModel(){
  201. uni.navigateTo({
  202. url:'carModel?type=3'
  203. })
  204. },
  205. keyDel(v){
  206. let d = this.vin
  207. this.vin = d.substring(0,d.length-1)
  208. },
  209. keyVal(v){
  210. console.log(v)
  211. if(this.vin==null){
  212. this.vin=''
  213. }
  214. this.vin=this.vin + v.toString()
  215. },
  216. keyShow(){
  217. },
  218. keyHide(){
  219. },
  220. bb(){
  221. this.$refs.keyb._keyHide() //隐藏键盘
  222. },
  223. aaa(){
  224. this.$refs.keyb._keyShow() //显示键盘
  225. },
  226. onConfirm(e) {
  227. console.log(e)
  228. this.carModelInfo = e.obj
  229. },
  230. onCancel() {
  231. this.visible = false
  232. },
  233. getNowFormatDate() {
  234. var date = new Date();
  235. var seperator1 = "-";
  236. var year = date.getFullYear();
  237. var month = date.getMonth() + 1;
  238. var day = date.getDate();
  239. if (month >= 1 && month <= 9) {
  240. month = "0" + month;
  241. }
  242. if (day >= 0 && day <= 9) {
  243. day = "0" + day;
  244. }
  245. var currentdate = year + seperator1 + month + seperator1 + day;
  246. this.currentdate = currentdate;
  247. },
  248. getEditData() {
  249. uni.showLoading({
  250. title: '加载中'
  251. })
  252. var carModelInfo = {
  253. carModelInfo: {
  254. }
  255. }
  256. this.$http('opencarInfoOwner/queryCarInfoDetail', {
  257. id: this.carId
  258. }, 'GET').then(res => {
  259. uni.hideLoading();
  260. carModelInfo.carModelInfo.logo = res.data.brandLogo;
  261. carModelInfo.carModelInfo.brand = res.data.brand;
  262. carModelInfo.carModelInfo.carSeries = res.data.series;
  263. carModelInfo.carModelInfo.displacement = res.data.displacement;
  264. carModelInfo.carModelInfo.transmissionType = res.data.transmissionType;
  265. carModelInfo.carModelInfo.productionYear = res.data.annualmoney;
  266. carModelInfo.carModelInfo.carModel = res.data.carModel;
  267. carModelInfo.carModelInfo.guidePrice = res.data.guidePrice;
  268. carModelInfo.carModelInfo.engineModel = res.data.engineType;
  269. carModelInfo.carModelInfo.nLevelID = res.data.nLevelID;
  270. carModelInfo.carModelInfo.salesName = res.data.saleName;
  271. // 展示时
  272. this.plateNo = res.data.plateNumber;
  273. this.plateNoArr=[ ...this.plateNo ];
  274. carModelInfo.value = res.data.carModel;
  275. if (res.data.buyDate) {
  276. this.time = res.data.buyDate.slice(0,10);
  277. }
  278. this.mileage = res.data.milage;
  279. this.carModelInfo = carModelInfo;
  280. this.vin = res.data.vIN
  281. console.log('this carModelInfo', this.carModelInfo);
  282. })
  283. },
  284. goCarModel() {
  285. this.bb()
  286. uni.navigateTo({
  287. url: 'carModel'
  288. })
  289. },
  290. setPlate(plate) {
  291. console.log(plate)
  292. if (plate.length >= 7) this.plateNo = plate;
  293. this.plateShow = false;
  294. if (plate.length == 7) {
  295. this.plate_type = 2
  296. } else {
  297. this.plate_type = 52
  298. }
  299. this.plateNoArr=[ ...plate ];
  300. console.log(this.plateNoArr)
  301. // this.queryCarmodelByPlateNumber()
  302. },
  303. queryCarmodelByPlateNumber() {
  304. uni.showLoading({
  305. title: '加载中'
  306. })
  307. this.$http('worldKeepCar/worldHome/queryCarmodelByPlateNumber', {
  308. license_plate: this.plateNo,
  309. plate_type: this.plate_type,
  310. }, 'GET').then(res => {
  311. uni.hideLoading();
  312. console.log(res);
  313. if (res.data) {
  314. this.vin = res.data.vin
  315. if (res.data.buyTime) {
  316. this.time = res.data.buyTime.slice(0, res.data.buyTime.length - 8);
  317. }
  318. }
  319. if (res.data.list && res.data.list.length > 0) {
  320. this.sbPlate = res.data.list
  321. //this.sbPlate=this.sbPlate.concat(this.sbPlate)
  322. if (this.sbPlate.length == 1) {
  323. //this.carModelInfo.value=res.data[0].value
  324. this.carModelInfo = res.data.list[0]
  325. } else {
  326. this.visible = true
  327. }
  328. }
  329. })
  330. },
  331. bindChange(e) {
  332. console.log(e);
  333. this.time = e.target.value
  334. },
  335. saveCar() {
  336. uni.showLoading({
  337. title: '保存中'
  338. })
  339. if (this.plateNo == '') {
  340. uni.showToast({
  341. title: '请填写车牌号',
  342. icon: 'none',
  343. duration: 3000
  344. });
  345. return false;
  346. }
  347. /* if(!this.mileage){
  348. uni.showToast({
  349. title: '请填写里程',
  350. icon: 'none',
  351. duration: 3000
  352. });
  353. return false;
  354. } */
  355. if(!this.carModelInfo.value){
  356. uni.showToast({
  357. title: '请选择车型',
  358. icon: 'none',
  359. duration: 3000
  360. });
  361. return false;
  362. }
  363. if (this.isEditCar == 'true') {
  364. this.updateTMemberCar()
  365. } else {
  366. this.addTMemberCar()
  367. }
  368. },
  369. addTMemberCar() {
  370. var cardata = {
  371. plateNumber: this.plateNo,
  372. milage: this.mileage?this.mileage:0,
  373. brand: "",
  374. displacement: "",
  375. series: "",
  376. annualmoney: "",
  377. carModel: "",
  378. saleName: "",
  379. transmissionType: "",
  380. model: "",
  381. nLevelID: "",
  382. engineType: "",
  383. brandLogo: "",
  384. buyDate: this.time,
  385. guidePrice: "",
  386. vIN: this.vin,
  387. };
  388. if(this.carModelInfo){
  389. cardata = {
  390. plateNumber: this.plateNo,
  391. milage: this.mileage?this.mileage:0,
  392. brand: this.carModelInfo.carModelInfo.brand,
  393. displacement: this.carModelInfo.carModelInfo.displacement,
  394. series: this.carModelInfo.carModelInfo.carSeries,
  395. annualmoney: this.carModelInfo.carModelInfo.productionYear,
  396. carModel: this.carModelInfo.value,
  397. saleName: this.carModelInfo.carModelInfo.salesName,
  398. transmissionType: this.carModelInfo.carModelInfo.transmissionType,
  399. model: this.carModelInfo.carModelInfo.carModel,
  400. nLevelID: this.carModelInfo.carModelInfo.nLevelID,
  401. engineType: this.carModelInfo.carModelInfo.engineModel,
  402. brandLogo: this.carModelInfo.carModelInfo.logo,
  403. buyDate: this.time,
  404. guidePrice: this.carModelInfo.carModelInfo.guidePrice,
  405. vIN: this.vin,
  406. }
  407. }
  408. this.$http('opencarInfoOwner/addCarOwner', cardata, 'POST').then(res => {
  409. uni.hideLoading();
  410. if (res.code == 0) {
  411. uni.showToast({
  412. title: '保存成功',
  413. icon: 'none',
  414. duration: 3000
  415. });
  416. uni.removeStorageSync('carModelInfo');
  417. if(this.type==1){
  418. uni.setStorage({
  419. key: 'indexaddcar',
  420. data: '1',
  421. success: function () {
  422. setTimeout(function() {
  423. uni.navigateBack({
  424. })
  425. }, 1000);
  426. }
  427. });
  428. }else{
  429. setTimeout(function() {
  430. uni.navigateBack({
  431. })
  432. }, 3000);
  433. }
  434. } else {
  435. uni.showToast({
  436. title: res.msg,
  437. icon: 'none',
  438. duration: 3000
  439. });
  440. }
  441. })
  442. },
  443. updateTMemberCar() {
  444. var cardata = {
  445. plateNumber: this.plateNo,
  446. milage: this.mileage,
  447. brand: "",
  448. displacement: "",
  449. series: "",
  450. annualmoney: "",
  451. carModel: "",
  452. saleName: "",
  453. transmissionType: "",
  454. model: "",
  455. nLevelID: "",
  456. engineType: "",
  457. brandLogo: "",
  458. buyDate: this.time,
  459. guidePrice: "",
  460. vIN: this.vin,
  461. id:this.carId,
  462. };
  463. if(this.carModelInfo){
  464. cardata = {
  465. plateNumber: this.plateNo,
  466. milage: this.mileage,
  467. brand: this.carModelInfo.carModelInfo.brand,
  468. displacement: this.carModelInfo.carModelInfo.displacement,
  469. series: this.carModelInfo.carModelInfo.carSeries,
  470. annualmoney: this.carModelInfo.carModelInfo.productionYear,
  471. carModel: this.carModelInfo.value,
  472. saleName: this.carModelInfo.carModelInfo.salesName,
  473. transmissionType: this.carModelInfo.carModelInfo.transmissionType,
  474. model: this.carModelInfo.carModelInfo.carModel,
  475. nLevelID: this.carModelInfo.carModelInfo.nLevelID,
  476. engineType: this.carModelInfo.carModelInfo.engineModel,
  477. brandLogo: this.carModelInfo.carModelInfo.logo,
  478. buyDate: this.time,
  479. guidePrice: this.carModelInfo.carModelInfo.guidePrice,
  480. vIN: this.vin,
  481. id:this.carId,
  482. }
  483. }
  484. this.$http('opencarInfoOwner/addCarOwner', cardata, 'POST').then(res => {
  485. uni.hideLoading();
  486. if (res.code == 0) {
  487. uni.showToast({
  488. title: '保存成功',
  489. icon: 'none',
  490. duration: 3000
  491. });
  492. uni.removeStorageSync('carModelInfo');
  493. setTimeout(function() {
  494. uni.navigateBack({
  495. })
  496. }, 3000);
  497. } else {
  498. uni.showToast({
  499. title: res.msg,
  500. icon: 'none',
  501. duration: 3000
  502. });
  503. }
  504. })
  505. },
  506. }
  507. }
  508. </script>
  509. <style>
  510. .content {
  511. min-height: 100vh;
  512. background: linear-gradient( 180deg, #FFF8E2 0%, #F4F4F4 100%);
  513. padding-top: 20rpx;
  514. }
  515. .logo{
  516. width: 120rpx;height: 120rpx;border-radius: 50%;
  517. }
  518. .newBox{
  519. padding: 24rpx;
  520. }
  521. .modelBox{
  522. background: #FFFFFF;border-radius: 20rpx;
  523. padding: 30rpx;
  524. }
  525. .mbTop{
  526. display: flex;line-height: 42rpx;
  527. }
  528. .mbTopTxt1{
  529. font-weight: 500;
  530. font-size: 30rpx;color: #090909;
  531. }
  532. .mbTopTxt2{
  533. font-weight: 400;color: #999999;
  534. font-size: 22rpx;padding-left: 25rpx;
  535. }
  536. .lineRgiht{
  537. display: flex;
  538. }
  539. .lineRtxt{
  540. font-weight: 400;line-height: 45rpx;
  541. font-size: 22rpx;
  542. color: #9A9A9A;
  543. padding-right: 10rpx;
  544. }
  545. .jtIcon{
  546. width: 10rpx;height: 20rpx;margin-top: 15rpx;
  547. }
  548. .brand{
  549. font-weight: 500;
  550. font-size: 32rpx;
  551. color: #090909;
  552. line-height: 45rpx;
  553. width: 350rpx;
  554. overflow: hidden;
  555. text-overflow: ellipsis;
  556. display: -webkit-box;
  557. -webkit-line-clamp: 2;
  558. -webkit-box-orient: vertical;
  559. }
  560. .mbCont{
  561. display: flex;
  562. }
  563. .mbContBox{
  564. width: 480rpx;padding-left: 25rpx;
  565. }
  566. .mbCont{
  567. padding-top: 25rpx;
  568. }
  569. .carMTxt{
  570. font-weight: 400;
  571. font-size: 24rpx;
  572. color: #9E9E9E;
  573. line-height: 33rpx;
  574. padding-top: 6rpx;
  575. }
  576. .plateNumberMs{
  577. font-weight: 500;padding-top: 26rpx;
  578. font-size: 26rpx;
  579. color: #000000;
  580. }
  581. .plateNumberBox{
  582. display: flex;padding-top: 12rpx;
  583. padding-bottom: 20rpx;
  584. border-bottom: 1px solid #EEEEEE;
  585. }
  586. .sheng{
  587. width: 64rpx;
  588. height: 68rpx;
  589. background: #FACC2D;
  590. border-radius: 6rpx;
  591. font-size: 32rpx;
  592. color: #FFFFFF;
  593. text-align: center;
  594. line-height: 68rpx;
  595. margin-right: 6rpx;
  596. }
  597. .zhimu{
  598. width: 60rpx;
  599. height: 64rpx;
  600. border-radius: 6rpx;
  601. border: 2rpx solid #FACC2D;
  602. font-size: 32rpx;
  603. color: #090909;
  604. text-align: center;
  605. line-height: 68rpx;
  606. margin-right: 6rpx;
  607. }
  608. .xny{
  609. width: 68rpx;
  610. height: 64rpx;
  611. border-radius: 6rpx;
  612. border: 2rpx dashed #FACC2D;
  613. font-size: 20rpx;
  614. color: #FACC2D;
  615. text-align: center;
  616. line-height: 68rpx;
  617. }
  618. .jbLine{
  619. border-bottom: 1px solid #EEEEEE;
  620. padding: 16rpx 0;
  621. }
  622. .jtIcon2{
  623. width: 10rpx;height: 20rpx;margin-top: 8rpx;
  624. }
  625. .jbLineTitle{
  626. font-weight: 500;
  627. font-size: 26rpx;
  628. color: #000000;
  629. line-height: 37rpx;
  630. }
  631. .jbLineCont{
  632. display: flex;justify-content: space-between;
  633. }
  634. .jbLineInput{
  635. font-size: 24rpx;
  636. color: #3C3C3C;
  637. line-height: 34rpx;
  638. height: 34rpx;
  639. }
  640. .jbLineCont{
  641. font-size: 24rpx;
  642. color: #3C3C3C;
  643. line-height: 34rpx;
  644. }
  645. .jbMS{
  646. font-weight: 400;
  647. font-size: 24rpx;
  648. color: #9A9A9A;padding-top: 30rpx;
  649. }
  650. .complete{
  651. width: 661rpx;text-align: center;
  652. height: 86rpx;line-height: 86rpx;
  653. background: #FCD903;
  654. border-radius: 43rpx;
  655. font-size: 32rpx;
  656. color: #110B01;
  657. margin: 0 auto;
  658. margin-top: 50rpx;
  659. }
  660. .carMessage {
  661. margin: 0rpx 24rpx 40rpx;
  662. padding-top: 20rpx;
  663. height: 500rpx;
  664. background-color: #FFFFFF;
  665. border-radius: 10rpx;
  666. }
  667. .mesView {
  668. display: flex;
  669. align-items: center;
  670. width: 100%;
  671. height: 120rpx;
  672. background-color: #FFFFFF;
  673. }
  674. .leftTitle {
  675. margin: 28rpx;
  676. width: 180rpx;
  677. font-size: 28rpx;
  678. color: #666666;
  679. }
  680. .noSelectColor {
  681. color: #999999;
  682. font-size: 24rpx;
  683. }
  684. .selectColor {
  685. color: #333333;
  686. }
  687. .carMod {
  688. text-overflow: -o-ellipsis-lastline;
  689. overflow: hidden;
  690. text-overflow: ellipsis;
  691. display: -webkit-box;
  692. -webkit-line-clamp: 2;
  693. line-clamp: 2;
  694. -webkit-box-orient: vertical;
  695. }
  696. .big_rightArrow {
  697. margin-right: 28rpx;
  698. width: 14rpx;
  699. height: 23rpx;
  700. }
  701. .cityBtn {
  702. width: 65%;
  703. font-size: 28rpx;
  704. }
  705. .plateNumber {
  706. width: 55%;
  707. font-size: 28rpx;
  708. }
  709. .carModBtn {
  710. width: 65%;
  711. font-size: 28rpx;
  712. }
  713. .timeBtn {
  714. width: 65%;
  715. font-size: 28rpx;
  716. }
  717. .mileageInput {
  718. width: 20%;
  719. font-size: 28rpx;
  720. }
  721. .vinInput{
  722. width: 60%;
  723. font-size: 28rpx;
  724. }
  725. .kmStr {
  726. font-size: 28rpx;
  727. color: #333333;
  728. }
  729. .bottomView {
  730. background-color: #FFFFFF;
  731. width: 100%;
  732. height: 120rpx;
  733. position: fixed;
  734. bottom: 0rpx;
  735. padding-bottom: constant(safe-area-inset-bottom);
  736. padding-bottom: env(safe-area-inset-bottom);
  737. }
  738. .saveCar {
  739. background-color: #EC0F0A;
  740. margin: 23rpx 30rpx;
  741. height: 74rpx;
  742. border-radius: 37rpx;
  743. color: #FFFFFF;
  744. font-size: 30rpx;
  745. font-weight: bold;
  746. text-align: center;
  747. line-height: 74rpx;
  748. }
  749. .line{
  750. margin: 1rpx 28rpx;
  751. background-color: #EEEEEE;
  752. height: 1rpx;
  753. }
  754. .stars{
  755. color: #FF2400;
  756. }
  757. </style>