web-view.js 395 B

123456789101112131415161718192021
  1. Page({
  2. data: {},
  3. onLoad(option) {
  4. var url
  5. switch (option.i) {
  6. case '0':
  7. url = `https://www.wodeshebao.com/tax2/index.html`
  8. break;
  9. case '1':
  10. url = `https://www.wodeshebao.com/calc/index.html`
  11. break;
  12. case '2':
  13. url = `https://wxyj.shanp.com`
  14. break;
  15. default:
  16. break;
  17. }
  18. this.setData({ url })
  19. },
  20. });