scanCar.vue 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371
  1. <template>
  2. <view class="container-view">
  3. <view class="clap-info">
  4. <view class="flex-row">
  5. <view><img class="clap-img" src="https://qiniu.bms16.com/Fn80rw2jge0oUlkYH-Ac6HzQVVvz" /></view>
  6. <view class="clap-title">拍照车牌号</view>
  7. </view>
  8. <view class="clap-text">拍照时请留意照片的清晰度,便于系统提取车牌号</view>
  9. <camera v-if="src==''" class="camera" :flash="flashValue" device-position="back" mode="normal"></camera>
  10. <!-- <camera v-if="src==''" class="camera" :flash="flashValue" device-position="back" mode="scanCode"></camera> -->
  11. <view v-else>
  12. <image class="camera-img" :src="src"></image>
  13. </view>
  14. <view class="camera-bottom flex-row">
  15. <view v-if="src==''" class="no-img flex-row">
  16. <view @tap.stop="onFlash" v-if="flashValue=='off'" class="flash"><img
  17. src="https://qiniu.bms16.com/FuGszSZeG74ArUnRFaG2inmosT2i" /></view>
  18. <view @tap.stop="onFlash" v-else class="flash"><img
  19. src="https://qiniu.bms16.com/FksGKHJe895cYYB-Do4b7XytX-d7" /></view>
  20. <view @tap.stop="takePhoto"><img class="camera-button"
  21. src="https://qiniu.bms16.com/FncX5x6TJ3SqRmvz9YwkwmEYkCgq" /></view>
  22. </view>
  23. <view v-else class="flex-row">
  24. <button @tap="bindRetake" class="retake flex-row">重拍</button>
  25. <button @tap="bindUsePhoto" class="use-photo flex-row">使用照片</button>
  26. </view>
  27. </view>
  28. </view>
  29. <view @tap="navToPage" class="input-info flex-row flex-between">
  30. <view class="flex-row">
  31. <view><img class="input-img" src="https://qiniu.bms16.com/Fmjwred5RFltqVGpxlP33MWim689" /></view>
  32. <view class="input-title">手动输入车牌号</view>
  33. </view>
  34. <view><img class="right-img" src="https://qiniu.bms16.com/FpIN7AVzFU75slFlX-SIdnSEmn1k" /></view>
  35. </view>
  36. <!-- <view v-if="isShowInput" class="input-box">
  37. <view class="input-view">
  38. <view @tap="isShowInput=false" class="close">×</view>
  39. <input :value="plate_number" type="text">
  40. <view class="input-button flex-row">
  41. <view @tap="isShowInput=false" class="close-button flex-row">取消</view>
  42. <view @tap="bindOkPhoto" class="use-button flex-row">确定</view>
  43. </view>
  44. </view>
  45. </view> -->
  46. </view>
  47. </template>
  48. <script>
  49. var config = require('../../common/config.js');
  50. var common = require('../../common/common.js');
  51. var http = require('../../common/http.js');
  52. var storage = require('../../common/storage.js');
  53. var OCR = require('../../common/OCR.js');
  54. export default {
  55. components: {
  56. },
  57. data() {
  58. return {
  59. src: '',
  60. myLocation: {},
  61. hideValue: '',
  62. order_sn: '',
  63. order_model_id: '',
  64. isReturnIndex: true, //是否返回首页
  65. flashValue: 'off',
  66. isShowInput: false,
  67. plate_number: '',
  68. userLocation: false,
  69. loading: false
  70. };
  71. }
  72. /**
  73. * 生命周期函数--监听页面加载
  74. */
  75. ,
  76. onLoad: function(options) {
  77. this.order_sn = options.order_sn ? options.order_sn : ''
  78. this.order_model_id = options.order_model_id ? options.order_model_id : ''
  79. this.isReturnIndex = options.isReturnIndex ? false : true
  80. const storedLocation = uni.getStorageSync('user_current_location');
  81. const me = this
  82. this.getUserLocation()
  83. },
  84. /**
  85. * 生命周期函数--监听页面显示
  86. */
  87. onShow: function() {
  88. const me = this
  89. uni.getSetting({
  90. success(res) {
  91. //#ifdef MP-ALIPAY
  92. if (res.authSetting["location"] == true) {
  93. me.setData({
  94. userLocation: true,
  95. loading: false
  96. })
  97. me.getLocationAndSave();
  98. } else {
  99. me.setData({
  100. userLocation: false,
  101. loading: true
  102. })
  103. me.userLocation = false
  104. me.myLocation = {}
  105. }
  106. //#endif
  107. //#ifdef MP-WEIXIN
  108. if (res.authSetting["scope.userLocation"] == true) {
  109. me.setData({
  110. userLocation: true,
  111. loading: false
  112. })
  113. me.getLocationAndSave();
  114. } else {
  115. me.setData({
  116. userLocation: false,
  117. loading: true
  118. })
  119. me.userLocation = false
  120. me.myLocation = {}
  121. }
  122. //#endif
  123. }
  124. })
  125. if (this.userLocation == true && (!this.myLocation.longitude) && (!this.myLocation.latitude)) {
  126. this.getLocationAndSave()
  127. }
  128. },
  129. methods: {
  130. getUserLocation() {
  131. const me = this
  132. if (me.userLocation != false) { // 开了定位权限
  133. if (storedLocation && storedLocation.longitude && storedLocation.latitude) {
  134. // 如果本地有存储的定位信息,则直接使用
  135. console.log("111", storedLocation)
  136. me.myLocation = storedLocation
  137. } else {
  138. me.getLocationAndSave();
  139. }
  140. } else {
  141. console.log("11休闲鞋1")
  142. me.myLocation = {}
  143. }
  144. },
  145. getLocationAndSave: function() {
  146. const me = this;
  147. uni.getLocation({
  148. type: 'gcj02',
  149. success: function(res) {
  150. uni.hideLoading();
  151. var myLocation = {
  152. longitude: res.longitude,
  153. latitude: res.latitude
  154. }
  155. console.log("11122", myLocation)
  156. me.setData({
  157. myLocation: myLocation,
  158. loading: true
  159. })
  160. uni.setStorageSync('user_current_location', myLocation);
  161. },
  162. fail: function(res) {
  163. uni.hideLoading();
  164. },
  165. complete: function(res) {
  166. uni.hideLoading();
  167. }
  168. });
  169. },
  170. takePhoto() {
  171. const ctx = uni.createCameraContext()
  172. ctx.takePhoto({
  173. quality: 'high',
  174. success: (res) => {
  175. this.setData({
  176. src: res.tempImagePath
  177. })
  178. }
  179. })
  180. },
  181. navToPage() {
  182. const me = this
  183. if (!me.loading) {
  184. common.simpleToast('数据加载中,请稍等')
  185. } else {
  186. if ((!me.myLocation.longitude) && (!me.myLocation.latitude)) { // 未获取到经纬度
  187. if (me.userLocation == false) { // 判断原因是否为微信小程序内部没有授权定位
  188. common.simpleToast('无法获取位置信息,请检查您的定位权限设置')
  189. } else {
  190. common.simpleToast('您的手机未授权定位权限,请前往手机设置开启权限')
  191. }
  192. return
  193. }
  194. if ((!me.myLocation.longitude) && (!me.myLocation.latitude)) {
  195. uni.navigateTo({
  196. url: '/pages/manualInput/manualInput',
  197. });
  198. } else {
  199. uni.navigateTo({
  200. url: '/pages/manualInput/manualInput?longitude=' + me.myLocation.longitude +
  201. '&latitude=' +
  202. me.myLocation.latitude,
  203. });
  204. }
  205. }
  206. },
  207. bindRetake() {
  208. this.setData({
  209. src: '',
  210. flashValue: 'off'
  211. })
  212. },
  213. onFlash() {
  214. this.setData({
  215. flashValue: this.flashValue == 'off' ? 'torch' : 'off'
  216. })
  217. },
  218. bindUsePhoto() {
  219. const me = this
  220. if ((!this.myLocation.longitude) && (!this.myLocation.latitude)) { // 未获取到经纬度
  221. if (me.userLocation == false) { // 判断原因是否为微信小程序内部没有授权定位
  222. common.simpleToast('无法获取位置信息,请检查您的定位权限设置')
  223. } else {
  224. common.simpleToast('您的手机未授权定位权限,请前往手机设置开启权限')
  225. }
  226. return
  227. }
  228. let tempFilePaths = this.src;
  229. uni.getFileSystemManager().readFile({
  230. filePath: tempFilePaths,
  231. encoding: 'base64',
  232. success: function(res) {
  233. common.loading();
  234. OCR.scanOCRText(res.data).then((words) => {
  235. uni.hideLoading();
  236. me.setData({
  237. hideValue: words
  238. });
  239. const licensePlate = me.hideValue.licensePlate //车牌
  240. const licensePlatePrefix = me.hideValue.licensePlatePrefix //前缀
  241. me.setData({
  242. // isShowInput: true,
  243. // plate_number: licensePlatePrefix!=''?licensePlatePrefix + licensePlate:licensePlate
  244. plate_number: licensePlate
  245. });
  246. me.submitPlate()
  247. });
  248. },
  249. fail: function(res) {
  250. console.log('[读取图片数据fail]', res);
  251. },
  252. complete: function(res) {}
  253. });
  254. },
  255. // bindOkPhoto() {
  256. // this.submitPlate()
  257. // },
  258. submitPlate() {
  259. const pData = {
  260. longitude: this.myLocation.longitude,
  261. latitude: this.myLocation.latitude,
  262. plate_number: this.plate_number
  263. }
  264. const me = this
  265. http.postApi(config.API_DAYHIRE_CAR_CAR_INFO, pData, (resp) => {
  266. uni.hideLoading()
  267. if (resp.data.code === 200) {
  268. const timestamp = Date.now(); // 获取当前时间戳(毫秒)
  269. const isOffline = (Math.floor(timestamp / 1000) - resp.data.data.last_comm_time) > 1800
  270. if (resp.data.data.last_comm_time === 0 || isOffline) {
  271. common.simpleToast('此车辆已离线,请选择其他车辆')
  272. } else {
  273. let carInfo = JSON.stringify(resp.data.data)
  274. const car_model = resp.data.data.model_info.car_model
  275. const model_images = resp.data.data.model_info.model_images.split(',')
  276. const return_imgs = resp.data.data.return_imgs
  277. var model_id = resp.data.data.model_info.model_id
  278. if (resp.data.data.has_owner) { //车辆正在被使用
  279. if (resp.data.data.is_mine) { //是本人在使用
  280. uni.showModal({
  281. title: '提示',
  282. content: '已有正在使用的车辆,是否跳转至车辆详情页?',
  283. cancelText: '取消',
  284. confirmText: '确定',
  285. success: function(res) {
  286. this.isReturnHome = false
  287. uni.navigateTo({
  288. url: '/pages/battery/battery?plate_number=' +
  289. this.plate_number
  290. });
  291. },
  292. fail: function(res) {},
  293. complete: function(res) {},
  294. })
  295. } else {
  296. common.simpleToast('此车辆正在被使用')
  297. }
  298. } else {
  299. if (me.order_sn != '') {
  300. if (this.order_model_id != model_id) { // 预租车型与之前预约车型不一致
  301. common.simpleToast('与预约车型不符')
  302. } else {
  303. this.isReturnHome = false
  304. uni.navigateTo({
  305. url: '/pages/activation/activation?plate_number=' +
  306. this.plate_number + '&order_sn=' + this.order_sn +
  307. '&car_model=' + car_model + '&model_image=' +
  308. model_images[0] + '&return_imgs=' + JSON.stringify(
  309. return_imgs),
  310. fail() {}
  311. })
  312. }
  313. } else {
  314. this.setData({
  315. flashValue: 'off',
  316. isReturnHome: false
  317. })
  318. // this.isReturnHome = false
  319. uni.redirectTo({
  320. url: '/pages/carIntroduce/carIntroduce?carInfo=' +
  321. encodeURIComponent(carInfo) + '&plate_number=' + this
  322. .plate_number,
  323. fail() {}
  324. })
  325. }
  326. }
  327. setTimeout(() => {
  328. me.setData({
  329. src: '',
  330. hideValue: '',
  331. })
  332. }, 500)
  333. }
  334. } else {
  335. common.simpleToast(resp.data.msg)
  336. me.setData({
  337. src: '',
  338. hideValue: '',
  339. // isShowInput: false,
  340. })
  341. }
  342. })
  343. },
  344. },
  345. onUnload: function() {
  346. }
  347. };
  348. </script>
  349. <style>
  350. @import './scanCar.css';
  351. </style>