deviceLocal.vue 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. <template>
  2. <view class="container">
  3. <web-view class="web-view" :src="web_url"></web-view>
  4. </view>
  5. </template>
  6. <script>
  7. const params = require('../../common/params.js');
  8. const config = require('../../common/config.js');
  9. const common = require('../../common/common.js');
  10. var http = require('../../common/http.js');
  11. var storage = require('../../common/storage.js');
  12. export default {
  13. data() {
  14. return {
  15. web_url: '',
  16. };
  17. }
  18. /**
  19. * 生命周期函数--监听页面加载
  20. */
  21. ,
  22. onLoad: function(options) {
  23. const macid = options.macid;
  24. const token = storage.getApiToken()
  25. const web_zxbms_url = params.web_zxbms_url
  26. const web_bms_url = params.web_bms_url
  27. const hostApi = storage.getApiUrl();
  28. const time = Date.now()
  29. const title = options.macid;
  30. //这里做个判断
  31. if (hostApi == 'https://bmsapi.bms16.com/') {
  32. this.web_url = web_bms_url + 'monitorGooglePhone?macid=' + macid + '&time=' + time +'&token=' + token
  33. } else {
  34. this.web_url = web_zxbms_url + 'monitorGooglePhone?macid=' + macid + '&time=' + time +'&token=' + token
  35. }
  36. setTimeout(function() {
  37. uni.setNavigationBarTitle({
  38. title: title
  39. });
  40. }, 2000);
  41. },
  42. /**
  43. * 生命周期函数--监听页面初次渲染完成
  44. */
  45. onReady: function() {},
  46. /**
  47. * 生命周期函数--监听页面显示
  48. */
  49. onShow: function() {},
  50. /**
  51. * 生命周期函数--监听页面隐藏
  52. */
  53. onHide: function() {},
  54. /**
  55. * 生命周期函数--监听页面卸载
  56. */
  57. onUnload: function() {},
  58. /**
  59. * 页面相关事件处理函数--监听用户下拉动作
  60. */
  61. onPullDownRefresh: function() {},
  62. /**
  63. * 页面上拉触底事件的处理函数
  64. */
  65. onReachBottom: function() {},
  66. /**
  67. * 用户点击右上角分享
  68. */
  69. onShareAppMessage: function() {},
  70. methods: {
  71. }
  72. };
  73. </script>
  74. <style>
  75. @import './deviceLocal.css';
  76. </style>