12 lines
544 B
Plaintext
12 lines
544 B
Plaintext
import { QuickAction } from './types.uts'
|
|
|
|
export const PROJECT_PLACEHOLDER_IMAGE = '/static/images/project-placeholder.svg'
|
|
|
|
export function quickActions(): QuickAction[] {
|
|
return [
|
|
{ key: 'booking', icon: '/static/icons/ico_book.svg', title: '预约时间', subtitle: '选项目 约时间' },
|
|
{ key: 'orders', icon: '/static/icons/ico_orders.svg', title: '我的预约', subtitle: '查看预约记录' },
|
|
{ key: 'price-query', icon: '/static/icons/ico_book.svg', title: '价格查询', subtitle: '查看项目参考价' }
|
|
]
|
|
}
|