diff --git a/frontend/src/components/SelectStock.vue b/frontend/src/components/SelectStock.vue
index 80adc7b..75e55e0 100644
--- a/frontend/src/components/SelectStock.vue
+++ b/frontend/src/components/SelectStock.vue
@@ -1,7 +1,7 @@
@@ -167,7 +194,9 @@ function DoSearch(question){
return h(NText, { type: type }, { default: () => `${value}` })
}else{
if(column.key=='SECURITY_SHORT_NAME'){
- return h(NTag, { type: 'info',bordered: false }, { default: () => `${value}` })
+ return h(NButton, { type: 'info',bordered: false ,size:'small',onClick:()=>{
+ openCenteredWindow(`https://quote.eastmoney.com/concept/${rowData.MARKET_SHORT_NAME}${rowData.SECURITY_CODE}.html`,1240,700)
+ }}, { default: () => `${value}` })
}else{
return h(NText, { type: 'info' }, { default: () => `${value}` })
}