manualInput.vue 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226
  1. <template>
  2. <view class="container-view">
  3. <!-- <input class="input" type="text" :placeholder="$t('请输入车牌号全称')" placeholder-style="color:#BAC1D0;"> -->
  4. <input @input="onInput" @blur="inputBlur" @confirm="handleConfirm" :value="hideValue" class="input" type="text"
  5. :focus="hideFocus" :placeholder="$t('请输入车牌号')" placeholder-style="color:#BAC1D0;">
  6. <view :class="['confirm-btn', !hideValue && 'btn-disable']" @tap="handleConfirmHandle">
  7. {{ hideValue ? $t('确认') : $t('请先输入车牌号') }}
  8. </view>
  9. <!-- <view class="input-text">{{ $t('温馨提示:各省市因地制宜,制定相关的牌照格式,请按照实际车辆牌照的格式进行填写~') }}</view>
  10. <view class="title">{{ $t('参考格式') }}</view>
  11. <view class="content-view">{{ $t('北京') }}<text>123456</text></view> -->
  12. </view>
  13. </template>
  14. <script module="tools" lang="wxs" src="@/pages/common/wxs/tools.wxs"></script>
  15. <script module="tools" lang="sjs" src="@/pages/common/wxs/tools.sjs"></script>
  16. <script>
  17. var config = require('../../common/config.js');
  18. var common = require('../../common/common.js');
  19. var http = require('../../common/http.js');
  20. var storage = require('../../common/storage.js');
  21. export default {
  22. components: {
  23. },
  24. data() {
  25. return {
  26. myLocation: {},
  27. timer: null,
  28. hideValue: '',
  29. order_sn: '',
  30. order_model_id: '',
  31. isReturnIndex: true, //是否返回首页
  32. hideFocus: false,
  33. };
  34. }
  35. /**
  36. * 生命周期函数--监听页面加载
  37. */
  38. ,
  39. onLoad: function(options) {
  40. this.order_sn = options.order_sn ? options.order_sn : ''
  41. this.order_model_id = options.order_model_id ? options.order_model_id : ''
  42. this.myLocation.longitude = options.longitude ? options.longitude : ''
  43. this.myLocation.latitude = options.latitude ? options.latitude : ''
  44. //#ifdef MP-ALIPAY
  45. setTimeout(function() {
  46. this.hideFocus = true
  47. }, 500);
  48. //#endif
  49. //#ifdef MP-WEIXIN
  50. this.hideFocus = true
  51. //#endif
  52. },
  53. /**
  54. * 生命周期函数--监听页面显示
  55. */
  56. onShow: function() {
  57. if ((this.myLocation.longitude == '') && (this.myLocation.latitude == '')) {
  58. this.getLocationAndSave()
  59. }
  60. },
  61. methods: {
  62. getLocationAndSave: function() {
  63. const me = this;
  64. uni.getLocation({
  65. type: 'gcj02',
  66. success: function(res) {
  67. uni.hideLoading();
  68. var myLocation = {
  69. longitude: res.longitude,
  70. latitude: res.latitude
  71. }
  72. me.myLocation = myLocation
  73. uni.setStorageSync('user_current_location', myLocation);
  74. },
  75. fail: function(res) {
  76. uni.hideLoading();
  77. },
  78. complete: function(res) {
  79. uni.hideLoading();
  80. }
  81. });
  82. },
  83. onInput(e) {
  84. this.hideValue = e.detail.value
  85. this.hideFocus = true
  86. },
  87. inputBlur() {
  88. this.hideFocus = false
  89. },
  90. handleConfirmHandle() {
  91. if (!this.hideValue) {
  92. common.simpleToast(this.$t('请先输入车牌号'))
  93. return
  94. }
  95. this.handleConfirm()
  96. },
  97. handleConfirm(e) {
  98. e && (this.hideValue = e.detail.value)
  99. const me = this
  100. if ((this.myLocation.longitude == '') && (this.myLocation.latitude == '')) { // 未获取到经纬度
  101. wx.getSetting({
  102. success(res) {
  103. if (res.authSetting["scope.userLocation"] == false) { // 判断原因是否为微信小程序内部没有授权定位
  104. common.simpleToast(this.$t('无法获取位置信息,请检查您的微信定位权限设置'))
  105. } else {
  106. common.simpleToast(this.$t('您的手机未授权微信定位权限,请前往手机设置开启权限'))
  107. }
  108. me.hideFocus = true
  109. }
  110. })
  111. return
  112. }
  113. if (this.hideValue == '') {
  114. common.simpleToast(this.$t('请输入车牌号'))
  115. this.hideFocus = true
  116. } else {
  117. this.hideFocus = false
  118. this.submitPlate()
  119. }
  120. },
  121. submitPlate() {
  122. const pData = {
  123. longitude: this.myLocation.longitude,
  124. latitude: this.myLocation.latitude,
  125. plate_number: this.hideValue
  126. }
  127. console.log(this.hideValue)
  128. const me = this
  129. http.postApi(config.API_DAYHIRE_CAR_CAR_INFO, pData, (resp) => {
  130. uni.hideLoading()
  131. if (resp.data.code === 200) {
  132. const timestamp = Date.now(); // 获取当前时间戳(毫秒)
  133. const isOffline = (Math.floor(timestamp / 1000) - resp.data.data.last_comm_time) > 1800
  134. if (resp.data.data.last_comm_time === 0 || isOffline) {
  135. common.simpleToast(this.$t('此车辆已离线,请选择其他车辆'))
  136. } else {
  137. let carInfo = JSON.stringify(resp.data.data)
  138. const car_model = resp.data.data.model_info.car_model
  139. const model_images = resp.data.data.model_info.model_images.split(',')
  140. const return_imgs = resp.data.data.return_imgs
  141. var model_id = resp.data.data.model_info.model_id
  142. if (resp.data.data.has_owner) { //车辆正在被使用
  143. if (resp.data.data.is_mine) { //是本人在使用
  144. wx.showModal({
  145. title: this.$t('提示'),
  146. content: this.$t('已有正在使用的车辆,是否跳转至车辆详情页')+'?',
  147. cancelText: this.$t('取消'),
  148. confirmText: this.$t('确定'),
  149. success: function(res) {
  150. this.isReturnHome = false
  151. uni.navigateTo({
  152. url: '/pages/battery/battery?plate_number=' +
  153. me
  154. .hideValue
  155. });
  156. },
  157. fail: function(res) {},
  158. complete: function(res) {},
  159. })
  160. } else {
  161. common.simpleToast(this.$t('此车辆正在被使用'))
  162. }
  163. } else {
  164. if (me.order_sn != '') {
  165. if (this.order_model_id != model_id) { // 预租车型与之前预约车型不一致
  166. common.simpleToast(this.$t('与预约车型不符'))
  167. } else {
  168. this.isReturnHome = false
  169. uni.navigateTo({
  170. url: '/pages/activation/activation?plate_number=' + me
  171. .hideValue + '&order_sn=' + this.order_sn +
  172. '&car_model=' + car_model + '&model_image=' +
  173. model_images[0] + '&return_imgs=' + JSON.stringify(
  174. return_imgs),
  175. fail() {}
  176. })
  177. }
  178. } else {
  179. this.isReturnHome = false
  180. uni.navigateTo({
  181. url: '/pages/carIntroduce/carIntroduce?carInfo=' +
  182. encodeURIComponent(carInfo) + '&plate_number=' + me
  183. .hideValue,
  184. fail() {}
  185. })
  186. }
  187. }
  188. setTimeout(() => {
  189. me.setData({
  190. plateInputs: Array.from({
  191. length: 6
  192. }, () => ({
  193. value: ''
  194. })),
  195. hideValue: '',
  196. preFullPlateNumber: ''
  197. })
  198. }, 500)
  199. }
  200. } else {
  201. common.simpleToast(resp.data.msg)
  202. me.setData({
  203. hideValue: '',
  204. })
  205. }
  206. })
  207. }
  208. },
  209. onUnload: function() {
  210. if (this.timer) {
  211. clearTimeout(this.timer);
  212. this.timer = null
  213. }
  214. }
  215. };
  216. </script>
  217. <style>
  218. @import './manualInput.css';
  219. </style>