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
| import type { VxeGridProps } from '#/adapter/vxe-table';
|
| import { type FormSchemaGetter } from '#/adapter/form';
| import { renderDict } from '#/utils/render';
| import { DictEnum } from '@vben/constants';
| export const querySchema: FormSchemaGetter = () => [];
|
| export const columns: VxeGridProps['columns'] = [
| { type: 'checkbox', width: 60, fixed: 'left' },
| {
| title: '备件名称',
| field: 'spareName',
| minWidth: 120
| },
| {
| title: '备件编号',
| field: 'spareCode',
| minWidth: 120
| },
| {
| title: '规格型号',
| field: 'modelNo',
| minWidth: 100
| },
| {
| title: '计量单位',
| field: 'unit',
| sortable: true,
| slots: {
| default: ({ row }) => {
| if (!row.unit || row.unit === '') {
| return '';
| }
| return renderDict(row.unit, DictEnum.EIMS_SPARE_UNIT);
| }
| },
| width: 100
| },
| {
| title: '之前库存',
| field: 'beforeStock',
| minWidth: 100
| },
| {
| title: '当前库存',
| field: 'actualStock',
| minWidth: 100
| },
| {
| title: '数量',
| field: 'quantity',
| minWidth: 80
| },
| {
| title: '单价',
| field: 'unitPrice',
| minWidth: 80
| },
| {
| title: '金额',
| field: 'amount',
| minWidth: 80
| }
| ];
| export const drawerSchema: FormSchemaGetter = () => [];
|
|