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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
| import ArtButtonTable from '@/components/core/forms/art-button-table/index.vue'
| import { $t } from '@/locales'
|
| export function createLocPreviewTableColumns({ handleViewDetail }) {
| return [
| {
| prop: 'locCode',
| label: $t('pages.manager.locPreview.table.locCode'),
| minWidth: 150,
| showOverflowTooltip: true
| },
| {
| prop: 'warehouseLabel',
| label: $t('pages.manager.locPreview.table.warehouseLabel'),
| minWidth: 150,
| showOverflowTooltip: true
| },
| {
| prop: 'areaLabel',
| label: $t('pages.manager.locPreview.table.areaLabel'),
| minWidth: 150,
| showOverflowTooltip: true
| },
| {
| prop: 'typeLabel',
| label: $t('pages.manager.locPreview.table.typeLabel'),
| minWidth: 160,
| showOverflowTooltip: true
| },
| {
| prop: 'barcode',
| label: $t('pages.manager.locPreview.table.barcode'),
| minWidth: 160,
| showOverflowTooltip: true
| },
| {
| prop: 'useStatusLabel',
| label: $t('pages.manager.locPreview.table.useStatusLabel'),
| width: 120
| },
| {
| prop: 'row',
| label: $t('pages.manager.locPreview.table.row'),
| width: 80
| },
| {
| prop: 'col',
| label: $t('pages.manager.locPreview.table.col'),
| width: 80
| },
| {
| prop: 'lev',
| label: $t('pages.manager.locPreview.table.lev'),
| width: 80
| },
| {
| prop: 'channel',
| label: $t('pages.manager.locPreview.table.channel'),
| width: 90
| },
| {
| prop: 'updateTimeText',
| label: $t('table.updateTime'),
| minWidth: 180,
| showOverflowTooltip: true
| },
| {
| prop: 'action',
| label: $t('common.actions.detail'),
| width: 100,
| fixed: 'right',
| useSlot: true,
| align: 'center'
| }
| ]
| }
|
| export { ArtButtonTable }
|
|