addCar.vue 11 KB

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