28 lines
1.3 KiB
JavaScript
28 lines
1.3 KiB
JavaScript
|
|
// enum/nearbyEnum.js
|
||
|
|
// 图像简称与API链接地址的枚举
|
||
|
|
|
||
|
|
export const NearbyImageEnum = {
|
||
|
|
// VENERABLE_MONK_IN_THE_TEMPLE: "https://api.ccttiot.com/image-1753687164375.png", //
|
||
|
|
// BG: "https://api.ccttiot.com/smartmeter/img/static/uz3vQk44WkGnJPVjKrw1", // 背景图
|
||
|
|
// GG: "https://api.ccttiot.com/smartmeter/img/static/uIm0UpcFxyLwYpwCIVcg", // 公告图标
|
||
|
|
// ICON1: "https://api.ccttiot.com/smartmeter/img/static/u0xTi5R31GxYwd7WxRhy", // 右侧图标1
|
||
|
|
// ICON2: "https://api.ccttiot.com/smartmeter/img/static/uB1vz72boVOJMfDgqcCP", // 右侧图标2
|
||
|
|
// ... 其他图片
|
||
|
|
INSTITUTION: "https://api.ccttiot.com/smartmeter/img/static/uOOpKw4AVVYPpvpcqmrZ", // 寺庙建制
|
||
|
|
ABBOT: "https://api.ccttiot.com/smartmeter/img/static/utmlRwjQwf73DjXntneL", // 主持法师
|
||
|
|
ANCIENT:"https://api.ccttiot.com/smartmeter/img/static/upCsFSxrBjwmeX6f3ykL", // 古刹巡礼
|
||
|
|
WALK: "https://api.ccttiot.com/smartmeter/img/static/uET6o6pB2IDzfJb4BCv3", // 走进平山
|
||
|
|
MONK: "https://api.ccttiot.com/image-1753687164375.png", // 寺庙高僧
|
||
|
|
ACTIVITY: "https://api.ccttiot.com/image-1753691910959.png", // 活动预告
|
||
|
|
NEW:'https://api.ccttiot.com/image-1753691974607.png',//新闻动态
|
||
|
|
|
||
|
|
// ... 继续补充
|
||
|
|
};
|
||
|
|
|
||
|
|
export default NearbyImageEnum;
|
||
|
|
|
||
|
|
|
||
|
|
// 使用方法
|
||
|
|
// import { NearbyImageEnum } from '@/enum/nearbyEnum.js';
|
||
|
|
|
||
|
|
// const bgUrl = NearbyImageEnum.BG;
|