|
@@ -329,7 +329,10 @@ const handleSubmit = async (_type) => {
|
|
|
};
|
|
|
data.victoriatouristJson = JSON.stringify(victoriatouristJson);
|
|
|
} else if (flowForm.flowKey == "wdly_purchase") {
|
|
|
- if (route.query.processType && route.query.processType == 10) {
|
|
|
+ if (
|
|
|
+ route.query.processType &&
|
|
|
+ (route.query.processType == 10 || route.query.processType == 30)
|
|
|
+ ) {
|
|
|
data.purchaseDetailList = data.purchaseDetailList.map((x) => ({
|
|
|
bussinessId: x.bussinessId,
|
|
|
subscribeDetailId: x.subscribeDetailId,
|
|
@@ -459,7 +462,7 @@ const handleSubmit = async (_type) => {
|
|
|
...item.raw,
|
|
|
};
|
|
|
});
|
|
|
- if (route.query.processType == 10) {
|
|
|
+ if (route.query.processType == 10 || route.query.processType == 30) {
|
|
|
proxy
|
|
|
.post("/flowProcess/jump", {
|
|
|
...flowForm,
|