123456789101112131415161718192021222324252627282930313233343536 |
- // 美业资料库列表
- var BeautyArchiveApi = {
- //获取资料库商品列表
- GetArchiveProduct: function (params, callback) {
- Http.AjaxService({
- url: '/commodity/product/archive',
- type: 'GET',
- data: params,
- json: false,
- }).then(function (res) {
- callback(res);
- });
- },
- //资料库获取详情
- GetProdcutArchiveDetails: function (params, callback) {
- Http.AjaxService({
- url: '/commodity/product/archive/detail',
- type: 'GET',
- data: params,
- json: false,
- }).then(function (res) {
- callback(res);
- });
- },
- //采美豆抵扣
- SearchArchiveByBeans: function (params, callback) {
- Http.AjaxService({
- url: '/user/club/archive/deduction',
- type: 'POST',
- data: params,
- json: false,
- }).then(function (res) {
- callback(res);
- });
- }
- };
|