Browse Source

解决扫码显示不全问题

Limengbo 6 years ago
parent
commit
c8288866c2
1 changed files with 14 additions and 4 deletions
  1. 14 4
      pages/schedule/scheduleSubject/scheduleSubject.js

+ 14 - 4
pages/schedule/scheduleSubject/scheduleSubject.js

@@ -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