583279ec by lihua

兼容深圳交易所

1 parent 0bf40670
...@@ -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;
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!