onLoad(options) {
//进来可以判断角色
this.getStepCode()
if(!options.id){
let wwwurl = decodeURIComponent(options.q)
this.id=wwwurl.split('?id=')[1];
} else {
this.id = options.id
}
this.getList(this.id)
this.userId= uni.getStorageSync('userId')
if(this.userId==''||this.userId==null||this.userId==undefined){
this.sysUserId= false
} else {
this.sysUserId= true
}
},
对获取到的路径进行截取
let wwwurl = decodeURIComponent(options.q)
this.id=wwwurl.split(‘?id=’)[1];