2024-12-24 11:28:23 +08:00
|
|
|
|
<template>
|
|
|
|
|
<div class="bg-gradient-to-b from-[#aeceff] to-white min-h-screen relative">
|
|
|
|
|
<!-- banner -->
|
|
|
|
|
<div class="w-full flex justify-center " style="clip-path: ellipse(100% 95% at 50% 0%);">
|
|
|
|
|
<img src="@/assets/images/sfss_banner.png" alt="司法涉诉" class="w-full h-auto">
|
|
|
|
|
</div>
|
|
|
|
|
<div class="p-6 -my-24 z-1000 absolute">
|
|
|
|
|
<div class="card">
|
|
|
|
|
<div class="grid grid-cols-3 gap-6">
|
|
|
|
|
<div v-for="(item, index) in menuItems" :key="index" class="flex flex-col items-center"
|
|
|
|
|
@click="toInquire(item.product)">
|
|
|
|
|
<div class="bg-slate-100 rounded-full p-4">
|
|
|
|
|
<img :src="item.icon" :alt="item.title" class="w-10 h-10">
|
|
|
|
|
</div>
|
|
|
|
|
<p class="mt-2 text-sm font-semibold">{{ item.title }}</p>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="card mt-4">
|
|
|
|
|
<h2 class="text-lg font-bold text-blue-500 mb-4">司法涉诉查询服务</h2>
|
|
|
|
|
<p class="text-gray-700 leading-6">
|
|
|
|
|
本平台提供全方位司法涉诉查询服务,助您全面防范。功能包括:
|
|
|
|
|
</p>
|
|
|
|
|
<ul class="list-disc list-inside mt-4 space-y-2 text-gray-600">
|
2024-12-28 00:05:20 +08:00
|
|
|
|
<li>
|
|
|
|
|
<strong>个人涉诉:</strong> 查看个人是否涉及诉讼案件,了解其法律纠纷情况,帮助您判断该个人的法律风险。
|
|
|
|
|
</li>
|
|
|
|
|
<li>
|
|
|
|
|
<strong>企业涉诉:</strong> 查看企业是否涉及诉讼案件,了解企业的法律风险及潜在的经营问题,帮助您评估与该企业合作的安全性。
|
|
|
|
|
</li>
|
2024-12-24 11:28:23 +08:00
|
|
|
|
</ul>
|
2024-12-28 00:05:20 +08:00
|
|
|
|
|
2024-12-24 11:28:23 +08:00
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script setup>
|
|
|
|
|
import { useWebView } from "@/composables/useWebView";
|
|
|
|
|
useWebView()
|
|
|
|
|
|
|
|
|
|
import grssIcon from '@/assets/images/grss_icon.svg';
|
|
|
|
|
import qyssIcon from '@/assets/images/qyss_icon.svg';
|
|
|
|
|
const menuItems = [
|
|
|
|
|
{ title: "个人涉诉", icon: grssIcon, product: "toc_PersonalLawsuit" },
|
|
|
|
|
{ title: "企业涉诉", icon: qyssIcon, product: "toc_EnterpriseLawsuit" },
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
const toInquire = (product) => {
|
|
|
|
|
if (!product) return
|
|
|
|
|
uni.navigateTo({ url: '/pages/inquire?p=' + product })
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style scoped></style>
|