gaoluyang
3 小时以前 cb9cd49627b65a4c0e137e08063271a8cefe1826
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
79
<script lang="ts" setup>
import type { VxeTableGridOptions } from '#/adapter/vxe-table';
import type { MesDvRepairApi } from '#/api/mes/dv/repair';
 
import { watch } from 'vue';
 
import { DICT_TYPE } from '@vben/constants';
 
import { useVbenVxeGrid } from '#/adapter/vxe-table';
import { getRepairPage } from '#/api/mes/dv/repair';
 
const props = defineProps<{ machineryId: number }>();
 
const [Grid, gridApi] = useVbenVxeGrid({
  gridOptions: {
    columns: [
      { field: 'code', title: '维修单号', minWidth: 140 },
      { field: 'name', title: '维修单名称', minWidth: 150 },
      {
        field: 'result',
        title: '维修结果',
        width: 120,
        cellRender: {
          name: 'CellDict',
          props: { type: DICT_TYPE.MES_DV_REPAIR_RESULT },
        },
      },
      {
        field: 'requireDate',
        title: '报修日期',
        width: 180,
        formatter: 'formatDateTime',
      },
      { field: 'nickname', title: '操作人', minWidth: 120 },
      {
        field: 'status',
        title: '状态',
        width: 120,
        cellRender: {
          name: 'CellDict',
          props: { type: DICT_TYPE.MES_DV_REPAIR_STATUS },
        },
      },
    ],
    height: 320,
    keepSource: true,
    proxyConfig: {
      ajax: {
        query: async ({ page }) =>
          await getRepairPage({
            pageNo: page.currentPage,
            pageSize: page.pageSize,
            machineryId: props.machineryId,
          }),
      },
    },
    rowConfig: {
      keyField: 'id',
      isHover: true,
    },
    toolbarConfig: {
      refresh: true,
    },
  } as VxeTableGridOptions<MesDvRepairApi.Repair>,
});
 
watch(
  () => props.machineryId,
  (value) => {
    if (value) {
      gridApi.query();
    }
  },
);
</script>
 
<template>
  <Grid table-title="维修记录" />
</template>