28 lines
454 B
JavaScript
28 lines
454 B
JavaScript
export const shopTypes = {
|
|
'only': '单店',
|
|
'chain': '连锁店',
|
|
'join': '加盟店',
|
|
}
|
|
|
|
export const registerTypes = {
|
|
'before': '快餐版',
|
|
'after': '餐饮版',
|
|
}
|
|
|
|
export const profiless = {
|
|
probation: '试用',
|
|
release: '正式',
|
|
}
|
|
export const statuss = {
|
|
1: '开启',
|
|
0: '关闭'
|
|
}
|
|
export const tubeTypes = {
|
|
1: '直接管理',
|
|
0: '不可直接管理'
|
|
}
|
|
|
|
export const channels = {
|
|
'poly': '聚合支付',
|
|
'native': '支付进件',
|
|
} |