This commit is contained in:
2026-01-16 16:02:57 +08:00
parent ad794a1312
commit dbd81fd6fa
6 changed files with 43 additions and 30 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 36 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 148 KiB

View File

@@ -39,6 +39,7 @@
</template> </template>
</van-cell> </van-cell>
<van-cell v-if="isWeChat" title="微信支付" clickable @click="selectedPaymentMethod = 'wechat'"> <van-cell v-if="isWeChat" title="微信支付" clickable @click="selectedPaymentMethod = 'wechat'">
<template #icon> <template #icon>
<van-icon size="24" name="wechat-pay" color="#1AAD19" class="mr-2" /> <van-icon size="24" name="wechat-pay" color="#1AAD19" class="mr-2" />

View File

@@ -138,14 +138,14 @@ const services = ref([
goColor: "#ff99cc", goColor: "#ff99cc",
costPrice: null, costPrice: null,
}, },
{ // {
name: 'backgroundcheck', // name: 'backgroundcheck',
title: "入职背调", // title: "入职背调",
subtitle: "查询便可 慧眼识英雄", // subtitle: "查询便可 慧眼识英雄",
bg: backgroundcheckIcon, // bg: backgroundcheckIcon,
goColor: "#7db3ff", // goColor: "#7db3ff",
costPrice: null, // costPrice: null,
}, // },
{ {
name: 'companyinfo', name: 'companyinfo',
title: "企业大数据", title: "企业大数据",
@@ -154,22 +154,22 @@ const services = ref([
goColor: "#ffaa66", goColor: "#ffaa66",
costPrice: null, costPrice: null,
}, },
{ // {
name: 'homeservice', // name: 'homeservice',
title: "家政报告", // title: "家政报告",
subtitle: "口碑与能力 一查便知", // subtitle: "口碑与能力 一查便知",
bg: housekeepingRiskIcon, // bg: housekeepingRiskIcon,
goColor: "#66cccc", // goColor: "#66cccc",
costPrice: null, // costPrice: null,
}, // },
{ // {
name: 'consumerFinanceReport', // name: 'consumerFinanceReport',
title: "消金报告", // title: "消金报告",
subtitle: "", // subtitle: "",
bg: consumerFinanceReportIcon, // bg: consumerFinanceReportIcon,
goColor: "#a259ff", // goColor: "#a259ff",
costPrice: null, // costPrice: null,
}, // },
]); ]);
// 使用合并后的服务数组 // 使用合并后的服务数组

View File

@@ -168,12 +168,24 @@ const toCooperation = () => {
const toBigData = () => { const toBigData = () => {
window.location.href = "https://www.tybigdata.com/"; window.location.href = "https://www.tybigdata.com/";
}; };
const toPromoteReport = () => {
router.push("/promote");
};
const toOnlinePromote = () => {
router.push({ path: "/agent/promote", query: { feature: "consumerFinanceReport" } });
};
const toMe = () => {
router.push("/agent");
};
</script> </script>
<template> <template>
<div class="box-border min-h-screen from-blue-100 to-white bg-gradient-to-b"> <div class="box-border min-h-screen from-blue-100 to-white bg-gradient-to-b">
<div class="relative"> <div class="relative">
<img class="h-full w-full" src="@/assets/images/index/banner.png" /> <img class="h-full w-full" src="@/assets/images/index/banner.jpg" />
</div> </div>
<div class="px-4 mt-2"> <div class="px-4 mt-2">
<SectionTitle title="查询服务" class="" /> <SectionTitle title="查询服务" class="" />
@@ -183,17 +195,17 @@ const toBigData = () => {
<span class="text-white text-xs font-semibold">成为代理</span> <span class="text-white text-xs font-semibold">成为代理</span>
</div> </div>
</div> </div>
<div class="flex flex-col items-center justify-center"> <div class="flex flex-col items-center justify-center cursor-pointer" @click="toPromoteReport">
<div class="w-24 h-16 rounded-full bg-gradient-to-br from-purple-400 to-purple-600 flex items-center justify-center shadow-lg mb-2"> <div class="w-24 h-16 rounded-full bg-gradient-to-br from-purple-400 to-purple-600 flex items-center justify-center shadow-lg mb-2">
<span class="text-white text-xs font-semibold">推广报告</span> <span class="text-white text-xs font-semibold">推广报告</span>
</div> </div>
</div> </div>
<div class="flex flex-col items-center justify-center"> <div class="flex flex-col items-center justify-center cursor-pointer" @click="toMe">
<div class="w-24 h-16 rounded-full bg-gradient-to-br from-green-400 to-green-600 flex items-center justify-center shadow-lg mb-2"> <div class="w-24 h-16 rounded-full bg-gradient-to-br from-green-400 to-green-600 flex items-center justify-center shadow-lg mb-2">
<span class="text-white text-xs font-semibold">资产</span> <span class="text-white text-xs font-semibold">资产</span>
</div> </div>
</div> </div>
<div class="flex flex-col items-center justify-center"> <div class="flex flex-col items-center justify-center cursor-pointer" @click="toOnlinePromote">
<div class="w-24 h-16 rounded-full bg-gradient-to-br from-orange-400 to-orange-600 flex items-center justify-center shadow-lg mb-2"> <div class="w-24 h-16 rounded-full bg-gradient-to-br from-orange-400 to-orange-600 flex items-center justify-center shadow-lg mb-2">
<span class="text-white text-xs font-semibold">在线推广</span> <span class="text-white text-xs font-semibold">在线推广</span>
</div> </div>

View File

@@ -16,7 +16,7 @@ export default defineConfig({
proxy: { proxy: {
"/api/v1": { "/api/v1": {
// target: "http://127.0.0.1:8888", // 本地接口地址 // target: "http://127.0.0.1:8888", // 本地接口地址
target: "https://www.quannengcha.com", // 本地接口地址 target: "https://www.zhenaicha.com", // 本地接口地址
changeOrigin: true, changeOrigin: true,
rewrite: (path) => path, // 可选:确保路径不被修改 rewrite: (path) => path, // 可选:确保路径不被修改
}, },