|
@@ -1,4 +1,5 @@
|
|
|
var APIClient = require('../../../utils/APIClient.js');
|
|
|
+const util = require('../../../utils/util.js');
|
|
|
Page({
|
|
|
data: {
|
|
|
userInfo: wx.getStorageSync('userInfo'),
|
|
@@ -11,10 +12,19 @@ Page({
|
|
|
},
|
|
|
onLoad(options) {
|
|
|
console.log(wx.getStorageSync('userInfo'));
|
|
|
- this.setData({
|
|
|
- userInfo: wx.getStorageSync('userInfo'),
|
|
|
- id: options.id
|
|
|
- })
|
|
|
+ if(options.scene) {
|
|
|
+ let id = util.convertObject(decodeURIComponent(options.scene)).id;
|
|
|
+ this.setData({
|
|
|
+ userInfo: wx.getStorageSync('userInfo'),
|
|
|
+ id: id
|
|
|
+ })
|
|
|
+ }else {
|
|
|
+ this.setData({
|
|
|
+ userInfo: wx.getStorageSync('userInfo'),
|
|
|
+ id: options.id
|
|
|
+ })
|
|
|
+ }
|
|
|
+
|
|
|
if(options.title) {
|
|
|
wx.setNavigationBarTitle({
|
|
|
title: options.title
|