runoob 6 anos atrás
pai
commit
692a08d65d
1 arquivos alterados com 3 adições e 5 exclusões
  1. 3 5
      share/Invitation.html

+ 3 - 5
share/Invitation.html

@@ -189,9 +189,7 @@
189 189
 		$(".shareMask").css('display','none')
190 190
 	})
191 191
 	
192
-	window.onload = function () {
193
-		
194
-	}
192
+	var num = 0;
195 193
 	//分享
196 194
 	function share() {
197 195
 		$.ajax({
@@ -199,11 +197,11 @@
199 197
 			url:"/api/V2/share",
200 198
 			data:{
201 199
 				type:1,
202
-				count:0
200
+				count: num
203 201
 			},
204 202
 			success: function (res) {
205 203
 				var data =JSON.parse(res)
206
-//				console.log(data)
204
+				num = data.res.count;
207 205
 			}
208 206
 		})
209 207
 	}