fix(App.vue): 修改论坛反馈按钮的点击事件,确保在新窗口中打开链接

This commit is contained in:
wood chen 2025-07-17 20:51:46 +08:00
parent 309fd4f2fb
commit 017cef3048

View File

@ -10,7 +10,7 @@
<el-button @click="$router.push('/prices')" :type="$route.path === '/prices' ? 'primary' : ''">价格列表</el-button> <el-button @click="$router.push('/prices')" :type="$route.path === '/prices' ? 'primary' : ''">价格列表</el-button>
<el-button @click="$router.push('/providers')" :type="$route.path === '/providers' ? 'primary' : ''">模型厂商</el-button> <el-button @click="$router.push('/providers')" :type="$route.path === '/providers' ? 'primary' : ''">模型厂商</el-button>
<el-button @click="$router.push('/model-types')" :type="$route.path === '/model-types' ? 'primary' : ''">模型类别</el-button> <el-button @click="$router.push('/model-types')" :type="$route.path === '/model-types' ? 'primary' : ''">模型类别</el-button>
<el-button @click="$router.push('https://www.sunai.net/t/topic/937')">论坛反馈</el-button> <el-button @click="window.open('https://www.sunai.net/t/topic/937', '_blank')">论坛反馈</el-button>
</div> </div>
</div> </div>
<div class="auth-buttons"> <div class="auth-buttons">