activation.vue 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408
  1. <template>
  2. <view class="">
  3. <navBar :name="typePage=='index'?'归还车辆':'车辆激活'" left="0"></navBar>
  4. <view class="container-view">
  5. <view class="return-info">
  6. <view class="h5">车辆信息</view>
  7. <view v-if="overdueMoney" class="return-top flex-row flex-between">
  8. <view style="align-items: baseline;" class="flex-row">逾期费用:
  9. <allPrice :amount="(overdueMoney/100)" />
  10. </view>
  11. </view>
  12. <view class="return-top flex-row flex-between">
  13. <view>车辆编号:{{car_sn}}</view>
  14. </view>
  15. <view class="return-top flex-row flex-between">
  16. <view>车辆品牌:{{carInfoData.brand_name}}</view>
  17. </view>
  18. <view class="return-top flex-row flex-between">
  19. <view>车辆颜色:{{carInfoData.color_name}}</view>
  20. </view>
  21. <view v-if="carInfoData.license_plate_number" class="return-top flex-row flex-between">
  22. <view>车牌号:{{carInfoData.license_plate_number}}</view>
  23. </view>
  24. <view class="return-top flex-row flex-between">
  25. <view>车辆名称:{{carInfoData.car_name}}</view>
  26. </view>
  27. <view class="return-top flex-row flex-between">
  28. <view>车型:{{carInfoData.model_name}}</view>
  29. </view>
  30. <view class="return-top flex-row flex-between">
  31. <view>续航:{{(carInfoData.endurance / 1000).toFixed(2)}}km</view>
  32. </view>
  33. <view class="return-top flex-row flex-between">
  34. <view>重量:{{(carInfoData.weight / 1000).toFixed(2)}}kg</view>
  35. </view>
  36. <view class="return-top flex-row ">
  37. <view>照片:</view>
  38. <view style="display: flex;align-items: center;" class="">
  39. <image style="margin-right: 10rpx;" v-for="(item,index) of carInfoData.model_images"
  40. :key="index" class="img" :src="item" mode="aspectFit"></image>
  41. </view>
  42. </view>
  43. </view>
  44. <view v-if="shopInfo.shop_name" class="return-info">
  45. <view class="h5">门店信息</view>
  46. <view class="return-top flex-row flex-between">
  47. <view>门店名称:{{shopInfo.shop_name}}</view>
  48. </view>
  49. <view class="return-top flex-row flex-between">
  50. <view>门店地址:{{shopInfo.address}}</view>
  51. </view>
  52. </view>
  53. <view class="pictures-info">
  54. <view>上传照片</view>
  55. <!-- <view>这里是关于激活车辆照片的文案描述,这里是关于激活车辆照片的文案描述</view> -->
  56. <!-- <uploaders :max="Number(shopList.flk_hire_car_img_num)" :car_info="car_imgs"
  57. @update-car-images="handleCarImagesUpdate"></uploaders> -->
  58. <view class="list-group">
  59. <view class="list-item" @click="bindUpImg(index)" @longpress="bindDelImage(index)" :data-idx="index" v-for="(item, index) in shopList.flk_hire_return_car_img"
  60. :key="item.unique">
  61. <image v-if="!item.imgUrl" class="img-item-demo" :src="item.url"></image>
  62. <image v-else class="img-item" :src="item.imgUrl" mode="aspectFit"></image>
  63. <view class="img_text">{{ item.title? item.title : '车辆照片'}}</view>
  64. <view v-if="!item.imgUrl" class="empity-item">+</view>
  65. </view>
  66. </view>
  67. <view v-if="isReturnCar" @tap="submitReturn" class="pictures-btn">归还车辆</view>
  68. <view v-else @tap="submitEnabled" class="pictures-btn">激活车辆</view>
  69. </view>
  70. <PayTypeModel @closeShow="()=>isShowToBuy=false" @payToOrder="payToOrder" :free_price="totalPrice"
  71. :isShowToBuy="isShowToBuy" />
  72. </view>
  73. </view>
  74. </template>
  75. <script>
  76. import uploaders from '@/component/uploaders/uploaders';
  77. const http = require('@/common/http.js');
  78. const request = require('../../common/request');
  79. const config = require('@/common/config.js');
  80. const config_gyq = require('@/common/config_gyq.js');
  81. const common = require('@/common/common.js');
  82. import PayTypeModel from '@/component/payTypeModel/payTypeModel';
  83. import allPrice from '@/component/allPrice/allPrice';
  84. import upload from '@//component/uploaders/upload.js.js';
  85. export default {
  86. components: {
  87. uploaders,
  88. PayTypeModel,
  89. allPrice
  90. },
  91. data() {
  92. return {
  93. imgList:[],
  94. totalPrice: 0,
  95. isShowToBuy: false,
  96. myLocation: {},
  97. shopInfo: {},
  98. isReturnCar: "",
  99. overdueTimes: '',
  100. model_id: "",
  101. car_sn: "",
  102. shopList: {},
  103. carInfoData: {},
  104. carInfo: {},
  105. overdueMoney: 0,
  106. overdueTime: 0,
  107. sub_sn: '',
  108. model_image: '3',
  109. car_model: '',
  110. return_imgs: [],
  111. car_imgs: [],
  112. model_image_list: '',
  113. _image_list: [],
  114. typePage:''
  115. };
  116. },
  117. /**
  118. * 生命周期函数--监听页面加载
  119. */
  120. onLoad: function(options) {
  121. this.locationFn()
  122. this.isReturnCar = options.isReturnCar
  123. if (options.isReturnCar) {
  124. uni.setNavigationBarTitle({
  125. title: '归还车辆'
  126. })
  127. this.shopInfoFn()
  128. }
  129. this.sub_sn = options.sub_sn || ''
  130. this.model_id = options.model_id || ''
  131. this.car_sn = options.car_sn || ''
  132. this.typePage = options.type || ''
  133. if (options.overdueMoney == 'undefined' || !options.overdueMoney) {
  134. this.overdueMoney = 0
  135. } else {
  136. this.overdueTime = Number(options.overdueMoney)
  137. }
  138. if (options.overdueTime == 'undefined' || !options.overdueTime == 'undefined') {
  139. this.overdueTime = ''
  140. } else {
  141. this.overdueTime = options.overdueTime
  142. }
  143. this.totalPrice = Number(this.overdueMoney) || 0
  144. this.carDetFn()
  145. this.shopSettingFn()
  146. },
  147. // API_FLK_CAR_DETAIL
  148. /**
  149. * 生命周期函数--监听页面显示
  150. */
  151. onShow: function() {},
  152. onUnload: function() {},
  153. methods: {
  154. async bindDelImage(index){
  155. let res = await uni.showModal({
  156. title: '提示',
  157. content: '你确定要删除吗?',
  158. showCancel: true,
  159. })
  160. if (res[1].confirm) {
  161. this.shopList.flk_hire_return_car_img[index].imgUrl = ''
  162. this.$forceUpdate()
  163. }
  164. },
  165. async bindUpImg(index) {
  166. let res = await uni.chooseImage({
  167. count: 1,
  168. })
  169. if(res[1]){
  170. const imgList = res[1].tempFilePaths
  171. let data = await upload.uploadFile(imgList)
  172. this.shopList.flk_hire_return_car_img[index].imgUrl = data[0].url
  173. this.$forceUpdate()
  174. // this.imgList = this.imgList.concat(data)
  175. // this.updateImages(this.imgList)
  176. }
  177. },
  178. async payToOrder(pay_type) {
  179. let milliseconds = new Date().getTime();
  180. const current_time = this.overdueTime ? this.overdueTime : parseInt(milliseconds / 1000);
  181. let {
  182. data
  183. } = await request.postApi(config_gyq.API_FLK_CAR_RETURN_CAR, {
  184. latitude: this.myLocation.latitude,
  185. longitude: this.myLocation.longitude,
  186. shop_id: this.shopInfo.id,
  187. car_sn: this.car_sn,
  188. image_list: this._image_list.join(','),
  189. pay_type,
  190. price: this.totalPrice,
  191. current_time
  192. })
  193. if (data.code == 200) {
  194. uni.removeStorageSync('car_info')
  195. common.simpleToast('还车成功!')
  196. setTimeout(() => {
  197. uni.switchTab({
  198. url: `/pages/index/index`,
  199. });
  200. }, 800)
  201. } else {
  202. common.simpleToast(data.msg)
  203. }
  204. },
  205. async locationFn() {
  206. let _this = this
  207. uni.getLocation({
  208. success(res) {
  209. _this.myLocation = {
  210. latitude: res.latitude,
  211. longitude: res.longitude,
  212. }
  213. }
  214. })
  215. },
  216. //还车
  217. async submitReturn() {
  218. this._image_list = this.shopList.flk_hire_return_car_img.map(item => {
  219. return item.imgUrl
  220. })
  221. this._image_list = this._image_list.filter(item=> {
  222. if(item){
  223. return item
  224. }
  225. })
  226. if (this._image_list.length < this.shopList.flk_hire_return_car_img.length) return common.simpleToast('请上传车辆照片')
  227. if (this.totalPrice > 0) {
  228. this.isShowToBuy = true
  229. } else {
  230. this.payToOrder(1)
  231. }
  232. },
  233. async shopInfoFn() {
  234. let res = await uni.getLocation()
  235. let {
  236. data
  237. } = await request.postApi(config.API_NEAR_SHOP_LIST, {
  238. limit: 1,
  239. latitude: this.myLocation.latitude,
  240. longitude: this.myLocation.longitude,
  241. })
  242. if (data.code == 200) {
  243. if (data.data.list.length > 0) {
  244. this.shopInfo = data.data.list[0]
  245. } else {
  246. common.simpleToast('未获取到门店位置!')
  247. }
  248. } else {
  249. common.simpleToast(data.msg)
  250. }
  251. },
  252. async shopSettingFn() {
  253. let {
  254. data
  255. } = await request.postApi(config_gyq.API_FLK_INDEX_SHOP_SETTING, {
  256. model_id: this.model_id
  257. })
  258. if (data.code == 200) {
  259. this.shopList = data.data
  260. if(this.shopList.flk_hire_return_car_img.length < this.shopList.share_car_max_user_num){
  261. let num = this.shopList.share_car_max_user_num - this.shopList.flk_hire_return_car_img.length
  262. for (let i = 0; i < num; i++) {
  263. this.shopList.flk_hire_return_car_img.push({
  264. url:"",
  265. imgUrl:'',
  266. title:''
  267. })
  268. }
  269. }
  270. if(this.shopList.flk_hire_return_car_img.length > this.shopList.share_car_max_user_num){
  271. let flk_hire_return_car_img = []
  272. for (let i = 0; i < this.shopList.share_car_max_user_num; i++) {
  273. let item = this.shopList.flk_hire_return_car_img[i]
  274. this.shopList.flk_hire_return_car_img.push(item)
  275. }
  276. }
  277. } else {
  278. common.simpleToast(data.msg)
  279. }
  280. },
  281. async carDetFn() {
  282. let {
  283. data
  284. } = await request.postApi(config.API_FLK_CAR_DETAIL, {
  285. car_sn: this.car_sn
  286. })
  287. if (data.code == 200) {
  288. data.data.model_images = data.data.model_images.split(',') || []
  289. this.carInfoData = data.data
  290. } else {
  291. common.simpleToast(data.msg)
  292. }
  293. },
  294. handleCarImagesUpdate(updatedImages) {
  295. // 这里会接收到子组件传来的更新后的图片URL数组
  296. this.car_imgs = updatedImages
  297. },
  298. submitEnabled() {
  299. const me = this
  300. let _image_list =this.shopList.flk_hire_return_car_img.map(item => item.imgUrl)
  301. _image_list = _image_list.filter(item=> {
  302. if(item){
  303. return item
  304. }
  305. })
  306. if (_image_list.length < this.shopList.flk_hire_return_car_img.length) return common.simpleToast('请上传车辆照片')
  307. const pData = {
  308. car_sn: this.car_sn,
  309. sub_sn: this.sub_sn,
  310. image_list: _image_list.join(',')
  311. }
  312. http.postApi(config.API_FLK_CAR_ASSIGNMENT, pData, (resp) => {
  313. if (resp.data.code === 200) {
  314. common.simpleToast('车辆激活成功')
  315. setTimeout(function() {
  316. uni.switchTab({
  317. url: `/pages/index/index?plate_number=${me.car_sn}`,
  318. });
  319. }, 800)
  320. } else {
  321. common.simpleToast(resp.data.msg)
  322. }
  323. })
  324. }
  325. }
  326. };
  327. </script>
  328. <style scoped>
  329. @import './activation.css';
  330. .list-group {
  331. display: flex;
  332. flex-direction: row;
  333. justify-content: flex-start;
  334. flex-wrap: wrap;
  335. }
  336. .list-item {
  337. width: 200rpx;
  338. height: 200rpx;
  339. background-color: #F4F5F6;
  340. border-radius: 16rpx;
  341. display: flex;
  342. flex-direction: column;
  343. margin-right: 9rpx;
  344. margin-bottom: 10rpx;
  345. position: relative;
  346. align-items: center;
  347. }
  348. .img-item {
  349. width: 200rpx;
  350. height: 200rpx;
  351. background-color: #fff;
  352. border-radius: 16rpx;
  353. }
  354. .img-item-demo {
  355. width: 200rpx;
  356. height: 200rpx;
  357. background-color: #fff;
  358. border-radius: 16rpx;
  359. /* 翻转图片的颜色 */
  360. filter: invert(30%);
  361. opacity: 0.8;
  362. }
  363. .empity-item {
  364. position: absolute;
  365. /* #ifdef MP-ALIPAY */
  366. top: 0.7rem;
  367. left: 0.5rem;
  368. /* #endif */
  369. /* #ifdef MP-WEIXIN */
  370. top: 10rpx;
  371. left: 48rpx;
  372. /* #endif */
  373. color: #e6e6e6;
  374. font-size: 120rpx;
  375. text-align: center;
  376. }
  377. .img_text {
  378. font-family: PingFangSC, PingFang SC;
  379. font-weight: 500;
  380. font-size: 24rpx;
  381. color: #fff;
  382. line-height: 24rpx;
  383. /* text-align: center; */
  384. font-style: normal;
  385. /* text-align: center; */
  386. position: absolute;
  387. bottom: 17rpx;
  388. /* left: 73rpx; */
  389. }
  390. </style>