|
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
|
<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>
|
|
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
<a-col :md="6" :sm="8">
<a-form-item label="工艺状态">
<a-select
show-search
placeholder="请选择工艺状态"
option-filter-prop="children"
v-model="queryParam.status"
>
<a-select-option v-for="item in statusColumns" :key="item.key" :value="item.value">{{ item.key }}</a-select-option>
</a-select>
</a-form-item>
</a-col>
|
|
31
32
33
34
35
36
37
38
39
40
|
<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>
|
|
41
42
|
<!-- 操作按钮区域 -->
<div class="table-operator" v-if="mainId">
|
|
43
|
<a-button @click="handleAdd" type="primary" icon="plus">新增</a-button>
|
|
44
45
46
47
48
49
50
51
|
<a-button type="primary" icon="download" @click="handleExportXls('生产计划明细')">导出</a-button>
<a-upload
name="file"
:showUploadList="false"
:multiple="false"
:headers="tokenHeader"
:action="importExcelUrl"
@change="handleImportExcel">
|
|
52
|
<a-button type="primary" icon="import">导入</a-button>
|
|
53
54
|
</a-upload>
<a-dropdown v-if="selectedRowKeys.length > 0">
|
|
55
56
57
58
|
<a-button type="primary" @click="batchDel">
<a-icon type="delete" />
删除
</a-button>
|
|
59
60
61
62
63
64
|
</a-dropdown>
</div>
<!-- table区域-begin -->
<div>
<div class="ant-alert ant-alert-info" style="margin-bottom: 16px;">
|
|
65
66
|
<i class="anticon anticon-info-circle ant-alert-icon"></i> 已选择 <a
style="font-weight: 600">{{ selectedRowKeys.length }}</a>项
|
|
67
68
69
70
71
72
73
74
75
76
77
|
<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"
|
|
78
|
:rowSelection="{selectedRowKeys: selectedRowKeys, onChange: selectChanges}"
|
|
79
80
|
:pagination="ipagination"
:loading="loading"
|
|
81
|
@expand="onExpand"
|
|
82
83
|
@change="handleTableChange"
:expandedRowKeys="expandedRowKeys">
|
|
84
85
86
87
88
|
<span slot="action2" slot-scope="text, record">
<a @click="openDraw(record)">图纸预览</a>
</span>
|
|
89
90
91
92
93
94
95
96
|
<a-table
slot="expandedRowRender"
slot-scope="text"
:columns="innerColumns"
:data-source="innerData"
:pagination="false"
>
<span slot="action" slot-scope="text, record">
|
|
97
98
|
<a @click="addForm(record)">新增</a>
<a-divider type="vertical" />
|
|
99
100
101
102
103
104
105
106
|
<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>
|
|
107
108
|
|
|
109
|
</a-table>
|
|
110
111
112
113
|
<span slot="tags" slot-scope="tags">
<a-tag
v-for="tag in tags"
:key="tag"
|
|
114
|
:color="tag.status === 0 ? 'volcano' : 'geekblue'">
|
|
115
116
117
|
{{ tag.name }}
</a-tag>
</span>
|
|
118
119
120
121
122
|
</a-table>
</div>
<schedulerDetail-modal ref="modalForm" @ok="modalFormOk" :mainId="mainId"></schedulerDetail-modal>
|
|
123
|
<scheduler-complete-modal ref="completeForm" @ok="completeFormOk" :mainId="mainId"></scheduler-complete-modal>
|
|
124
125
126
127
128
|
</a-card>
</template>
<script>
|
|
129
130
131
|
import { JeecgListMixin } from '@/mixins/JeecgListMixin'
import SchedulerDetailModal from './modules/SchedulerDetailModal'
import SchedulerCompleteModal from '@views/scheduler/modules/SchedulerCompleteModal'
|
|
132
|
import { getTechnology, getTechnologyType,deletePl } from '@api/api'
|
|
133
|
import { queryDetailList } from '../../api/schedulerApi'
|
|
134
|
import {getSid,getDrawId} from "../../api/api";
|
|
135
|
|
|
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
|
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)
|
|
156
157
|
}
}
|
|
158
159
160
161
162
163
|
}
},
data() {
return {
description: '生产计划管理页面',
disableMixinCreated: true,
|
|
164
|
expandedRowKeys: [],
|
|
165
|
id:'',
|
|
166
167
168
169
170
171
172
173
174
175
176
177
|
statusColumns: [
{
key: '所有',
value: ''
}, {
key: '未完成',
value: '0'
},{
key: '完成',
value: '1'
}
],
|
|
178
179
180
181
182
183
184
185
186
187
|
// 表头
columns: [
{
title: '#',
dataIndex: '',
key: 'rowIndex',
width: 60,
align: 'center',
customRender: function(t, r, index) {
return parseInt(index) + 1
|
|
188
189
|
}
},
|
|
190
191
192
193
|
{
title: '图号',
align: 'center',
dataIndex: 'drawingNo'
|
|
194
|
},
|
|
195
|
{
|
|
196
|
title: '项目ID',
|
|
197
|
align: 'center',
|
|
198
|
width: 60,
|
|
199
|
dataIndex: 'headerId'
|
|
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
|
},
{
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',
|
|
229
230
231
232
233
234
|
dataIndex: 'tags',
scopedSlots: {
customRender: 'tags',
},
},
{
|
|
235
236
|
title: '状态',
align: 'center',
|
|
237
|
width: 80,
|
|
238
239
240
241
242
243
244
245
246
|
dataIndex: 'status',
customRender: function(text) {
if (text === 0) {
return '生产中'
} else if (text === 1) {
return '按时完成'
} else if (text === 2) {
return '超时完成'
}
|
|
247
|
}
|
|
248
249
250
251
252
253
254
255
|
},
{
title: '创建日期',
align: 'center',
dataIndex: 'createTime',
customRender: function(text) {
return !text ? '' : (text.length > 10 ? text.substr(0, 10) : text)
}
|
|
256
|
}
|
|
257
258
259
260
261
262
263
264
|
// ,
// {
// title: '操作',
// align:"center",
// fixed:"right",
// width:147,
// scopedSlots: { customRender: 'action2'}
// }
|
|
265
266
|
],
innerColumns: [
|
|
267
268
269
270
271
|
{
title: '#', dataIndex: '', key: 'rowIndex', width: 60, align: 'center', customRender: function(t, r, index) {
return parseInt(index) + 1
}
},
|
|
272
|
{ title: '名称', align: 'center', dataIndex: 'name' },
|
|
273
|
{ title: '工艺', align: 'center', dataIndex: 'userDef3' },
|
|
274
275
|
{ title: '准备工时(分钟)', align: 'center', dataIndex: 'readyTime' },
{ title: '操作工时(分钟)', align: 'center', dataIndex: 'technologyTime' },
|
|
276
277
278
279
280
281
282
283
284
285
286
|
{
title: '状态', align: 'center', dataIndex: 'status', customRender: function(text) {
if (text === 0) {
return '生产中'
} else if (text === 1) {
return '按时完成'
} else if (text === 2) {
return '超时完成'
}
}
},
|
|
287
288
|
{ title: '排序', align: 'center', dataIndex: 'sequence' },
{ title: '完成人', align: 'center', dataIndex: 'completeBy' },
|
|
289
290
291
292
293
|
{
title: '完成时间', align: 'center', dataIndex: 'completeDate', customRender: function(text) {
return !text ? '' : (text.length > 10 ? text.substr(0, 10) : text)
}
},
|
|
294
|
{ title: '延误原因', align: 'center', dataIndex: 'delayReason' },
|
|
295
296
297
298
299
300
301
302
|
{
title: '操作',
dataIndex: 'action',
align: 'center',
fixed: 'right',
width: 160,
scopedSlots: { customRender: 'action' }
}
|
|
303
304
305
306
|
],
url: {
list: '/scheduler/schedulerDetail/list',
delete: '/scheduler/schedulerHeader/deleteSchedulerDetail',
|
|
307
308
|
// deleteBatch: '/scheduler/schedulerHeader/deleteBatchSchedulerDetail',
deleteBatch: '/scheduler/schedulerDetail/deleteBatch',
|
|
309
310
|
exportXlsUrl: '/scheduler/schedulerHeader/exportSchedulerDetail',
importUrl: '/scheduler/schedulerHeader/importSchedulerDetail'
|
|
311
|
},
|
|
312
|
innerData: [],
|
|
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
|
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
},
|
|
345
|
|
|
346
347
348
349
350
|
handleEdit: function (record) {
this.$refs.modalForm.edit(record);
this.$refs.modalForm.title = "编辑";
this.$refs.modalForm.disableSubmit = false;
},
|
|
351
352
353
354
355
|
complete(record) {
this.$refs.completeForm.edit(record)
this.$refs.completeForm.title = '完成'
this.$refs.completeForm.disableSubmit = false
},
|
|
356
357
358
359
360
|
addForm(record) {
this.$refs.modalForm.addForm(record)
this.$refs.modalForm.title = '增加'
this.$refs.modalForm.disableSubmit = false
},
|
|
361
|
|
|
362
363
364
365
|
selectChanges(selectedRowKeys, selectionRows) {
this.selectedRowKeys = selectedRowKeys;
this.selectionRows = selectionRows;
|
|
366
|
},
|
|
367
368
369
370
371
372
373
374
375
376
377
378
|
openDraw(record){
let params = {
'name': record.name,
'f08': record.drawingNo
}
var id='';
getDrawId(params).then((res) => {
if(res.code==0){
id=res.result;
getSid().then((res) => {
var json=JSON.parse(res.result);
if (json.errcode=="0"){
|
|
379
|
window.open("http://mts.huahengweld.com/sipmweb/web/search/detail?rid="+json.errmsg+"&id="+id+"&t=DWGSW","_blank");
|
|
380
381
382
383
384
385
386
387
388
389
|
}else{
this.$message.error("接口鉴权失败")
}
})
}else{
this.$message.error("数据异常,未找到图纸")
}
})
},
|
|
390
|
|
|
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
|
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
}
})
},
|
|
420
|
|
|
421
422
423
424
425
426
427
428
|
completeFormOk() {
// 新增/修改 成功时,重载列表
this.loadData()
//清空列表选中
this.onClearSelected()
},
onExpand(expanded, record) {
|
|
429
430
431
432
433
|
if (expanded) {
let params = {
'drawingNo': record.drawingNo,
'name': record.name,
'headerId': record.headerId
|
|
434
|
}
|
|
435
436
437
438
439
440
441
442
443
444
445
|
queryDetailList(params).then((res) => {
if (res.success) {
this.innerData = res.result
}
})
this.expandedRowKeys = []
this.expandedRowKeys.push(record.id)
} else {
this.expandedRowKeys = []
}
|
|
446
447
|
}
}
|
|
448
|
}
|
|
449
450
|
</script>
<style scoped>
|
|
451
|
@import '~@assets/less/common.less'
|
|
452
|
</style>
|