|
|
module.exports = {
|
|
|
namespace: "sellerDecorator",
|
|
|
apis: {
|
|
|
saveDecoratorTemplate: {
|
|
|
title: "存储店铺装修模板",
|
|
|
url: "/sellerShopsDecoratorRest/saveDecoratorTemplate",
|
|
|
params: [
|
|
|
{name: "shopId", type: "Number"},
|
|
|
{name: "platform", type: "Number"},
|
|
|
{name: 'platformType', type: 'Number'},
|
|
|
{name: "appType", type: "Number"},
|
|
|
{name: "templateName", type: "String"},
|
|
|
{name: "templateType", type: "String"},
|
|
|
{name: "modules", type: "String"},
|
|
|
{name: "flag", type: "Number"}
|
|
|
]
|
|
|
},
|
|
|
|
|
|
updateDecoratorTemplate: {
|
|
|
title: "更新店铺模板",
|
|
|
url: "/sellerShopsDecoratorRest/updateDecoratorTemplate",
|
|
|
params: [
|
|
|
{name: "templateId", type: "Number"},
|
|
|
{name: "shopId", type: "Number"},
|
|
|
{name: "platform", type: "Number"},
|
|
|
{name: 'platformType', type: 'Number'},
|
|
|
{name: "appType", type: "Number"},
|
|
|
{name: "templateName", type: "String"},
|
|
|
{name: "modules", type: "String"}
|
|
|
]
|
|
|
}
|
|
|
}
|
|
|
} |
|
|
\ No newline at end of file |
...
|
...
|
|