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