activation.vue 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. <template>
  2. <view class="container-view">
  3. <view class="return-info flex-row flex-between">
  4. <view class="return-top">
  5. <view>车牌:{{plate_number}}</view>
  6. </view>
  7. <view><img :src="model_image" /></view>
  8. </view>
  9. <view class="pictures-info">
  10. <view>车辆照片</view>
  11. <!-- <view>这里是关于激活车辆照片的文案描述,这里是关于激活车辆照片的文案描述</view> -->
  12. <uploader :car_info="car_imgs" @update-car-images="handleCarImagesUpdate"></uploader>
  13. <view @tap="submitEnabled" class="pictures-btn">激活车辆</view>
  14. </view>
  15. </view>
  16. </template>
  17. <script>
  18. import uploader from '@/component/uploader/uploader';
  19. const http = require('@/common/http.js');
  20. const config = require('@/common/config.js');
  21. const common = require('@/common/common.js');
  22. export default {
  23. components: {
  24. uploader
  25. },
  26. data() {
  27. return {
  28. carInfo: {},
  29. plate_number: '013657142736',
  30. sub_sn: '',
  31. model_image: '3',
  32. car_model: '',
  33. return_imgs: [],
  34. car_imgs: [],
  35. model_image_list: ''
  36. };
  37. },
  38. /**
  39. * 生命周期函数--监听页面加载
  40. */
  41. onLoad: function(options) {
  42. this.sub_sn = options.sub_sn || ''
  43. },
  44. /**
  45. * 生命周期函数--监听页面显示
  46. */
  47. onShow: function() {
  48. },
  49. onUnload: function () {
  50. },
  51. methods: {
  52. handleCarImagesUpdate(updatedImages) {
  53. // 这里会接收到子组件传来的更新后的图片URL数组
  54. this.car_imgs = updatedImages
  55. },
  56. submitEnabled() {
  57. const me = this
  58. const _image_list = this.car_imgs.map(item => item.img_url)
  59. if (_image_list.includes('' || "")) return common.simpleToast('请上传车辆照片')
  60. const pData = {
  61. car_sn: this.plate_number,
  62. sub_sn: this.sub_sn,
  63. image_list: _image_list.join(', ')
  64. }
  65. http.postApi(config.API_FLK_CAR_ASSIGNMENT, pData, (resp) => {
  66. if (resp.data.code === 200) {
  67. common.simpleToast('车辆激活成功')
  68. setTimeout(function() {
  69. me.isCustomJump = false
  70. uni.switchTab({
  71. url: `/pages/index/index?plate_number=${me.plate_number}`,
  72. success: function(res) {},
  73. fail: function(res) {},
  74. complete: function(res) {}
  75. });
  76. }, 500)
  77. } else {
  78. common.simpleToast(resp.data.msg)
  79. }
  80. })
  81. }
  82. }
  83. };
  84. </script>
  85. <style>
  86. @import './activation.css';
  87. </style>