7 lines
209 B
JavaScript
7 lines
209 B
JavaScript
|
|
import {getUrlParam} from './request'
|
||
|
|
export const scanToSkipUrl = (str)=>{
|
||
|
|
// 焊接日报跳转
|
||
|
|
if(str.includes('weldjoint')){
|
||
|
|
return `/pipe/weld/daily_paper?id=${getUrlParam(str,"id")}`
|
||
|
|
}
|
||
|
|
}
|