|
@@ -66,6 +66,7 @@
|
|
<detail ref="detail" />
|
|
<detail ref="detail" />
|
|
<detail-repair-application-form ref="detailRepairApplicationFormModal" @ok="handleOk"/>
|
|
<detail-repair-application-form ref="detailRepairApplicationFormModal" @ok="handleOk"/>
|
|
<detail-repair-application-form-repair ref="detailRepairApplicationFormRepairModal" @ok="handleOk"/>
|
|
<detail-repair-application-form-repair ref="detailRepairApplicationFormRepairModal" @ok="handleOk"/>
|
|
|
|
+ <detail-preparation-modal ref="detailPreparationModal" @ok="handleOk"/>
|
|
<detail-repair-application-form-check ref="detailRepairApplicationFormCheckModal" @ok="handleOk"/>
|
|
<detail-repair-application-form-check ref="detailRepairApplicationFormCheckModal" @ok="handleOk"/>
|
|
<detail-out-store ref="detailOutStoreModal" @ok="handleOk"/>
|
|
<detail-out-store ref="detailOutStoreModal" @ok="handleOk"/>
|
|
<detail-spare-pick ref="detailSparePickModal" @ok="handleOk"/>
|
|
<detail-spare-pick ref="detailSparePickModal" @ok="handleOk"/>
|
|
@@ -103,6 +104,8 @@ import { fetchSbAllocateApply } from '@/api/sb/allocate-apply'
|
|
import SuplierAuditForm from '@/views/purchase/supplier/modules/AuditForm'
|
|
import SuplierAuditForm from '@/views/purchase/supplier/modules/AuditForm'
|
|
import DetailAuditScrap from '@/views/sb/scrap/modules/DetailAuditScrap'
|
|
import DetailAuditScrap from '@/views/sb/scrap/modules/DetailAuditScrap'
|
|
import DetailScrap from '@/views/sb/scrap/modules/Detail'
|
|
import DetailScrap from '@/views/sb/scrap/modules/Detail'
|
|
|
|
+import DetailPreparationModal from '@/views/preparation/preparation/modules/Detail'
|
|
|
|
+import { fetchPreparation } from '@/api/preparation/preparation'
|
|
|
|
|
|
export default {
|
|
export default {
|
|
name: 'Workplace',
|
|
name: 'Workplace',
|
|
@@ -121,7 +124,8 @@ export default {
|
|
SbAllocateApplyDetail,
|
|
SbAllocateApplyDetail,
|
|
SuplierAuditForm,
|
|
SuplierAuditForm,
|
|
DetailAuditScrap,
|
|
DetailAuditScrap,
|
|
- DetailScrap
|
|
|
|
|
|
+ DetailScrap,
|
|
|
|
+ DetailPreparationModal
|
|
},
|
|
},
|
|
data () {
|
|
data () {
|
|
return {
|
|
return {
|
|
@@ -283,18 +287,6 @@ export default {
|
|
const modal = this.$refs.detailRepairApplicationFormRepairModal
|
|
const modal = this.$refs.detailRepairApplicationFormRepairModal
|
|
modal.base(res.data)
|
|
modal.base(res.data)
|
|
})
|
|
})
|
|
- /*if (record.detailType === this.DictCache.getValueByCode(this.DictCache.TYPE.WORKPLACE_BACKLOG_DETAIL_TYPE, 'REPAIR_APPLICATION') ||
|
|
|
|
- record.detailType === this.DictCache.getValueByCode(this.DictCache.TYPE.WORKPLACE_BACKLOG_DETAIL_TYPE, 'REPAIR_DISPATCH') ||
|
|
|
|
- record.detailType === this.DictCache.getValueByCode(this.DictCache.TYPE.WORKPLACE_BACKLOG_DETAIL_TYPE, 'REPAIR_BACK') ||
|
|
|
|
- record.detailType === this.DictCache.getValueByCode(this.DictCache.TYPE.WORKPLACE_BACKLOG_DETAIL_TYPE, 'REPAIR_RECEIVE') ||
|
|
|
|
- record.detailType === this.DictCache.getValueByCode(this.DictCache.TYPE.WORKPLACE_BACKLOG_DETAIL_TYPE,'REPAIR_MANAGE_RECEIVE') ||
|
|
|
|
- record.detailType === this.DictCache.getValueByCode(this.DictCache.TYPE.WORKPLACE_BACKLOG_DETAIL_TYPE, 'REPAIR_APPLICATION_STOP')) {
|
|
|
|
- fetchRepairApplicationForm({ id: record.otherId }).then(res => {
|
|
|
|
- this.visible = false
|
|
|
|
- const modal = this.$refs.detailRepairApplicationFormRepairModal
|
|
|
|
- modal.base(res.data)
|
|
|
|
- })
|
|
|
|
- }*/
|
|
|
|
if (record.detailType === this.DictCache.getValueByCode(this.DictCache.TYPE.WORKPLACE_BACKLOG_DETAIL_TYPE, 'REPAIR_OK')) {
|
|
if (record.detailType === this.DictCache.getValueByCode(this.DictCache.TYPE.WORKPLACE_BACKLOG_DETAIL_TYPE, 'REPAIR_OK')) {
|
|
fetchRepairApplicationForm({ id: record.otherId }).then(res => {
|
|
fetchRepairApplicationForm({ id: record.otherId }).then(res => {
|
|
this.visible = false
|
|
this.visible = false
|
|
@@ -397,6 +389,18 @@ export default {
|
|
}
|
|
}
|
|
this.$refs.detailScrapModal.base(param)
|
|
this.$refs.detailScrapModal.base(param)
|
|
}
|
|
}
|
|
|
|
+ } else if (record.type === this.DictCache.VALUE.WORKPLACE_BACKLOG_TYPE.PREPARATION_REPAIR) {
|
|
|
|
+ // 已读
|
|
|
|
+ if (record.status === 1) {
|
|
|
|
+ updateWorkplaceBacklog({ id: record.backlogId }).then(res => {
|
|
|
|
+ record.status = 2
|
|
|
|
+ })
|
|
|
|
+ }
|
|
|
|
+ fetchPreparation({ id: record.otherId }).then(res => {
|
|
|
|
+ this.visible = false
|
|
|
|
+ const modal = this.$refs.detailPreparationModal
|
|
|
|
+ modal.base(res.data)
|
|
|
|
+ })
|
|
} else if (record.type === this.DictCache.getValueByCode(this.DictCache.TYPE.WORKPLACE_BACKLOG_TYPE, 'FILL_TASK')) {
|
|
} else if (record.type === this.DictCache.getValueByCode(this.DictCache.TYPE.WORKPLACE_BACKLOG_TYPE, 'FILL_TASK')) {
|
|
console.log(record)
|
|
console.log(record)
|
|
this.$router.push('/sb/inspection/fill/task?id=' + record.targetId) // 跳转巡检
|
|
this.$router.push('/sb/inspection/fill/task?id=' + record.targetId) // 跳转巡检
|