Commit dd6e6b3a542be0b0e1526925f765f46043e2f833

Authored by xp.Huang
2 parents a93d2248 a8f5c3df

Merge branch 'ft' into 'main_dev'

fix: 修复动态切换请求方式完整地址显示问题(判断协议少加冒号)

See merge request yunteng/thingskit-front!586
... ... @@ -64,11 +64,13 @@ export const useUtils = () => {
64 64 const pathUrl = window.location.host;
65 65 const protocol = window.location.protocol;
66 66 let url = '';
67   - if (method === '2') {
  67 + if (method === RequestMethodTypeEnum.WEBSOCKET) {
68 68 if (type === 'server_url') {
69   - url = `${protocol === 'http' ? 'ws:' : protocol === 'https' ? 'wss:' : 'ws:'}//${pathUrl}`;
  69 + url = `${
  70 + protocol === 'http:' ? 'ws:' : protocol === 'https:' ? 'wss:' : 'ws:'
  71 + }//${pathUrl}`;
70 72 }
71   - } else if (method === '0') {
  73 + } else if (method === RequestMethodTypeEnum.COMMOM) {
72 74 if (type === 'server_url') {
73 75 url = `${protocol}//${pathUrl}`;
74 76 }
... ...