activation.vue 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208
  1. <template>
  2. <view class="container-view">
  3. <view class="return-info">
  4. <view class="h5">车辆信息</view>
  5. <view class="return-top flex-row flex-between">
  6. <view>车辆编号:{{car_sn}}</view>
  7. </view>
  8. <view class="return-top flex-row flex-between">
  9. <view>车辆名称:{{carInfoData.car_name}}</view>
  10. </view>
  11. <view class="return-top flex-row flex-between">
  12. <view>车型:{{carInfoData.model_name}}</view>
  13. </view>
  14. <view class="return-top flex-row flex-between">
  15. <view>续航:{{carInfoData.endurance}}m</view>
  16. </view>
  17. <view class="return-top flex-row flex-between">
  18. <view>重量:{{carInfoData.weight}}kg</view>
  19. </view>
  20. <view class="return-top flex-row ">
  21. <view>照片:</view>
  22. <image class="img" :src="carInfoData.model_images" mode="aspectFill"></image>
  23. </view>
  24. </view>
  25. <view v-if="shopInfo.shop_name" class="return-info">
  26. <view class="h5">门店信息</view>
  27. <view class="return-top flex-row flex-between">
  28. <view>门店名称:{{shopInfo.shop_name}}</view>
  29. </view>
  30. <view class="return-top flex-row flex-between">
  31. <view>门店地址:{{shopInfo.address}}</view>
  32. </view>
  33. </view>
  34. <view class="pictures-info">
  35. <view>车辆照片</view>
  36. <!-- <view>这里是关于激活车辆照片的文案描述,这里是关于激活车辆照片的文案描述</view> -->
  37. <uploaders :max="shopList.flk_hire_car_img_num" :car_info="car_imgs" @update-car-images="handleCarImagesUpdate"></uploaders>
  38. <view v-if="isReturnCar" @tap="submitReturn" class="pictures-btn">归还车辆</view>
  39. <view v-else @tap="submitEnabled" class="pictures-btn">激活车辆</view>
  40. </view>
  41. </view>
  42. </template>
  43. <script>
  44. import uploaders from '@/component/uploaders/uploaders';
  45. const http = require('@/common/http.js');
  46. const request = require('../../common/request');
  47. const config = require('@/common/config.js');
  48. const config_gyq = require('@/common/config_gyq.js');
  49. const common = require('@/common/common.js');
  50. export default {
  51. components: {
  52. uploaders
  53. },
  54. data() {
  55. return {
  56. myLocation:{},
  57. shopInfo:{},
  58. isReturnCar:"",
  59. model_id:"",
  60. car_sn:"",
  61. shopList:{},
  62. carInfoData:{},
  63. carInfo: {},
  64. sub_sn: '',
  65. model_image: '3',
  66. car_model: '',
  67. return_imgs: [],
  68. car_imgs: [],
  69. model_image_list: ''
  70. };
  71. },
  72. /**
  73. * 生命周期函数--监听页面加载
  74. */
  75. onLoad: function(options) {
  76. console.log(options,'options');
  77. this.isReturnCar = options.isReturnCar
  78. if(options.isReturnCar){
  79. uni.setNavigationBarTitle({
  80. title:'归还车辆'
  81. })
  82. this.shopInfoFn()
  83. }
  84. this.sub_sn = options.sub_sn || ''
  85. this.model_id = options.model_id || ''
  86. this.car_sn = options.car_sn || ''
  87. this.carDetFn()
  88. this.shopSettingFn()
  89. },
  90. // API_FLK_CAR_DETAIL
  91. /**
  92. * 生命周期函数--监听页面显示
  93. */
  94. onShow: function() {
  95. },
  96. onUnload: function () {
  97. },
  98. methods: {
  99. async locationFn() {
  100. let res = await uni.getLocation()
  101. if (res[1]) {
  102. this.myLocation = {
  103. latitude: res[1].latitude,
  104. longitude: res[1].longitude,
  105. }
  106. this.shopInfoFn()
  107. }
  108. },
  109. //还车
  110. async submitReturn(){
  111. const price = 0
  112. let milliseconds = new Date().getTime();
  113. const current_time = parseInt(milliseconds / 1000);
  114. const _image_list = this.car_imgs.map(item => item.img_url)
  115. if (_image_list.length < 1) return common.simpleToast('请上传车辆照片')
  116. let {data} = await request.postApi(config_gyq.API_FLK_CAR_RETURN_CAR,{
  117. latitude: this.myLocation.latitude,
  118. longitude: this.myLocation.longitude,
  119. shop_id:this.shopInfo.id,
  120. car_sn:this.car_sn,
  121. image_list:_image_list.join(','),
  122. pay_type:0,
  123. price,
  124. current_time
  125. })
  126. if(data.code == 200){
  127. common.simpleToast('还车成功!')
  128. setTimeout(()=> {
  129. uni.switchTab({
  130. url: `/pages/index/index?plate_number=${this.car_sn}`,
  131. });
  132. }, 800)
  133. }else{
  134. common.simpleToast(resp.data.msg)
  135. }
  136. },
  137. async shopInfoFn(){
  138. let res = await uni.getLocation()
  139. let {data} = await request.postApi(config.API_NEAR_SHOP_LIST,
  140. {
  141. limit:1,
  142. latitude: this.myLocation.latitude,
  143. longitude: this.myLocation.longitude,
  144. }
  145. )
  146. if(data.code == 200){
  147. if(data.data.list.length > 0){
  148. this.shopInfo = data.data.list[0]
  149. }else{
  150. common.simpleToast('未获取到门店位置!')
  151. }
  152. }else{
  153. common.simpleToast(data.msg)
  154. }
  155. },
  156. async shopSettingFn(){
  157. let {data} = await request.postApi(config_gyq.API_FLK_INDEX_SHOP_SETTING,{model_id:this.model_id})
  158. if(data.code == 200){
  159. this.shopList = data.data
  160. }else{
  161. common.simpleToast(data.msg)
  162. }
  163. },
  164. async carDetFn(){
  165. let {data} = await request.postApi(config.API_FLK_CAR_DETAIL,{car_sn:this.car_sn})
  166. if(data.code == 200){
  167. this.carInfoData = data.data
  168. }else{
  169. common.simpleToast(data.msg)
  170. }
  171. },
  172. handleCarImagesUpdate(updatedImages) {
  173. // 这里会接收到子组件传来的更新后的图片URL数组
  174. this.car_imgs = updatedImages
  175. },
  176. submitEnabled() {
  177. const me = this
  178. const _image_list = this.car_imgs.map(item => item.img_url)
  179. if (_image_list.length < 1) return common.simpleToast('请上传车辆照片')
  180. const pData = {
  181. car_sn: this.car_sn,
  182. sub_sn: this.sub_sn,
  183. image_list: _image_list.join(',')
  184. }
  185. http.postApi(config.API_FLK_CAR_ASSIGNMENT, pData, (resp) => {
  186. if (resp.data.code === 200) {
  187. common.simpleToast('车辆激活成功')
  188. setTimeout(function() {
  189. uni.switchTab({
  190. url: `/pages/index/index?plate_number=${me.car_sn}`,
  191. });
  192. }, 800)
  193. } else {
  194. common.simpleToast(resp.data.msg)
  195. }
  196. })
  197. }
  198. }
  199. };
  200. </script>
  201. <style>
  202. @import './activation.css';
  203. </style>