dwh 2 år sedan
förälder
incheckning
de2e5888c8
2 ändrade filer med 12 tillägg och 8 borttagningar
  1. 8 6
      src/views/login/login.vue
  2. 4 2
      src/views/test/test.vue

+ 8 - 6
src/views/login/login.vue

@@ -44,11 +44,11 @@
 			window.idfaInvoke=(data)=>{
 				localStorage.setItem('idfa',data.idfa);
 			};
-			window.deviceInfoInvoke=(data)=>{
-				//localStorage.setItem('idfa',data.idfa);
-				this.$toast(JSON.stringify(data));
-			};
-			window.deviceToken=(data)=>{
+			// window.deviceInfoInvoke=(data)=>{
+			// 	//localStorage.setItem('idfa',data.idfa);
+			// 	this.$toast(JSON.stringify(data));
+			// };
+			window.deviceTokenInvoke=(data)=>{
 				this.$toast(JSON.stringify(data));
 			};
 			this.getStatusBarHeight();
@@ -88,7 +88,9 @@
 			getDeviceInfo(){
 				window.webkit.messageHandlers.call.postMessage({
 					api:"com.js.getDeviceInfo",
-					data:{},
+					data:{
+						info:['idfa','platform','resolution','brand','ov','cate','appId','lang','currTime','av','model','deviceCode']
+					},
 					callback:'deviceInfoInvoke'
 				}) 
 			},

+ 4 - 2
src/views/test/test.vue

@@ -37,7 +37,7 @@
 			window.deviceInfoInvoke=(data)=>{
 				this.$toast(JSON.stringify(data));
 			};
-			window.deviceToken=(data)=>{
+			window.deviceTokenInvoke=(data)=>{
 				this.$toast(JSON.stringify(data));
 			};
 			window.innerPushInvoke=(data)=>{
@@ -78,7 +78,9 @@
 			getDeviceInfo(){
 				window.webkit.messageHandlers.call.postMessage({
 					api:"com.js.getDeviceInfo",
-					data:{},
+					data:{
+						info:['idfa','platform','resolution','brand','ov','cate','appId','lang','currTime','av','model','deviceCode']
+					},
 					callback:'deviceInfoInvoke'
 				}) 
 			},