MrShi
7 天以前 caad7caa1e3409568ffaf8312064731c9b6147b0
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,19 @@
      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)
}