You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
670 B
18 lines
670 B
// 监听器命名
|
|
// 避免命名冲突,误触监听器
|
|
|
|
export const WRITE_OFF_STORE_INFO = 'stadium_list';
|
|
export const WRITE_OFF_ORDER_INFO = 'order_info'; // 场地核销确认页/ 年月卡核销确认页/ 赛事核销确认页
|
|
export const WRITE_OFF_YM_ORDER_INFO = 'ym_order_info'; // 年月卡订单核销
|
|
export const WRITE_OFF_MALL_ORDER_INFO = 'mall_order_info'; // 商城订单核销
|
|
export const WRITE_OFF_MALL_ORDER_SUCCESS = 'mall_order_success'; // 商城订单核销成功!
|
|
|
|
|
|
|
|
export default {
|
|
WRITE_OFF_STORE_INFO,
|
|
WRITE_OFF_ORDER_INFO,
|
|
WRITE_OFF_YM_ORDER_INFO,
|
|
WRITE_OFF_MALL_ORDER_INFO,
|
|
WRITE_OFF_MALL_ORDER_SUCCESS
|
|
}
|