|
@@ -466,8 +466,18 @@ const onChangeOrderClick = (row: any) => {
|
|
|
loading.value = true
|
|
|
generateOrder(row)
|
|
|
.then((res: any) => {
|
|
|
+ console.log(res, 'res')
|
|
|
if (res.code === 1) {
|
|
|
ElMessage.success('转单成功')
|
|
|
+ let temp = res.result.data
|
|
|
+ if (Array.isArray(temp) && temp.length) {
|
|
|
+ let id = temp[0].details?.id
|
|
|
+ window.open(
|
|
|
+ import.meta.env.VITE_SO_PATH +
|
|
|
+ `${id}` +
|
|
|
+ import.meta.env.VITE_SO_APPEND,
|
|
|
+ )
|
|
|
+ }
|
|
|
} else {
|
|
|
ElNotification({
|
|
|
title: '转单失败',
|