rk
2 天以前 c313a253b1fcdc75b6be5db575fc2b29fb407021
admin/src/api/business/shopInfo.js
@@ -15,7 +15,7 @@
}
export function updateById (data) {
  return request.post('/business/shopInfo/updateById', data)
  return request.post('/business/shopInfo/updateShop', data)
}
export function deleteById (id) {
@@ -28,4 +28,24 @@
      ids
    }
  })
}
}
// 修改门店状态
export function changeStatus (data) {
  return request.post('/business/shopInfo/changeStatus', data)
}
// 门店详情
export function detail (id) {
  return request.get(`/business/shopInfo/detail/${id}`)
}
// 重置密码
export function resetPassword (data) {
  return request.post('/business/shopInfo/resetPassword', data)
}
// 门店审批
export function audit (data) {
  return request.post('/business/shopInfo/audit', data)
}