家政小程序
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.

12345678910111213141516171819
  1. const $ = global;
  2. new $.Page({
  3. data: {
  4. toView: ''
  5. },
  6. onLoad() {
  7. const meta = $.router.getMeta();
  8. const target = meta && meta.params && meta.params.target || '';
  9. if (target) {
  10. setTimeout(() => {
  11. this.setData({
  12. toView: target
  13. });
  14. }, 10);
  15. }
  16. }
  17. });