|
@@ -509,6 +509,8 @@
|
|
|
<company-search ref="companySearchRef" @selectCompany="selectCompany" />
|
|
|
<!-- 重复工单选择 -->
|
|
|
<order-repeat-select ref="orderRepeatSelectRef" @orderRepeatSuccess="orderRepeatSuccess" />
|
|
|
+ <!-- 工单办理 -->
|
|
|
+ <y-b-process ref="ybProcessRef"/>
|
|
|
</div>
|
|
|
</template>
|
|
|
|
|
@@ -549,6 +551,7 @@ const ScriptNavigation = defineAsyncComponent(() => import('@/views/todo/seats/a
|
|
|
const CallSummary = defineAsyncComponent(() => import('@/views/todo/seats/accept/Call-summary.vue')); // 呼叫小结
|
|
|
const EventSelect = defineAsyncComponent(() => import('@/components/Hotspot/event.vue')); // 选择事件
|
|
|
const HotSpotSelect = defineAsyncComponent(() => import('@/components/Hotspot/index.vue')); // 选择热点
|
|
|
+const YBProcess = defineAsyncComponent(() => import('@/components/ProcessAudit/YBProcess.vue')); // 宜宾工单办理流程
|
|
|
// 定义变量内容
|
|
|
const storesThemeConfig = useThemeConfig();
|
|
|
const { themeConfig } = storeToRefs(storesThemeConfig);
|
|
@@ -1023,6 +1026,7 @@ const save = throttle((formEl: FormInstance | undefined) => {
|
|
|
}, 300);
|
|
|
// 流程审批
|
|
|
const processAuditRef = ref<RefType>();
|
|
|
+const ybProcessRef = ref<RefType>();
|
|
|
const processOrder = (orderDetail: any, isAgent: boolean) => {
|
|
|
buttonLoading.value = false;
|
|
|
if (isAgent) {
|
|
@@ -1066,7 +1070,8 @@ const processOrder = (orderDetail: any, isAgent: boolean) => {
|
|
|
},
|
|
|
orderDetail,
|
|
|
};
|
|
|
- processAuditRef.value.openDialog(params);
|
|
|
+ // processAuditRef.value.openDialog(params);
|
|
|
+ ybProcessRef.value.openDialog(params);
|
|
|
}
|
|
|
}
|
|
|
};
|