addCar.vue 11 KB

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