activation.vue 11 KB

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