123456789101112131415161718192021 |
- Page({
- data: {},
- onLoad(option) {
- var url
- switch (option.i) {
- case '0':
- url = `https://www.wodeshebao.com/tax2/index.html`
- break;
- case '1':
- url = `https://www.wodeshebao.com/calc/index.html`
- break;
- case '2':
- url = `https://wxyj.shanp.com`
- break;
- default:
- break;
- }
- this.setData({ url })
- },
- });
|