Browse Source

代码合并

Aslee 4 years ago
parent
commit
b2be7562a4
1 changed files with 11 additions and 0 deletions
  1. 11 0
      src/main/resources/static/js/common/serviceapi/product.service.js

+ 11 - 0
src/main/resources/static/js/common/serviceapi/product.service.js

@@ -194,4 +194,15 @@ var ProductApi = {
                 callback(res);
             });
         },
+        getActivityData: function (params, callback) {
+            Http.AjaxService({
+                url: '/home/activity/data',
+                type: 'get',
+                data: params,
+                json: true
+            })
+            .then(function (res) {
+                callback(res);
+            });
+        }
 };