buddhism/api/walkInto/walkInto.js
2025-08-02 17:35:47 +08:00

12 lines
262 B
JavaScript

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