buddhism/api/walkInto/walkInto.js
2025-08-14 11:22:53 +08:00

17 lines
274 B
JavaScript

import { get } from '@/utils/request'
/**
* 获取寺庙介绍信息
* @returns {Promise} 返回寺庙介绍数据
*/
export function getTempleInfo() {
return get(
'/app/temple/introduced',
{},
{
timeout: 10000,
showLoading: false,
}
)
}