|
@@ -233,11 +233,11 @@ const processDefaultData = [{ id: 0, fixedFlowName: '自定义流程', disabled:
|
|
const getProcessDatasApi = () => {
|
|
const getProcessDatasApi = () => {
|
|
if (isShow.value) {
|
|
if (isShow.value) {
|
|
const type = isTypes.value
|
|
const type = isTypes.value
|
|
- if (type === 'first' || type === 'wbs') {
|
|
|
|
|
|
+ if (type === 'wbs') {
|
|
queryFixedFlowApi(type, typeDatas.value)
|
|
queryFixedFlowApi(type, typeDatas.value)
|
|
} else if (type === 'query') {
|
|
} else if (type === 'query') {
|
|
getProcessData(type, typeDatas.value)
|
|
getProcessData(type, typeDatas.value)
|
|
- } else if (type === 'log') {
|
|
|
|
|
|
+ } else if (type === 'log' || type === 'first' ) {
|
|
queryFixedFlowApi3(type, typeDatas.value)
|
|
queryFixedFlowApi3(type, typeDatas.value)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
@@ -307,9 +307,9 @@ const queryFixedFlowApi = async (type, datas) => {
|
|
const queryFixedFlowApi3 = async (type, datas) => {
|
|
const queryFixedFlowApi3 = async (type, datas) => {
|
|
let flowJson = {}
|
|
let flowJson = {}
|
|
if (type === 'first') {
|
|
if (type === 'first') {
|
|
- flowJson['firstId'] = datas
|
|
|
|
|
|
+ // flowJson['firstId'] = datas
|
|
} else if (type === 'log') {
|
|
} else if (type === 'log') {
|
|
- flowJson['theLogPrimaryKeyId'] = datas
|
|
|
|
|
|
+ // flowJson['theLogPrimaryKeyId'] = datas
|
|
} else if (type === 'wbs') {
|
|
} else if (type === 'wbs') {
|
|
flowJson['privatePKeyId'] = datas
|
|
flowJson['privatePKeyId'] = datas
|
|
}
|
|
}
|