quanwei
2025-10-31 f226d5fe6327e31bb471a96b7370cf94689c6608
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
import config from '../config.js'
 
/*图片地址*/
const imgUrls = {
    'cart_none': config.app_url + '/image/app/cart_none.png', // 空购物车
    'haggle': config.app_url + '/image/app/haggle.png', // 砍价头部背景
    'shop_background_top': config.app_url + '/image/app/shop_background_top.png', // 店铺头部背景
    'no_adress': config.app_url + '/image/app/no_adress.png', // 无地址
    'invite': config.app_url + '/image/app/invite.jpg', // 邀请有礼
    'null-page-draw': config.app_url + '/image/app/null-page-draw.png', // 预售
    'booking': config.app_url + '/image/app/booking.jpg', // 预约
    'no_thing': config.app_url + '/image/app/no_thing.png', // 无数据通用
    'activity_bg': config.app_url + '/image/app/activity_bg.jpg', // 连盟活动默认背景图
    'sign_success': config.app_url + '/image/app/sign_success.png', // 报名成功
    'finish': config.app_url + '/image/app/finish.png', // 结束
    'in_progress': config.app_url + '/image/app/in_progress.png', // 进行中
    'verify_ok': config.app_url + '/image/app/verify_ok.png', // 已核销
    'expire': config.app_url + '/image/app/expire.png', // 已过期
    'branch_portal': config.app_url + '/image/app/branch_portal.png', // 分会入口图片
}
 
/*
 * 跳转页面
 */
export const remoteimg = (type) => {
    if (!type) {
        return false;
    }
    return imgUrls[type];
}