parent
7d46889c4a
commit
21a6cd9755
@ -0,0 +1,16 @@
|
||||
export interface ConsultPhone {
|
||||
display: string
|
||||
tel: string
|
||||
}
|
||||
|
||||
/** 选手端登录页 / 报名页展示的参赛咨询电话 */
|
||||
export const entryConsultPhones: ConsultPhone[] = [
|
||||
{ display: '0512-66969167', tel: '051266969167' },
|
||||
{ display: '0512-66969172', tel: '051266969172' },
|
||||
]
|
||||
|
||||
/** 选手端登录页 / 报名页展示的技术咨询电话 */
|
||||
export const techConsultPhone: ConsultPhone = {
|
||||
display: '18626298655',
|
||||
tel: '18626298655',
|
||||
}
|
||||
Loading…
Reference in new issue