addCar.vue 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493
  1. <template>
  2. <view class="content">
  3. <!-- 填写车辆信息 -->
  4. <view class="carMessage">
  5. <view class="mesView">
  6. <view class="leftTitle">车牌号</view>
  7. <input class="plateNumber" placeholder-style="color:#999999" placeholder="请输入车牌号" disabled="true"
  8. @tap="plateShow=true" v-model.trim="plateNo" />
  9. <plate-input v-if="plateShow" :plate="plateNo" @export="setPlate" @close="plateShow=false" />
  10. </view>
  11. <view class="line"></view>
  12. <view class="mesView">
  13. <view class="leftTitle">VIN</view>
  14. <input class="vinInput selectColor" type="text" v-model="vin" placeholder="请输入"
  15. placeholder-style="color:#999999" />
  16. <view class="kmStr"></view>
  17. </view>
  18. <view class="line"></view>
  19. <view class="mesView" @click="goCarModel()">
  20. <view class="leftTitle">车型</view>
  21. <view class="carModBtn noSelectColor" v-if="!carModelInfo.value">请选择车型</view>
  22. <view class="carModBtn selectColor carMod" v-else>{{carModelInfo.value}}</view>
  23. <image src="../../../static/img/rightArrow.png" class="rightArrow"></image>
  24. </view>
  25. <view class="line"></view>
  26. <view class="mesView">
  27. <view class="leftTitle">行驶里程</view>
  28. <input class="mileageInput selectColor" type="number" v-model="mileage" placeholder="请输入"
  29. placeholder-style="color:#999999" />
  30. <view class="kmStr">km</view>
  31. </view>
  32. <view class="line"></view>
  33. <view class="mesView">
  34. <view class="leftTitle">注册登记时间</view>
  35. <picker class="timeBtn" @change="bindChange" mode="date" :end="currentdate" :value="time">
  36. <view class="uni-input selectColor" v-if="time">{{time}}</view>
  37. <view class="uni-input noSelectColor" v-else>请选择</view>
  38. </picker>
  39. <image src="../../../static/img/rightArrow.png" class="rightArrow"></image>
  40. </view>
  41. </view>
  42. <view class="bottomView">
  43. <view class="saveCar" @click="saveCar()">保存</view>
  44. </view>
  45. </view>
  46. </template>
  47. <script>
  48. import plateInput from "@/components/uni-plate-input/uni-plate-input.vue"
  49. export default {
  50. components: {
  51. plateInput
  52. },
  53. data() {
  54. return {
  55. plateNo: '',
  56. plateShow: false,
  57. carModelInfo: '',
  58. time: '',
  59. mileage: '',
  60. carId: '',
  61. isEditCar: false,
  62. currentdate: '',
  63. plate_type: '',
  64. sbPlate: [],
  65. visible: false,
  66. defaultProps: {
  67. "label": "value",
  68. "value": "ids"
  69. },
  70. vin: '',
  71. }
  72. },
  73. onLoad(opt) {
  74. uni.removeStorageSync('carModelInfo');
  75. this.getNowFormatDate();
  76. console.log(opt);
  77. this.isEditCar = opt.isEditCar
  78. this.carId = opt.id
  79. if (this.isEditCar == 'true') {
  80. this.getEditData()
  81. uni.setNavigationBarTitle({
  82. title: '编辑爱车'
  83. })
  84. }
  85. },
  86. onShow() {
  87. var carModelInfo = uni.getStorageSync("carModelInfo");
  88. if (carModelInfo) {
  89. this.carModelInfo = carModelInfo;
  90. }
  91. },
  92. methods: {
  93. onConfirm(e) {
  94. console.log(e)
  95. this.carModelInfo = e.obj
  96. },
  97. onCancel() {
  98. this.visible = false
  99. },
  100. getNowFormatDate() {
  101. var date = new Date();
  102. var seperator1 = "-";
  103. var year = date.getFullYear();
  104. var month = date.getMonth() + 1;
  105. var day = date.getDate();
  106. if (month >= 1 && month <= 9) {
  107. month = "0" + month;
  108. }
  109. if (day >= 0 && day <= 9) {
  110. day = "0" + day;
  111. }
  112. var currentdate = year + seperator1 + month + seperator1 + day;
  113. this.currentdate = currentdate;
  114. },
  115. getEditData() {
  116. uni.showLoading({
  117. title: '加载中'
  118. })
  119. var carModelInfo = {
  120. carModelInfo: {
  121. }
  122. }
  123. this.$http('worldKeepCar/worldHome/queryMyTMemberCarDetail', {
  124. id: this.carId
  125. }, 'GET').then(res => {
  126. uni.hideLoading();
  127. carModelInfo.carModelInfo.logo = res.data.brandLogo;
  128. carModelInfo.carModelInfo.brand = res.data.brand;
  129. carModelInfo.carModelInfo.carSeries = res.data.series;
  130. carModelInfo.carModelInfo.displacement = res.data.displacement;
  131. carModelInfo.carModelInfo.transmissionType = res.data.transmissionType;
  132. carModelInfo.carModelInfo.productionYear = res.data.annualmoney;
  133. carModelInfo.carModelInfo.carModel = res.data.carModel;
  134. carModelInfo.carModelInfo.guidePrice = res.data.guidePrice;
  135. carModelInfo.carModelInfo.engineModel = res.data.engineType;
  136. carModelInfo.carModelInfo.nLevelID = res.data.nLevelID;
  137. carModelInfo.carModelInfo.salesName = res.data.saleName;
  138. // 展示时
  139. this.plateNo = res.data.plateNumber;
  140. carModelInfo.value = res.data.carModel;
  141. if (res.data.acarTime) {
  142. this.time = res.data.acarTime.slice(0, res.data.createTime.length - 8);
  143. }
  144. this.mileage = res.data.milage;
  145. this.carModelInfo = carModelInfo;
  146. this.vin = res.data.vIN
  147. console.log('this carModelInfo', this.carModelInfo);
  148. })
  149. },
  150. goCarModel() {
  151. uni.navigateTo({
  152. url: 'carModel'
  153. })
  154. },
  155. setPlate(plate) {
  156. console.log(plate)
  157. if (plate.length >= 7) this.plateNo = plate;
  158. this.plateShow = false;
  159. if (plate.length == 7) {
  160. this.plate_type = 2
  161. } else {
  162. this.plate_type = 52
  163. }
  164. this.queryCarmodelByPlateNumber()
  165. },
  166. queryCarmodelByPlateNumber() {
  167. uni.showLoading({
  168. title: '加载中'
  169. })
  170. this.$http('worldKeepCar/worldHome/queryCarmodelByPlateNumber', {
  171. license_plate: this.plateNo,
  172. plate_type: this.plate_type,
  173. }, 'GET').then(res => {
  174. uni.hideLoading();
  175. console.log(res);
  176. if (res.data) {
  177. this.vin = res.data.vin
  178. if (res.data.buyTime) {
  179. this.time = res.data.buyTime.slice(0, res.data.buyTime.length - 8);
  180. }
  181. }
  182. if (res.data.list && res.data.list.length > 0) {
  183. this.sbPlate = res.data.list
  184. //this.sbPlate=this.sbPlate.concat(this.sbPlate)
  185. if (this.sbPlate.length == 1) {
  186. //this.carModelInfo.value=res.data[0].value
  187. this.carModelInfo = res.data.list[0]
  188. } else {
  189. this.visible = true
  190. }
  191. }
  192. })
  193. },
  194. bindChange(e) {
  195. console.log(e);
  196. this.time = e.target.value
  197. },
  198. saveCar() {
  199. uni.showLoading({
  200. title: '保存中'
  201. })
  202. if (this.plateNo == '') {
  203. uni.showToast({
  204. title: '请填写车牌号',
  205. icon: 'none',
  206. duration: 3000
  207. });
  208. return false;
  209. }
  210. if (this.carModelInfo == '') {
  211. uni.showToast({
  212. title: '请选择车型',
  213. icon: 'none',
  214. duration: 3000
  215. });
  216. return false;
  217. }
  218. if (this.time == '') {
  219. uni.showToast({
  220. title: '请选择购车时间',
  221. icon: 'none',
  222. duration: 3000
  223. });
  224. return false;
  225. }
  226. if (this.mileage == '') {
  227. uni.showToast({
  228. title: '请输入行驶里程',
  229. icon: 'none',
  230. duration: 3000
  231. });
  232. return false;
  233. }
  234. if (this.isEditCar == 'true') {
  235. this.updateTMemberCar()
  236. } else {
  237. this.addTMemberCar()
  238. }
  239. },
  240. addTMemberCar() {
  241. this.$http('opencarInfoOwner/addCarOwner', {
  242. plateNumber: this.plateNo,
  243. milage: this.mileage,
  244. brand: this.carModelInfo.carModelInfo.brand,
  245. displacement: this.carModelInfo.carModelInfo.displacement,
  246. series: this.carModelInfo.carModelInfo.carSeries,
  247. annualmoney: this.carModelInfo.carModelInfo.productionYear,
  248. carModel: this.carModelInfo.value,
  249. saleName: this.carModelInfo.carModelInfo.salesName,
  250. transmissionType: this.carModelInfo.carModelInfo.transmissionType,
  251. model: this.carModelInfo.carModelInfo.carModel,
  252. nLevelID: this.carModelInfo.carModelInfo.nLevelID,
  253. engineType: this.carModelInfo.carModelInfo.engineModel,
  254. brandLogo: this.carModelInfo.carModelInfo.logo,
  255. acarTime: this.time,
  256. guidePrice: this.carModelInfo.carModelInfo.guidePrice,
  257. vIN: this.vin,
  258. }, 'POST').then(res => {
  259. uni.hideLoading();
  260. if (res.code == 0) {
  261. uni.showToast({
  262. title: '保存成功',
  263. icon: 'none',
  264. duration: 3000
  265. });
  266. uni.removeStorageSync('carModelInfo');
  267. setTimeout(function() {
  268. uni.navigateBack({
  269. })
  270. }, 3000);
  271. } else {
  272. uni.showToast({
  273. title: res.msg,
  274. icon: 'none',
  275. duration: 3000
  276. });
  277. }
  278. })
  279. },
  280. updateTMemberCar() {
  281. this.$http('worldKeepCar/worldHome/updateTMemberCar', {
  282. plateNumber: this.plateNo,
  283. milage: this.mileage,
  284. brand: this.carModelInfo.carModelInfo.brand,
  285. displacement: this.carModelInfo.carModelInfo.displacement,
  286. series: this.carModelInfo.carModelInfo.carSeries,
  287. annualmoney: this.carModelInfo.carModelInfo.productionYear,
  288. carModel: this.carModelInfo.value,
  289. saleName: this.carModelInfo.carModelInfo.salesName,
  290. transmissionType: this.carModelInfo.carModelInfo.transmissionType,
  291. model: this.carModelInfo.carModelInfo.carModel,
  292. nLevelID: this.carModelInfo.carModelInfo.nLevelID,
  293. engineType: this.carModelInfo.carModelInfo.engineModel,
  294. brandLogo: this.carModelInfo.carModelInfo.logo,
  295. acarTime: this.time,
  296. guidePrice: this.carModelInfo.carModelInfo.guidePrice,
  297. vIN: this.vin,
  298. id: this.carId,
  299. }, 'POST').then(res => {
  300. uni.hideLoading();
  301. if (res.code == 0) {
  302. uni.showToast({
  303. title: '保存成功',
  304. icon: 'none',
  305. duration: 3000
  306. });
  307. uni.removeStorageSync('carModelInfo');
  308. setTimeout(function() {
  309. uni.navigateBack({
  310. })
  311. }, 3000);
  312. } else {
  313. uni.showToast({
  314. title: res.msg,
  315. icon: 'none',
  316. duration: 3000
  317. });
  318. }
  319. })
  320. },
  321. }
  322. }
  323. </script>
  324. <style>
  325. .content {
  326. min-height: 100vh;
  327. background-color: #F4F5F7;
  328. padding-top: 20rpx;
  329. }
  330. .carMessage {
  331. margin: 0rpx 24rpx 40rpx;
  332. padding-top: 20rpx;
  333. height: 500rpx;
  334. background-color: #FFFFFF;
  335. border-radius: 10rpx;
  336. }
  337. .mesView {
  338. display: flex;
  339. align-items: center;
  340. width: 100%;
  341. height: 120rpx;
  342. background-color: #FFFFFF;
  343. }
  344. .leftTitle {
  345. margin: 28rpx;
  346. width: 180rpx;
  347. font-size: 28rpx;
  348. color: #666666;
  349. }
  350. .noSelectColor {
  351. color: #999999;
  352. }
  353. .selectColor {
  354. color: #333333;
  355. }
  356. .carMod {
  357. text-overflow: -o-ellipsis-lastline;
  358. overflow: hidden;
  359. text-overflow: ellipsis;
  360. display: -webkit-box;
  361. -webkit-line-clamp: 2;
  362. line-clamp: 2;
  363. -webkit-box-orient: vertical;
  364. }
  365. .rightArrow {
  366. margin-right: 28rpx;
  367. width: 14rpx;
  368. height: 23rpx;
  369. }
  370. .cityBtn {
  371. width: 65%;
  372. font-size: 28rpx;
  373. }
  374. .plateNumber {
  375. width: 55%;
  376. font-size: 28rpx;
  377. }
  378. .carModBtn {
  379. width: 65%;
  380. font-size: 28rpx;
  381. }
  382. .timeBtn {
  383. width: 65%;
  384. font-size: 28rpx;
  385. }
  386. .mileageInput {
  387. width: 20%;
  388. font-size: 28rpx;
  389. }
  390. .vinInput{
  391. width: 60%;
  392. font-size: 28rpx;
  393. }
  394. .kmStr {
  395. font-size: 28rpx;
  396. color: #333333;
  397. }
  398. .bottomView {
  399. background-color: #FFFFFF;
  400. width: 100%;
  401. height: 120rpx;
  402. position: fixed;
  403. bottom: 0rpx;
  404. padding-bottom: constant(safe-area-inset-bottom);
  405. padding-bottom: env(safe-area-inset-bottom);
  406. }
  407. .saveCar {
  408. background-color: #D53533;
  409. margin: 23rpx 30rpx;
  410. height: 74rpx;
  411. border-radius: 37rpx;
  412. color: #FFFFFF;
  413. font-size: 30rpx;
  414. font-weight: bold;
  415. text-align: center;
  416. line-height: 74rpx;
  417. }
  418. .line{
  419. margin: 1rpx 28rpx;
  420. background-color: #EEEEEE;
  421. height: 1rpx;
  422. }
  423. </style>