Commit 42f62542 authored by 徐乐's avatar 徐乐

perf: 修改跳转第三方功能兼容#和?符号问题

parent 4736a443
Pipeline #84752 waiting for manual action with stages
/* eslint-disable */ /* eslint-disable */
// const proxyURL = process.env.NODE_ENV !== 'production' ? 'http://192.168.10.150:8777' : window.location.origin; // const proxyURL = process.env.NODE_ENV !== 'production' ? 'http://192.168.10.150:8777' : window.location.origin;
// const proxyURL = 'https://work.panda-water.cn'; // const proxyURL = 'https://work.panda-water.cn';
const proxyURL = 'http://localhost:8085/'; const proxyURL = 'http://192.168.10.182:8099/';
// const proxyURL = 'https://panda-water.cn' // const proxyURL = 'https://panda-water.cn'
//const proxyURL = 'http://192.168.12.189:8816/' //const proxyURL = 'http://192.168.12.189:8816/'
module.exports = { module.exports = {
......
...@@ -5,7 +5,8 @@ import styles from './index.less'; ...@@ -5,7 +5,8 @@ import styles from './index.less';
const JumpThirdLink = props => { const JumpThirdLink = props => {
const linkUrl = props.params.linkUrl || ''; const linkUrl = props.params.linkUrl || '';
const jumpLink = () => { const jumpLink = () => {
window.open(linkUrl, '_blank'); let url = linkUrl.replaceAll('@','#').replaceAll('*','?');
window.open(url, '_blank');
}; };
useEffect(() => { useEffect(() => {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment