deviceLocal.vue 1.2 KB

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