2025-07-22 18:31:50 +08:00

24 lines
375 B
JavaScript

import utils from "../js/utils.js";
/**
* 证书相关接口
*/
module.exports = {
/**
* 获取列表
* @returns {Promise<*>}
*/
getCertList(handler, data = {}) {
return utils.http(handler, 'cert/index', data)
},
/**
* 获取详情
* @returns {Promise<*>}
*/
getCertDetail(handler, data = {}) {
return utils.http(handler, 'cert/detail', data)
},
}