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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
| <template>
| <div style="padding: 0 4px; border-top: 10px solid #eee">
| <h3>
| <i class="ivu-icon ivu-icon-ios-information-circle-outline"></i>工单明细
| </h3>
| <div style="padding: 10px; background: white; padding-top: 0">
| <vol-table
| ref="tableList"
| :loadKey="true"
| :columns="columns"
| :pagination-hide="true"
| :height="210"
| :defaultLoadPage="false"
| @loadBefore="loadBefore"
| url="/api/dt_mes_head/getDetailPage"
| :row-index="true"
| :index="false"
| ></vol-table>
| </div>
| </div>
| </template>
|
| <script>
| import VolTable from "@/components/basic/VolTable.vue";
| export default {
| components: {
| VolTable,
| },
| methods: {
| loadBefore(params, callback) {
| return callback(true);
| },
| },
| data() {
| return {
| tableData: [],
| //从生成的代码sellorder2.vue里面把明细配置复制过来就能用
| columns: [
| {
| field: "mes_detail_id",
| title: "工单明细ID",
| type: "guid",
| width: 110,
| hidden: true,
| readonly: true,
| require: true,
| align: "left",
| },
| {
| field: "jobID",
| title: "工单编号",
| type: "string",
| width: 110,
| align: "left",
| sort: true,
| },
| {
| field: "heatID",
| title: "炉代号",
| type: "string",
| width: 110,
| align: "left",
| },
| {
| field: "billetID",
| title: "钢坯号",
| type: "int",
| width: 110,
| require: true,
| align: "left",
| },
| {
| field: "SN",
| title: "车轮SN号",
| type: "string",
| width: 110,
| align: "left",
| },
| {
| field: "heatBatchID",
| title: "热处理批次",
| type: "string",
| width: 110,
| align: "left",
| },
| {
| field: "Status",
| title: "工单状态",
| type: "string",
| width: 110,
| align: "left",
| },
| {
| field: "FinishTime",
| title: "完成时间",
| type: "datetime",
| width: 150,
| align: "left",
| },
| ],
| };
| },
| };
| </script>
| <style scoped>
| h3 {
| font-weight: 500;
| padding-left: 10px;
| background: white;
| margin-top: 8px;
| padding-bottom: 5px;
| }
| </style>
|
|