addCar.vue 8.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377
  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" 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">
  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()">保存爱车</view>
  34. </view>
  35. </view>
  36. </template>
  37. <script>
  38. import plateInput from "@/components/uni-plate-input/uni-plate-input.vue"
  39. export default {
  40. components: {
  41. plateInput
  42. },
  43. data() {
  44. return {
  45. plateNo: '',
  46. plateShow: false,
  47. carModelInfo: '',
  48. time: '',
  49. mileage: '',
  50. carId: '',
  51. isEditCar: false,
  52. }
  53. },
  54. onLoad(opt) {
  55. var carModelInfo = uni.getStorageSync("carModelInfo");
  56. if (carModelInfo) {
  57. this.carModelInfo = carModelInfo;
  58. }
  59. console.log(opt);
  60. this.isEditCar = opt.isEditCar
  61. this.carId = opt.id
  62. if (this.isEditCar == 1) {
  63. this.getEditData()
  64. }
  65. },
  66. onShow() {
  67. var carModelInfo = uni.getStorageSync("carModelInfo");
  68. if (carModelInfo) {
  69. this.carModelInfo = carModelInfo;
  70. }
  71. },
  72. methods: {
  73. getEditData() {
  74. uni.showLoading({});
  75. var carModelInfo = {
  76. carModelInfo: {
  77. }
  78. }
  79. this.$http('worldKeepCar/worldHome/queryMyTMemberCarDetail', {
  80. id: this.carId
  81. }, 'GET').then(res => {
  82. uni.hideLoading();
  83. carModelInfo.carModelInfo.logo = res.data.brandLogo;
  84. carModelInfo.carModelInfo.brand = res.data.brand;
  85. carModelInfo.carModelInfo.carSeries = res.data.series;
  86. carModelInfo.carModelInfo.displacement = res.data.displacement;
  87. carModelInfo.carModelInfo.transmissionType = res.data.transmissionType;
  88. carModelInfo.carModelInfo.modelYear = res.data.annualmoney;
  89. carModelInfo.carModelInfo.carModel = res.data.carModel;
  90. carModelInfo.carModelInfo.guidePrice = res.data.guidePrice;
  91. // 展示时
  92. this.plateNo = res.data.plateNumber;
  93. carModelInfo.value = res.data.carModel;
  94. this.time = res.data.createTime;
  95. this.mileage = res.data.milage;
  96. this.carModelInfo = carModelInfo;
  97. })
  98. },
  99. goCarModel() {
  100. uni.navigateTo({
  101. url: 'carModel'
  102. })
  103. },
  104. setPlate(plate) {
  105. if (plate.length >= 7) this.plateNo = plate;
  106. this.plateShow = false;
  107. },
  108. bindChange(e) {
  109. console.log(e);
  110. this.time = e.target.value
  111. },
  112. saveCar() {
  113. uni.showLoading({});
  114. if (this.plateNo == '') {
  115. uni.showToast({
  116. title: '请填写车牌号',
  117. icon: 'none',
  118. duration: 3000
  119. });
  120. return false;
  121. }
  122. if (this.carModelInfo == '') {
  123. uni.showToast({
  124. title: '请选择车型',
  125. icon: 'none',
  126. duration: 3000
  127. });
  128. return false;
  129. }
  130. if (this.time == '') {
  131. uni.showToast({
  132. title: '请选择购车时间',
  133. icon: 'none',
  134. duration: 3000
  135. });
  136. return false;
  137. }
  138. if (this.mileage == '') {
  139. uni.showToast({
  140. title: '请输入行驶里程',
  141. icon: 'none',
  142. duration: 3000
  143. });
  144. return false;
  145. }
  146. if (this.isEditCar == 1) {
  147. this.updateTMemberCar()
  148. }
  149. else {
  150. this.addTMemberCar()
  151. }
  152. },
  153. addTMemberCar(){
  154. this.$http('worldKeepCar/worldHome/addTMemberCar', {
  155. plateNumber: this.plateNo,
  156. milage: this.mileage,
  157. brand: this.carModelInfo.carModelInfo.brand,
  158. displacement: this.carModelInfo.carModelInfo.displacement,
  159. series: this.carModelInfo.carModelInfo.carSeries,
  160. annualmoney: this.carModelInfo.carModelInfo.productionYear,
  161. carModel: this.carModelInfo.title,
  162. salesName: this.carModelInfo.carModelInfo.salesName,
  163. transmissionType: this.carModelInfo.carModelInfo.transmissionType,
  164. model: this.carModelInfo.carModelInfo.carModel,
  165. nLevelID: this.carModelInfo.carModelInfo.nLevelID,
  166. engineType: this.carModelInfo.carModelInfo.engineModel,
  167. brandLogo: this.carModelInfo.carModelInfo.logo,
  168. AcarTime: this.time,
  169. guidePrice: this.carModelInfo.carModelInfo.guidePrice,
  170. }, 'POST').then(res => {
  171. uni.hideLoading();
  172. if (res.code == 0) {
  173. uni.showToast({
  174. title: '保存成功',
  175. icon: 'none',
  176. duration: 3000
  177. });
  178. uni.removeStorageSync('carModelInfo');
  179. setTimeout(function() {
  180. uni.navigateBack({
  181. })
  182. }, 3000);
  183. } else {
  184. uni.showToast({
  185. title: res.msg,
  186. icon: 'none',
  187. duration: 3000
  188. });
  189. }
  190. })
  191. },
  192. updateTMemberCar(){
  193. this.$http('worldKeepCar/worldHome/updateTMemberCar', {
  194. plateNumber: this.plateNo,
  195. milage: this.mileage,
  196. brand: this.carModelInfo.carModelInfo.brand,
  197. displacement: this.carModelInfo.carModelInfo.displacement,
  198. series: this.carModelInfo.carModelInfo.carSeries,
  199. annualmoney: this.carModelInfo.carModelInfo.productionYear,
  200. carModel: this.carModelInfo.title,
  201. salesName: this.carModelInfo.carModelInfo.salesName,
  202. transmissionType: this.carModelInfo.carModelInfo.transmissionType,
  203. model: this.carModelInfo.carModelInfo.carModel,
  204. nLevelID: this.carModelInfo.carModelInfo.nLevelID,
  205. engineType: this.carModelInfo.carModelInfo.engineModel,
  206. brandLogo: this.carModelInfo.carModelInfo.logo,
  207. AcarTime: this.time,
  208. guidePrice: this.carModelInfo.carModelInfo.guidePrice,
  209. id: this.carId,
  210. }, 'POST').then(res => {
  211. uni.hideLoading();
  212. if (res.code == 0) {
  213. uni.showToast({
  214. title: '保存成功',
  215. icon: 'none',
  216. duration: 3000
  217. });
  218. uni.removeStorageSync('carModelInfo');
  219. setTimeout(function() {
  220. uni.navigateBack({
  221. })
  222. }, 3000);
  223. } else {
  224. uni.showToast({
  225. title: res.msg,
  226. icon: 'none',
  227. duration: 3000
  228. });
  229. }
  230. })
  231. },
  232. }
  233. }
  234. </script>
  235. <style>
  236. .content {
  237. min-height: 100vh;
  238. background-color: #F4F5F7;
  239. padding-top: 20rpx;
  240. }
  241. .carMessage {
  242. margin: 0rpx 24rpx 40rpx;
  243. padding-top: 20rpx;
  244. height: 500rpx;
  245. background-color: #FFFFFF;
  246. border-radius: 10rpx;
  247. }
  248. .mesView {
  249. display: flex;
  250. align-items: center;
  251. width: 100%;
  252. height: 120rpx;
  253. background-color: #FFFFFF;
  254. }
  255. .leftTitle {
  256. margin: 28rpx;
  257. width: 120rpx;
  258. font-size: 28rpx;
  259. color: #666666;
  260. }
  261. .noSelectColor {
  262. color: #999999;
  263. }
  264. .selectColor {
  265. color: #333333;
  266. }
  267. .rightArrow {
  268. margin-right: 28rpx;
  269. width: 14rpx;
  270. height: 23rpx;
  271. }
  272. .cityBtn {
  273. width: 65%;
  274. font-size: 28rpx;
  275. }
  276. .plateNumber {
  277. width: 55%;
  278. font-size: 28rpx;
  279. }
  280. .carModBtn {
  281. width: 65%;
  282. font-size: 28rpx;
  283. }
  284. .timeBtn {
  285. width: 65%;
  286. font-size: 28rpx;
  287. }
  288. .mileageInput {
  289. width: 20%;
  290. font-size: 28rpx;
  291. }
  292. .kmStr {
  293. font-size: 28rpx;
  294. color: #333333;
  295. }
  296. .bottomView {
  297. background-color: #FFFFFF;
  298. width: 100%;
  299. height: 120rpx;
  300. position: fixed;
  301. bottom: 0rpx;
  302. }
  303. .saveCar {
  304. background: linear-gradient(135deg, #FD5300 0%, #FF270A 100%);
  305. margin: 23rpx 30rpx;
  306. height: 74rpx;
  307. line-height: 74rpx;
  308. border-radius: 37rpx;
  309. color: #FFFFFF;
  310. font-size: 30rpx;
  311. font-weight: bold;
  312. text-align: center;
  313. }
  314. </style>