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

@@ -38,6 +38,7 @@
<van-radio v-model="selectedPaymentMethod" name="test" />
</template>
</van-cell>
<van-cell v-if="isWeChat" title="微信支付" clickable @click="selectedPaymentMethod = 'wechat'">
<template #icon>

View File

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

View File

@@ -168,12 +168,24 @@ const toCooperation = () => {
const toBigData = () => {
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>
<template>
<div class="box-border min-h-screen from-blue-100 to-white bg-gradient-to-b">
<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 class="px-4 mt-2">
<SectionTitle title="查询服务" class="" />
@@ -183,23 +195,23 @@ const toBigData = () => {
<span class="text-white text-xs font-semibold">成为代理</span>
</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">
<span class="text-white text-xs font-semibold">推广报告</span>
</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">
<span class="text-white text-xs font-semibold">资产</span>
</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">
<span class="text-white text-xs font-semibold">在线推广</span>
</div>
</div>
</div>
</div>
</div>
<div class="relative p-4 pt-0">
<div class="grid grid-cols-2 gap-4 my-4" style="grid-template-rows: repeat(2, 1fr);">
<template v-for="(service, index) in services" :key="index">

View File

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