|
@@ -45,7 +45,7 @@
|
|
|
24/7 维护服务
|
|
24/7 维护服务
|
|
|
</div>
|
|
</div>
|
|
|
</div>
|
|
</div>
|
|
|
- <el-button type="primary" round class="w-full">
|
|
|
|
|
|
|
+ <el-button type="primary" round class="w-full" @click="toZflbLink('housing')">
|
|
|
<el-icon class="mr-1"><ArrowRight /></el-icon>
|
|
<el-icon class="mr-1"><ArrowRight /></el-icon>
|
|
|
立即申请
|
|
立即申请
|
|
|
</el-button>
|
|
</el-button>
|
|
@@ -89,7 +89,7 @@
|
|
|
灵活租赁方案
|
|
灵活租赁方案
|
|
|
</div>
|
|
</div>
|
|
|
</div>
|
|
</div>
|
|
|
- <el-button type="success" round class="w-full">
|
|
|
|
|
|
|
+ <el-button type="success" round class="w-full" @click="toZflbLink('factory')">
|
|
|
<el-icon class="mr-1"><ArrowRight /></el-icon>
|
|
<el-icon class="mr-1"><ArrowRight /></el-icon>
|
|
|
查看厂房
|
|
查看厂房
|
|
|
</el-button>
|
|
</el-button>
|
|
@@ -133,7 +133,12 @@
|
|
|
投资对接平台
|
|
投资对接平台
|
|
|
</div>
|
|
</div>
|
|
|
</div>
|
|
</div>
|
|
|
- <el-button type="warning" round class="w-full">
|
|
|
|
|
|
|
+ <el-button
|
|
|
|
|
+ type="warning"
|
|
|
|
|
+ round
|
|
|
|
|
+ class="w-full"
|
|
|
|
|
+ @click="toZflbLink('innovation')"
|
|
|
|
|
+ >
|
|
|
<el-icon class="mr-1"><ArrowRight /></el-icon>
|
|
<el-icon class="mr-1"><ArrowRight /></el-icon>
|
|
|
加入孵化
|
|
加入孵化
|
|
|
</el-button>
|
|
</el-button>
|
|
@@ -151,9 +156,18 @@
|
|
|
<script setup lang="ts">
|
|
<script setup lang="ts">
|
|
|
import { ElButton, ElCard, ElCol, ElContainer, ElIcon, ElMain, ElRow } from 'element-plus'
|
|
import { ElButton, ElCard, ElCol, ElContainer, ElIcon, ElMain, ElRow } from 'element-plus'
|
|
|
import { ArrowRight, Building, Check, Factory, Lightbulb } from 'lucide-vue-next'
|
|
import { ArrowRight, Building, Check, Factory, Lightbulb } from 'lucide-vue-next'
|
|
|
|
|
+import { useRouter } from 'vue-router'
|
|
|
|
|
+
|
|
|
|
|
+const router = useRouter()
|
|
|
|
|
|
|
|
-// 这里可以添加响应式数据和方法
|
|
|
|
|
-// 例如:统计数据的动态更新、按钮点击事件等
|
|
|
|
|
|
|
+const toZflbLink = (currentActive: string) => {
|
|
|
|
|
+ router.push({
|
|
|
|
|
+ path: '/zf/zflb',
|
|
|
|
|
+ query: {
|
|
|
|
|
+ currentActive,
|
|
|
|
|
+ },
|
|
|
|
|
+ })
|
|
|
|
|
+}
|
|
|
</script>
|
|
</script>
|
|
|
|
|
|
|
|
<style scoped>
|
|
<style scoped>
|