|
1
2
|
<template>
<a-card :bordered="false" :class="'cust-erp-sub-tab'">
|
|
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
<div class="table-page-search-wrapper">
<a-form layout="inline" @keyup.enter.native="searchQuery">
<a-row :gutter="24">
<a-col :md="6" :sm="12">
<a-form-item label="图号" :labelCol="{span: 6}" :wrapperCol="{span: 14, offset: 1}">
<a-input placeholder="请输入图号" v-model="queryParam.drawingNo"></a-input>
</a-form-item>
</a-col>
<a-col :md="6" :sm="12">
<a-form-item label="名称" :labelCol="{span: 6}" :wrapperCol="{span: 14, offset: 1}">
<a-input placeholder="请输入名称" v-model="queryParam.name"></a-input>
</a-form-item>
</a-col>
<a-col :md="4" :sm="8">
<span style="float: left;overflow: hidden;" class="table-page-search-submitButtons">
<a-button type="primary" @click="searchQuery" icon="search">查询</a-button>
<a-button type="primary" @click="searchReset" icon="reload" style="margin-left: 8px">重置</a-button>
</span>
</a-col>
</a-row>
</a-form>
</div>
|
|
27
28
29
30
31
32
33
34
35
36
37
|
<!-- 操作按钮区域 -->
<div class="table-operator" v-if="mainId">
<a-button @click="handleAdd" type="primary" icon="plus">新增</a-button>
<a-button type="primary" icon="download" @click="handleExportXls('生产计划明细')">导出</a-button>
<a-upload
name="file"
:showUploadList="false"
:multiple="false"
:headers="tokenHeader"
:action="importExcelUrl"
@change="handleImportExcel">
|
|
38
|
<a-button type="primary" icon="import">导入</a-button>
|
|
39
40
|
</a-upload>
<a-dropdown v-if="selectedRowKeys.length > 0">
|
|
41
42
43
44
|
<a-button type="primary" @click="batchDel">
<a-icon type="delete" />
删除
</a-button>
|
|
45
46
47
48
49
50
|
</a-dropdown>
</div>
<!-- table区域-begin -->
<div>
<div class="ant-alert ant-alert-info" style="margin-bottom: 16px;">
|
|
51
52
|
<i class="anticon anticon-info-circle ant-alert-icon"></i> 已选择 <a
style="font-weight: 600">{{ selectedRowKeys.length }}</a>项
|
|
53
54
55
56
57
58
59
60
61
62
63
64
65
|
<a style="margin-left: 24px" @click="onClearSelected">清空</a>
</div>
<a-table
ref="table"
size="middle"
bordered
rowKey="id"
:scroll="{x:true}"
:columns="columns"
:dataSource="dataSource"
:pagination="ipagination"
:loading="loading"
|
|
66
|
@expand="onExpand"
|
|
67
68
|
@change="handleTableChange"
:expandedRowKeys="expandedRowKeys">
|
|
69
70
71
72
73
74
75
76
|
<a-table
slot="expandedRowRender"
slot-scope="text"
:columns="innerColumns"
:data-source="innerData"
:pagination="false"
>
<span slot="action" slot-scope="text, record">
|
|
77
78
79
80
81
82
83
84
|
<a @click="handleEdit(record)">编辑</a>
<a-divider type="vertical" />
<a @click="complete(record)">完成</a>
<a-divider type="vertical" />
<a-popconfirm title="确定删除吗?" @confirm="() => handleDelete(record.id)">
<a>删除</a>
</a-popconfirm>
</span>
|
|
85
|
</a-table>
|
|
86
87
88
89
|
<span slot="tags" slot-scope="tags">
<a-tag
v-for="tag in tags"
:key="tag"
|
|
90
|
:color="tag.status === 0 ? 'volcano' : 'geekblue'">
|
|
91
92
93
|
{{ tag.name }}
</a-tag>
</span>
|
|
94
95
96
97
98
|
</a-table>
</div>
<schedulerDetail-modal ref="modalForm" @ok="modalFormOk" :mainId="mainId"></schedulerDetail-modal>
|
|
99
|
<scheduler-complete-modal ref="completeForm" @ok="completeFormOk" :mainId="mainId"></scheduler-complete-modal>
|
|
100
101
102
103
104
|
</a-card>
</template>
<script>
|
|
105
106
107
108
109
|
import { JeecgListMixin } from '@/mixins/JeecgListMixin'
import SchedulerDetailModal from './modules/SchedulerDetailModal'
import SchedulerCompleteModal from '@views/scheduler/modules/SchedulerCompleteModal'
import { getTechnology, getTechnologyType } from '@api/api'
import { queryDetailList } from '../../api/schedulerApi'
|
|
110
|
|
|
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
|
export default {
name: 'SchedulerDetailList',
mixins: [JeecgListMixin],
components: { SchedulerCompleteModal, SchedulerDetailModal },
props: {
mainId: {
type: String,
default: '',
required: false
}
},
watch: {
mainId: {
immediate: true,
handler(val) {
if (!this.mainId) {
this.clearList()
} else {
this.queryParam['headerId'] = val.toString()
this.loadData(1)
|
|
131
132
|
}
}
|
|
133
134
135
136
137
138
|
}
},
data() {
return {
description: '生产计划管理页面',
disableMixinCreated: true,
|
|
139
|
expandedRowKeys: [],
|
|
140
141
142
143
144
145
146
147
148
149
|
// 表头
columns: [
{
title: '#',
dataIndex: '',
key: 'rowIndex',
width: 60,
align: 'center',
customRender: function(t, r, index) {
return parseInt(index) + 1
|
|
150
151
|
}
},
|
|
152
153
154
155
|
{
title: '图号',
align: 'center',
dataIndex: 'drawingNo'
|
|
156
|
},
|
|
157
158
159
|
{
title: '父图号',
align: 'center',
|
|
160
|
width: 60,
|
|
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
|
dataIndex: 'parentDrawingNo'
},
{
title: '名称',
align: 'center',
dataIndex: 'name'
},
{
title: '型号规格',
align: 'center',
dataIndex: 'spec'
},
{
title: '数量',
align: 'center',
dataIndex: 'qty'
},
{
title: '长度(米)',
align: 'center',
dataIndex: 'length'
},
{
title: '重量(kg)',
align: 'center',
dataIndex: 'weight'
},
{
title: '工艺',
align: 'center',
|
|
191
192
193
194
195
196
|
dataIndex: 'tags',
scopedSlots: {
customRender: 'tags',
},
},
{
|
|
197
198
|
title: '状态',
align: 'center',
|
|
199
|
width: 80,
|
|
200
201
202
203
204
205
206
207
208
|
dataIndex: 'status',
customRender: function(text) {
if (text === 0) {
return '生产中'
} else if (text === 1) {
return '按时完成'
} else if (text === 2) {
return '超时完成'
}
|
|
209
|
}
|
|
210
211
212
213
214
215
216
217
|
},
{
title: '创建日期',
align: 'center',
dataIndex: 'createTime',
customRender: function(text) {
return !text ? '' : (text.length > 10 ? text.substr(0, 10) : text)
}
|
|
218
|
}
|
|
219
220
|
],
innerColumns: [
|
|
221
222
223
224
225
|
{
title: '#', dataIndex: '', key: 'rowIndex', width: 60, align: 'center', customRender: function(t, r, index) {
return parseInt(index) + 1
}
},
|
|
226
|
{ title: '名称', align: 'center', dataIndex: 'name' },
|
|
227
|
{ title: '工艺', align: 'center', dataIndex: 'userDef3' },
|
|
228
229
|
{ title: '准备工时(分钟)', align: 'center', dataIndex: 'readyTime' },
{ title: '操作工时(分钟)', align: 'center', dataIndex: 'technologyTime' },
|
|
230
231
232
233
234
235
236
237
238
239
240
|
{
title: '状态', align: 'center', dataIndex: 'status', customRender: function(text) {
if (text === 0) {
return '生产中'
} else if (text === 1) {
return '按时完成'
} else if (text === 2) {
return '超时完成'
}
}
},
|
|
241
242
|
{ title: '排序', align: 'center', dataIndex: 'sequence' },
{ title: '完成人', align: 'center', dataIndex: 'completeBy' },
|
|
243
244
245
246
247
|
{
title: '完成时间', align: 'center', dataIndex: 'completeDate', customRender: function(text) {
return !text ? '' : (text.length > 10 ? text.substr(0, 10) : text)
}
},
|
|
248
|
{ title: '延误原因', align: 'center', dataIndex: 'delayReason' },
|
|
249
250
251
252
253
254
255
256
|
{
title: '操作',
dataIndex: 'action',
align: 'center',
fixed: 'right',
width: 160,
scopedSlots: { customRender: 'action' }
}
|
|
257
258
259
260
261
262
263
|
],
url: {
list: '/scheduler/schedulerDetail/list',
delete: '/scheduler/schedulerHeader/deleteSchedulerDetail',
deleteBatch: '/scheduler/schedulerHeader/deleteBatchSchedulerDetail',
exportXlsUrl: '/scheduler/schedulerHeader/exportSchedulerDetail',
importUrl: '/scheduler/schedulerHeader/importSchedulerDetail'
|
|
264
|
},
|
|
265
|
innerData: [],
|
|
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
|
dictOptions: {},
superFieldList: [],
technologyList: {},
technologyTypeList: {}
}
},
created() {
this.getSuperFieldList()
this.getTechnologyTypeList()
this.getTechnologyList()
},
computed: {
importExcelUrl() {
return `${window._CONFIG['domianURL']}/${this.url.importUrl}/${this.mainId}`
}
},
methods: {
clearList() {
this.dataSource = []
this.selectedRowKeys = []
this.ipagination.current = 1
},
getSuperFieldList() {
let fieldList = []
fieldList.push({ type: 'string', value: 'projectCode', text: '项目号', dictCode: '' })
fieldList.push({ type: 'string', value: 'projectName', text: '项目名称', dictCode: '' })
fieldList.push({ type: 'string', value: 'orderNo', text: '生产令号', dictCode: '' })
fieldList.push({ type: 'string', value: 'partNo', text: '部件号', dictCode: '' })
fieldList.push({ type: 'date', value: 'created', text: '创建时间' })
fieldList.push({ type: 'string', value: 'createBy', text: '创建人', dictCode: '' })
this.superFieldList = fieldList
},
complete(record) {
this.$refs.completeForm.edit(record)
this.$refs.completeForm.title = '完成'
this.$refs.completeForm.disableSubmit = false
},
getTechnologyTypeList() {
const that = this
let obj = getTechnologyType()
obj.then((res) => {
if (res.success) {
that.technologyTypeList = res.result
} else {
that.$message.warning(res.message)
}
})
},
getTechnologyList() {
const that = this
let obj = getTechnology()
obj.then((res) => {
if (res.success) {
that.technologyList = res.result
} else {
that.$message.warning(res.message)
}
})
},
rewriteTechnologyType(val) {
this.technologyTypeList.forEach(item => {
if (item.typeId == val) {
return item.name
}
})
},
|
|
332
|
|
|
333
334
335
336
337
338
339
340
|
completeFormOk() {
// 新增/修改 成功时,重载列表
this.loadData()
//清空列表选中
this.onClearSelected()
},
onExpand(expanded, record) {
|
|
341
342
343
344
345
|
if (expanded) {
let params = {
'drawingNo': record.drawingNo,
'name': record.name,
'headerId': record.headerId
|
|
346
|
}
|
|
347
348
349
350
351
352
353
354
355
356
357
|
queryDetailList(params).then((res) => {
if (res.success) {
this.innerData = res.result
}
})
this.expandedRowKeys = []
this.expandedRowKeys.push(record.id)
} else {
this.expandedRowKeys = []
}
|
|
358
359
|
}
}
|
|
360
|
}
|
|
361
362
|
</script>
<style scoped>
|
|
363
|
@import '~@assets/less/common.less'
|
|
364
|
</style>
|