| | |
| | | collapsible |
| | | :reverseArrow="true" |
| | | collapsedWidth="0" |
| | | width="300" |
| | | width="400" |
| | | style="background: #fafafa; border-left: 1px solid #d9d9d9; padding: 10px" |
| | | :zeroWidthTriggerStyle="{ 'margin-top': '-70px', 'background-color': 'gray' }" |
| | | > |
| | |
| | | :activeKey="routeConfig.activeKey" |
| | | :IsOperation="IsOperation" |
| | | :title="title" |
| | | :posttitle="posttitle" |
| | | :colSlots="colSlots" |
| | | :crudColSlots="crudColSlots" |
| | | :entityName="entityName"> |
| | |
| | | rotId: { type: String, default: '' }, |
| | | }); |
| | | const IsOperation = ref(false); |
| | | const title = ref('行为'); |
| | | const title = ref(''); |
| | | const posttitle = ref(''); |
| | | watch( |
| | | () => props.rotId, |
| | | (v) => { |
| | |
| | | //是行为 |
| | | if (selectnode.value.properties.operType && selectnode.value.properties.operType == 'Action') { |
| | | var _act = routeConfig.routeData.acts.filter((x) => x.ID == selectnode.value.id)[0]; |
| | | routeConfig.activeKey = 3; |
| | | routeConfig.activeKey = 2; |
| | | IsOperation.value = false; |
| | | title.value = '行为'; |
| | | posttitle.value = ''; |
| | | routeConfig.currentAct = { |
| | | ID: selectnode.value.id, |
| | | CREATE_TIME: currRoute.value.CREATE_TIME, |
| | |
| | | console.log(routeConfig.currentItem); |
| | | routeConfig.activeKey = 2; |
| | | IsOperation.value = true; |
| | | title.value = '岗位'; |
| | | title.value = '工序'; |
| | | posttitle.value = '岗位'; |
| | | } |
| | | } |
| | | |
| | |
| | | */ |
| | | function clickBlank() { |
| | | routeConfig.activeKey = 1; |
| | | title.value = ''; |
| | | posttitle.value = ''; |
| | | } |
| | | |
| | | /* |