|
@ -65,10 +65,10 @@ |
|
|
:detailButtonIsShowEdit="false" |
|
|
:detailButtonIsShowEdit="false" |
|
|
@detailOpenForm="detailOpenForm" |
|
|
@detailOpenForm="detailOpenForm" |
|
|
/> |
|
|
/> |
|
|
<!-- 记录子包装弹窗 --> |
|
|
|
|
|
<BasicForm |
|
|
<BasicForm |
|
|
ref="popCheckListRef" |
|
|
ref="teamListRef" |
|
|
:tableAllSchemas="popCheckList.allSchemas" |
|
|
:formAllSchemas="popList.allSchemas" |
|
|
|
|
|
:isBusiness="false" |
|
|
/> |
|
|
/> |
|
|
<!-- 导入 --> |
|
|
<!-- 导入 --> |
|
|
<ImportForm ref="importFormRef" url="/mes/workstation/import" :importTemplateData="importTemplateData" @success="importSuccess" /> |
|
|
<ImportForm ref="importFormRef" url="/mes/workstation/import" :importTemplateData="importTemplateData" @success="importSuccess" /> |
|
@ -83,7 +83,7 @@ import { |
|
|
TabsList, |
|
|
TabsList, |
|
|
Team, |
|
|
Team, |
|
|
Workstation, |
|
|
Workstation, |
|
|
WorkstationRules, popCheckList |
|
|
WorkstationRules, popList |
|
|
} from './workstation.data' |
|
|
} from './workstation.data' |
|
|
import * as WorkstationApi from '@/api/mes/workstation' |
|
|
import * as WorkstationApi from '@/api/mes/workstation' |
|
|
import * as defaultButtons from '@/utils/disposition/defaultButtons' |
|
|
import * as defaultButtons from '@/utils/disposition/defaultButtons' |
|
@ -291,8 +291,9 @@ const changeTabs = (data) =>{ |
|
|
tabsDeleteApi = WorkstationApi.deleteOperstepsRelation |
|
|
tabsDeleteApi = WorkstationApi.deleteOperstepsRelation |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
const popCheckListRef = ref() |
|
|
const teamListRef = ref() |
|
|
|
|
|
|
|
|
const detailOpenForm = async (type, params) => { |
|
|
const detailOpenForm = async (type, params) => { |
|
|
popCheckListRef.value.open('create', params.code, null, 'viewDetail') |
|
|
teamListRef.value.open('create', null, null, 'viewDetail')//查看明细数据 |
|
|
} |
|
|
} |
|
|
</script> |
|
|
</script> |
|
|