123456789101112131415161718192021222324252627282930313233343536 |
- // index.js
- Page({
- data:{
- src:"https://wy.dazhengyun.com/public/wap/ph?orgId="
- },
- onLoad:function(options){
- this.getScene(options);
- var orgId = wx.getStorageSync("orgId");
- var orgId = orgId?orgId:3;
- console.log(this.data.src+orgId);
- this.setData({
- 'src':this.data.src+orgId
- })
- },
- getScene(options){
- if(options.hasOwnProperty('scene')){
- const scene = decodeURIComponent(options.scene);
- let ss = scene.split('_');
- if(ss.length == 2){
- wx.setStorageSync("orgId", ss[1]);
- }else {
- wx.showToast({
- title: '项目id不存在',
- icon: 'none',
- duration: 2000
- });
- return false;
- }
- }else {
- wx.setStorageSync("orgId", 3);
- }
- },
- })
|