抖音c端
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
303 B

  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. })