feat: 评价页面搭建
This commit is contained in:
52
src/renderer/constant/rate.ts
Normal file
52
src/renderer/constant/rate.ts
Normal file
@@ -0,0 +1,52 @@
|
||||
import xc from '@assets/images/rate/xc.png'
|
||||
import qne from '@assets/images/rate/qne.png'
|
||||
import fz from '@assets/images/rate/fz.png'
|
||||
import mt from '@assets/images/rate/mt.png'
|
||||
import dy from '@assets/images/rate/dy.png'
|
||||
|
||||
// 菜单列表申明
|
||||
interface Item {
|
||||
id: number
|
||||
name: string
|
||||
icon: any
|
||||
total: number,
|
||||
score: number
|
||||
}
|
||||
|
||||
export const channels: Item[] = [
|
||||
{
|
||||
id: 1,
|
||||
name: '携程',
|
||||
icon: xc,
|
||||
total: 110,
|
||||
score: 4.5
|
||||
},
|
||||
{
|
||||
id: 2,
|
||||
name: '去哪儿',
|
||||
icon: qne,
|
||||
total: 100,
|
||||
score: 4.5
|
||||
},
|
||||
{
|
||||
id: 3,
|
||||
name: '飞猪',
|
||||
icon: fz,
|
||||
total: 90,
|
||||
score: 4.5
|
||||
},
|
||||
{
|
||||
id: 4,
|
||||
name: '美团',
|
||||
icon: mt,
|
||||
total: 80,
|
||||
score: 4.5
|
||||
},
|
||||
{
|
||||
id: 5,
|
||||
name: '抖音',
|
||||
icon: dy,
|
||||
total: 70,
|
||||
score: 4.5
|
||||
}
|
||||
]
|
||||
Reference in New Issue
Block a user