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];
|
}
|