简要描述:

  • 用户登录接口

请求域名:

  • http://xx.com

请求URL:

GET/route=goods.dispatch.edit-save(视图,传值模板id)
POST/route=goods.dispatch.edit(提交存储数据)

传参数说明:

参数名 类型 说明
id int 模板id
以下数据 需要加数组 如:dispatch[explain_title]
dispatch_name str 配送方式名称
display_order int 显示顺序
enabled int 是否启用:0 否 1是
is_default int 是否默认:1默认 0非默认
calculate_type str 计费方式:0按重量计费 1按件计费
areas str 地区
first_weight int 首重
another_weight int 续重
first_weight_price int 首重价格
another_weight_price int 续重价格
first_piece int 首件
another_piece int 另一件
first_piece_price int 首件价格
another_piece_price int 续件价格
-------- -----计费方式:按重量计费--- ------------
weight[0][areas] str 市区名称,以字符串格式逗号分隔
weight[0][area_ids] str 市区id,以字符串格式逗号分隔
weight[0][first_weight] int 首重
weight[0][first_weight_price] int 首重金额
weight[0][another_weight] int 续重
weight[0][another_weight_price] int 续重金额
-------- -----计费方式:按件计费--- ------------
piece[0][areas] int 市区名称,以字符串格式逗号分隔
piece[0][area_ids] int 市区id,以字符串格式逗号分隔
piece[0][first_piece] int 首件
piece[0][first_piece_price] int 收件价格
piece[0][another_piece] int 续件
piece[0][another_piece_price] int 续件价格

备注:

返回示例:

正确时返回:

{
result: 1,
msg: "配送模板更新成功",
data: [ ]
}

错误时返回:

 

data 返回参数说明:

参数名 类型 说明

备注:

  • 更多返回错误代码请看首页的错误代码描述