Navbar.vue 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. <template>
  2. <div>
  3. <van-nav-bar :title='appTitle'>
  4. <template #left>
  5. <van-icon name='wap-home-o' size='1.5em' color='#000' @click='backApp' />
  6. </template>
  7. <template #right>
  8. <van-icon name='scan' size='1.5em' color='#000' @click='scan' />
  9. <van-icon name='search' size='1.5em' color='#000' style='margin-left:0.5em' @click='query' />
  10. </template>
  11. </van-nav-bar>
  12. </div>
  13. </template>
  14. <script>
  15. import Vue from 'vue'
  16. import { NavBar, Icon, Tabbar, TabbarItem, Toast } from 'vant'
  17. Vue.use(NavBar).use(Icon)
  18. import { mapGetters, mapMutations } from 'vuex'
  19. import store from '@/store'
  20. import { debounce } from 'lodash'
  21. // 扫一扫回到函数
  22. window.__scanCallback = function (data) {
  23. console.log('__scanCallback')
  24. console.log(data)
  25. switch (data.code) {
  26. // 扫描的⾮设备⼆维码
  27. case 0:
  28. case '0':
  29. // Toast('扫描的⾮设备⼆维码')
  30. store.commit('SCANASSETID', null)
  31. break
  32. // 扫码的是设备二维码
  33. case 1:
  34. case '1':
  35. // 设置时间,防止两次扫描同一个设备,assetid不改变,watch监听不触发
  36. let time = new Date().getTime()
  37. store.commit('SCANASSETID', `${data.text}__${time}`)
  38. break
  39. // 扫码失败
  40. case -1:
  41. case '-1':
  42. store.commit('SCANASSETID', null)
  43. Toast('扫码出错')
  44. break
  45. default:
  46. break
  47. }
  48. }
  49. export default {
  50. name: 'navbar',
  51. props: {},
  52. components: {},
  53. data() {
  54. return {}
  55. },
  56. computed: {
  57. ...mapGetters(['appTitle', 'scanAssetid']),
  58. },
  59. watch: {
  60. // 扫到二维码,跳转设备详情页
  61. scanAssetid(newV, oldV) {
  62. if (newV) {
  63. let assetid = newV.split('__')[0]
  64. this.$router.push({ name: 'AssetDetail', query: { assetid } })
  65. }
  66. },
  67. },
  68. beforeMount() {},
  69. mounted() {},
  70. methods: {
  71. ...mapMutations(['SCANASSETID']),
  72. // 返回工程信息化主菜单
  73. backApp() {
  74. console.log('backApp')
  75. window.webkit &&
  76. webkit.messageHandlers.cordova_iab.postMessage(
  77. JSON.stringify({
  78. method: 'close',
  79. })
  80. )
  81. },
  82. // 扫码,300ms触发一次
  83. scan: debounce(function () {
  84. console.log('扫码')
  85. window.webkit &&
  86. webkit.messageHandlers.cordova_iab.postMessage(
  87. JSON.stringify({
  88. method: 'scan',
  89. })
  90. )
  91. }, 300),
  92. // 全局搜索
  93. query() {
  94. this.$router.push({ name: 'GlobalSearch' })
  95. },
  96. },
  97. }
  98. </script>
  99. <style lang='less' scoped>
  100. </style>