diff --git a/src/api/shopSys.js b/src/api/shopSys.js index 624b991..f37ad27 100644 --- a/src/api/shopSys.js +++ b/src/api/shopSys.js @@ -64,3 +64,97 @@ export function logisticsDelete(data) { data }) } + + +//* ******************** 仓库 ********************* +// 仓库查询 +export function storehouseGetAll(data) { + return request({ + url: '/storehouse/getAll', + method: 'post', + data + }) +} + +// 仓库详情 +export function storehouseGetById(data) { + return request({ + url: '/storehouse/getById', + method: 'post', + data + }) +} + +// 添加仓库 +export function storehouseAdd(data) { + return request({ + url: '/storehouse/save', + method: 'post', + data + }) +} + +// 修改仓库 +export function storehouseUpdate(data) { + return request({ + url: '/storehouse/update', + method: 'post', + data + }) +} + +// 删除仓库 +export function storehouseDelete(data) { + return request({ + url: '/storehouse/delete', + method: 'post', + data + }) +} + + +//* ******************** 跨境信息 ********************* +// 获取全部 +export function shopcrossdetailGetAll(data) { + return request({ + url: '/shopcrossdetail/getAll', + method: 'post', + data + }) +} + +// 单个详情 +export function shopcrossdetailGetById(data) { + return request({ + url: '/shopcrossdetail/getById', + method: 'post', + data + }) +} + +// 添加 +export function shopcrossdetailAdd(data) { + return request({ + url: '/shopcrossdetail/save', + method: 'post', + data + }) +} + +// 修改 +export function shopcrossdetailUpdate(data) { + return request({ + url: '/shopcrossdetail/update', + method: 'post', + data + }) +} + +// 删除 +export function shopcrossdetailDelete(data) { + return request({ + url: '/shopcrossdetail/delete', + method: 'post', + data + }) +} diff --git a/src/views/commodity/commoditySystem/addCommodity.vue b/src/views/commodity/commoditySystem/addCommodity.vue index 34552e6..d4cef40 100644 --- a/src/views/commodity/commoditySystem/addCommodity.vue +++ b/src/views/commodity/commoditySystem/addCommodity.vue @@ -80,7 +80,7 @@ - + 是 否 diff --git a/src/views/commodity/commoditySystem/addComponent.vue b/src/views/commodity/commoditySystem/addComponent.vue index b330449..98f82d6 100644 --- a/src/views/commodity/commoditySystem/addComponent.vue +++ b/src/views/commodity/commoditySystem/addComponent.vue @@ -57,6 +57,27 @@ + + + + + + + + + + + + + + + + @@ -165,6 +186,26 @@ + + + + + + + + + + + + + + + @@ -204,6 +245,7 @@ + diff --git a/src/views/system/shopCrossDetail/index.vue b/src/views/system/shopCrossDetail/index.vue new file mode 100644 index 0000000..b2140f5 --- /dev/null +++ b/src/views/system/shopCrossDetail/index.vue @@ -0,0 +1,136 @@ + + + + + 店铺跨境信息 + 取消 + 编辑 + 保存 + + + + + + + + + + + + + + diff --git a/src/views/system/storehouse/Edit.vue b/src/views/system/storehouse/Edit.vue new file mode 100644 index 0000000..d0ae54a --- /dev/null +++ b/src/views/system/storehouse/Edit.vue @@ -0,0 +1,318 @@ + + + + + + + + + 自营仓 + 委外仓 + + + + + 国内仓 + 保税仓 + 海外仓 + + + + + + + 订单只有一个商品时,订单金额(即订单实付金额)不超过 + 元 + + + + + 订单包含多个商品时,订单金额(即订单实付金额)不超过 + 元 + + + + + + + + 订单中每个商品数量不超过 + 件 + + + + + 订单中总商品数量不超过 + 件 + + + + + + + 每个身份证每日下单次数不超过 + 次 + + + + + + + 是 + 否 + + + + + 确定 + 取消 + + + + + + + + {{ province.provinceName }} + + + + + + + + + + + + diff --git a/src/views/system/storehouse/index.vue b/src/views/system/storehouse/index.vue new file mode 100644 index 0000000..5fab744 --- /dev/null +++ b/src/views/system/storehouse/index.vue @@ -0,0 +1,217 @@ + + + + + + + + + + + + 新增仓库 + 查询 + + {{ item.permissionName }} + + + + + + + + + {{ scope.row.storehouseName }} + + + + 自营仓 + 委外仓 + + + + + 国内仓 + 保税仓 + 海外仓 + + + + + + 查看 + 编辑 + 删除 + + + + + + + + + + + + + + + +