抖音c端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

serviceWebView.js 303 B

2 年之前
123456789101112131415
  1. const navigationBarHeight = (getApp().statusBarHeight + 50) + 'px'
  2. Page({
  3. data: {
  4. navigationBarHeight,
  5. url:''
  6. },
  7. onLoad: function (options) {
  8. const data = JSON.parse(tt.getStorageSync("serviceData"));
  9. console.log(data);
  10. this.setData({
  11. url:data.data.url
  12. })
  13. }
  14. })