activation.vue 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409
  1. <template>
  2. <view class="">
  3. <navBar :name="typePage=='index'?$t('归还车辆'): $t('车辆激活')" left="0"></navBar>
  4. <view class="container-view">
  5. <view class="return-info">
  6. <view class="h5">{{ $t('车辆信息') }}</view>
  7. <view v-if="overdueMoney" class="return-top flex-row flex-between">
  8. <view style="align-items: baseline;" class="flex-row">{{ $t('逾期费用:') }}
  9. <allPrice :amount="(overdueMoney/100)" />
  10. </view>
  11. </view>
  12. <view class="return-top flex-row flex-between">
  13. <view>{{ $t('车辆编号:') }}{{car_sn}}</view>
  14. </view>
  15. <view class="return-top flex-row flex-between">
  16. <view>{{ $t('车辆品牌:') }}{{carInfoData.brand_name}}</view>
  17. </view>
  18. <view class="return-top flex-row flex-between">
  19. <view>{{ $t('车辆颜色:') }}{{carInfoData.color_name}}</view>
  20. </view>
  21. <view v-if="carInfoData.license_plate_number" class="return-top flex-row flex-between">
  22. <view>{{ $t('车牌号:') }}{{carInfoData.license_plate_number}}</view>
  23. </view>
  24. <view class="return-top flex-row flex-between">
  25. <view>{{ $t('车辆名称:') }}{{carInfoData.car_name}}</view>
  26. </view>
  27. <view class="return-top flex-row flex-between">
  28. <view>{{ $t('车型:') }}{{carInfoData.model_name}}</view>
  29. </view>
  30. <view class="return-top flex-row flex-between">
  31. <view>{{ $t('续航:') }}{{(carInfoData.endurance / 1000).toFixed(2)}}km</view>
  32. </view>
  33. <view class="return-top flex-row flex-between">
  34. <view>{{ $t('重量:') }}{{(carInfoData.weight / 1000).toFixed(2)}}kg</view>
  35. </view>
  36. <view class="return-top flex-row ">
  37. <view>{{ $t('照片:') }}</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">{{ $t('门店信息') }}</view>
  46. <view class="return-top flex-row flex-between">
  47. <view>{{ $t('门店名称:') }}{{shopInfo.shop_name}}</view>
  48. </view>
  49. <view class="return-top flex-row flex-between">
  50. <view>{{ $t('门店地址:') }}{{shopInfo.address}}</view>
  51. </view>
  52. </view>
  53. <view class="pictures-info">
  54. <view>{{ $t('上传照片') }}</view>
  55. <!-- <view>{{ $t('这里是关于激活车辆照片的文案描述,这里是关于激活车辆照片的文案描述') }}</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 : $t('车辆照片')}}</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">{{ $t('归还车辆') }}</view>
  68. <view v-else @tap="submitEnabled" class="pictures-btn">{{ $t('激活车辆') }}</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: this.$t('归还车辆')
  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: this.$t('提示'),
  157. content: this.$t('你确定要删除吗?'),
  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(this.$t('还车成功!'))
  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(this.$t('请上传车辆照片'))
  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(this.$t('未获取到门店位置!'))
  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. data.data.flk_hire_car_img_num = Number(data.data.flk_hire_car_img_num)
  261. if(this.shopList.flk_hire_return_car_img.length < this.shopList.flk_hire_car_img_num){
  262. let num = this.shopList.flk_hire_car_img_num - this.shopList.flk_hire_return_car_img.length
  263. for (let i = 0; i < num; i++) {
  264. this.shopList.flk_hire_return_car_img.push({
  265. url:"",
  266. imgUrl:'',
  267. title:''
  268. })
  269. }
  270. }
  271. if(this.shopList.flk_hire_return_car_img.length > this.shopList.flk_hire_car_img_num){
  272. let flk_hire_return_car_img = []
  273. for (let i = 0; i < this.shopList.flk_hire_car_img_num; i++) {
  274. let item = this.shopList.flk_hire_return_car_img[i]
  275. this.shopList.flk_hire_return_car_img.push(item)
  276. }
  277. }
  278. } else {
  279. common.simpleToast(data.msg)
  280. }
  281. },
  282. async carDetFn() {
  283. let {
  284. data
  285. } = await request.postApi(config.API_FLK_CAR_DETAIL, {
  286. car_sn: this.car_sn
  287. })
  288. if (data.code == 200) {
  289. data.data.model_images = data.data.model_images.split(',') || []
  290. this.carInfoData = data.data
  291. } else {
  292. common.simpleToast(data.msg)
  293. }
  294. },
  295. handleCarImagesUpdate(updatedImages) {
  296. // 这里会接收到子组件传来的更新后的图片URL数组
  297. this.car_imgs = updatedImages
  298. },
  299. submitEnabled() {
  300. const me = this
  301. let _image_list =this.shopList.flk_hire_return_car_img.map(item => item.imgUrl)
  302. _image_list = _image_list.filter(item=> {
  303. if(item){
  304. return item
  305. }
  306. })
  307. if (_image_list.length < this.shopList.flk_hire_return_car_img.length) return common.simpleToast(this.$t('请上传车辆照片'))
  308. const pData = {
  309. car_sn: this.car_sn,
  310. sub_sn: this.sub_sn,
  311. image_list: _image_list.join(',')
  312. }
  313. http.postApi(config.API_FLK_CAR_ASSIGNMENT, pData, (resp) => {
  314. if (resp.data.code === 200) {
  315. common.simpleToast(this.$t('车辆激活成功'))
  316. setTimeout(function() {
  317. uni.switchTab({
  318. url: `/pages/index/index?plate_number=${me.car_sn}`,
  319. });
  320. }, 800)
  321. } else {
  322. common.simpleToast(resp.data.msg)
  323. }
  324. })
  325. }
  326. }
  327. };
  328. </script>
  329. <style scoped>
  330. @import './activation.css';
  331. .list-group {
  332. display: flex;
  333. flex-direction: row;
  334. justify-content: flex-start;
  335. flex-wrap: wrap;
  336. }
  337. .list-item {
  338. width: 200rpx;
  339. height: 200rpx;
  340. background-color: #F4F5F6;
  341. border-radius: 16rpx;
  342. display: flex;
  343. flex-direction: column;
  344. margin-right: 9rpx;
  345. margin-bottom: 10rpx;
  346. position: relative;
  347. align-items: center;
  348. }
  349. .img-item {
  350. width: 200rpx;
  351. height: 200rpx;
  352. background-color: #fff;
  353. border-radius: 16rpx;
  354. }
  355. .img-item-demo {
  356. width: 200rpx;
  357. height: 200rpx;
  358. background-color: #fff;
  359. border-radius: 16rpx;
  360. /* 翻转图片的颜色 */
  361. filter: invert(30%);
  362. opacity: 0.8;
  363. }
  364. .empity-item {
  365. position: absolute;
  366. /* #ifdef MP-ALIPAY */
  367. top: 0.7rem;
  368. left: 0.5rem;
  369. /* #endif */
  370. /* #ifdef MP-WEIXIN */
  371. top: 10rpx;
  372. left: 48rpx;
  373. /* #endif */
  374. color: #e6e6e6;
  375. font-size: 120rpx;
  376. text-align: center;
  377. }
  378. .img_text {
  379. font-family: PingFangSC, PingFang SC;
  380. font-weight: 500;
  381. font-size: 24rpx;
  382. color: #fff;
  383. line-height: 24rpx;
  384. /* text-align: center; */
  385. font-style: normal;
  386. /* text-align: center; */
  387. position: absolute;
  388. bottom: 17rpx;
  389. /* left: 73rpx; */
  390. }
  391. </style>