抖音c端
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

serviceWebView.js 303 B

2 yıl önce
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. })