|
@@ -163,7 +163,6 @@ const handleSelectUser = () => {
|
|
|
}
|
|
|
const handleSubmit = async (_type) => {
|
|
|
const childrenData = await makeDom.value.handleSubmit()
|
|
|
- console.log(childrenData,'www');
|
|
|
if (childrenData) {
|
|
|
if (route.query.processType == 10 || route.query.processType == 30) {
|
|
|
proxy
|
|
@@ -175,7 +174,8 @@ const handleSubmit = async (_type) => {
|
|
|
flowId: route.query.id,
|
|
|
})
|
|
|
.then((res) => {
|
|
|
- handleResult(res.data)
|
|
|
+ // handleResult(res.data)
|
|
|
+ proxy.$router.go(-1)
|
|
|
})
|
|
|
if (_type && _type == 1) {
|
|
|
proxy
|
|
@@ -193,11 +193,11 @@ const handleSubmit = async (_type) => {
|
|
|
data: childrenData,
|
|
|
})
|
|
|
.then((res) => {
|
|
|
- handleResult(res.data)
|
|
|
+ // handleResult(res.data)
|
|
|
+ proxy.$router.go(-1)
|
|
|
})
|
|
|
}
|
|
|
}
|
|
|
- proxy.$router.go(-1)
|
|
|
}
|
|
|
|
|
|
const nextFn = () => {
|