1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
| export const tableColumn = [
| // { prop: 'sorting', label: '排序', noRepeat: true },
| { prop: 'rank', label: '排名' },
| { prop: 'title', label: '电影名', width: 150 },
| // { prop: 'originalTitle', label: '原名', width: 150 },
| {
| prop: 'rating',
| label: '评分',
| noRepeat: true,
| width: 100,
| },
| // { prop: 'genres', label: '类型', width: 150 },
| { prop: 'directors', label: '导演', width: 150 },
| { prop: 'casts', label: '主演', width: 150 },
| { prop: 'year', label: '年份' },
| { prop: 'recommend', label: '推荐', noRepeat: true },
| {
| prop: 'remark',
| label: '备注',
| noRepeat: true,
| width: 200,
| },
| ]
|
| export const a = 1
|
|