兼容深圳交易所
Showing
1 changed file
with
11 additions
and
4 deletions
| ... | @@ -227,10 +227,17 @@ const currTableData: any = ref({}); | ... | @@ -227,10 +227,17 @@ const currTableData: any = ref({}); |
| 227 | const btnClick = (btn) => { | 227 | const btnClick = (btn) => { |
| 228 | const type = btn.value; | 228 | const type = btn.value; |
| 229 | if (type == 'create') { | 229 | if (type == 'create') { |
| 230 | router.push({ | 230 | if (btn.exchangeName.includes('深圳数据交易所')) { |
| 231 | name: 'registerStartJS', | 231 | router.push({ |
| 232 | query: { exchangeGuid: btn.exchangeGuid, type } | 232 | name: 'registerStart', |
| 233 | }); | 233 | query: { exchangeGuid: btn.exchangeGuid, type } |
| 234 | }); | ||
| 235 | } else { | ||
| 236 | router.push({ | ||
| 237 | name: 'registerStartJS', | ||
| 238 | query: { exchangeGuid: btn.exchangeGuid, type } | ||
| 239 | }); | ||
| 240 | } | ||
| 234 | } else if (type == 'search') { | 241 | } else if (type == 'search') { |
| 235 | exchangGuid.value = btn.exchangeGuid; | 242 | exchangGuid.value = btn.exchangeGuid; |
| 236 | pageInfo.value.curr = 1; | 243 | pageInfo.value.curr = 1; | ... | ... |
-
Please register or sign in to post a comment