Showing
2 changed files
with
6 additions
and
1 deletions
@@ -18,6 +18,9 @@ const _activity = () => { | @@ -18,6 +18,9 @@ const _activity = () => { | ||
18 | }; | 18 | }; |
19 | 19 | ||
20 | const _user = (params) => { | 20 | const _user = (params) => { |
21 | + if (!params.uid) { | ||
22 | + return {}; | ||
23 | + } | ||
21 | return api.get('', { | 24 | return api.get('', { |
22 | method: 'app.passport.profile', | 25 | method: 'app.passport.profile', |
23 | uid: params.uid | 26 | uid: params.uid |
@@ -335,7 +335,9 @@ $(window).scroll(function() { | @@ -335,7 +335,9 @@ $(window).scroll(function() { | ||
335 | }); | 335 | }); |
336 | 336 | ||
337 | // 初始化请求第一页数据 | 337 | // 初始化请求第一页数据 |
338 | -getOrders(); | 338 | +if ($('.order-page').length > 0) { |
339 | + getOrders(); | ||
340 | +} | ||
339 | 341 | ||
340 | $(function() { | 342 | $(function() { |
341 | // 适配背景图 | 343 | // 适配背景图 |
-
Please register or login to post a comment