activation.vue 10 KB

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