mi-assessment/uniapp/api/business.js
2026-02-20 17:51:39 +08:00

19 lines
311 B
JavaScript

/**
* 业务接口模块
*/
import { get } from './request'
/**
* 获取业务详情
* @param {number} businessId - 业务ID
* @returns {Promise<Object>}
*/
export function getBusinessDetail(businessId) {
return get('/business/getDetail', { id: businessId })
}
export default {
getBusinessDetail
}