|
@@ -1,37 +1,161 @@
|
|
|
<template>
|
|
|
<!-- 产品团队 -->
|
|
|
<banner class="top" :banneImageList="imgList.banneImageList" />
|
|
|
- <div class="content">
|
|
|
+ <div v-if="index != 3" class="content">
|
|
|
<div class="fang">
|
|
|
<div class="title">方案概述</div>
|
|
|
- <div class="top_font">轻松实现从销售订单承接到柔性生产的全流程</div>
|
|
|
+ <div v-if="index == 0" class="top_font">
|
|
|
+ {{ tabbar.info.overview_content_group }}
|
|
|
+ </div>
|
|
|
+ <div v-if="index == 1" class="top_font">
|
|
|
+ {{ tabbar.info.overview_content_professional }}
|
|
|
+ </div>
|
|
|
+ <div v-if="index == 2" class="top_font">
|
|
|
+ {{ tabbar.info.overview_content_enterprise }}
|
|
|
+ </div>
|
|
|
<div class="box_item">
|
|
|
- <div class="item" v-for="(item, idx) in 4" :key="idx">
|
|
|
- <div class="item_title">多销售场景</div>
|
|
|
- <div class="item_font">多种销售场景提升需求准度</div>
|
|
|
+ <div class="item" v-for="(item, idx) in overviewList.list" :key="idx">
|
|
|
+ <div class="item_title">{{ item.title }}</div>
|
|
|
+ <div class="item_font">{{ item.content }}</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
- <div class="imag"></div>
|
|
|
+ <div class="imag">
|
|
|
+ <!-- 团队 -->
|
|
|
+ <img
|
|
|
+ v-if="index == 0"
|
|
|
+ class="imag"
|
|
|
+ :src="tabbar.info.overview_image_group"
|
|
|
+ alt=""
|
|
|
+ />
|
|
|
+ <!-- 专业 -->
|
|
|
+ <img
|
|
|
+ v-if="index == 1"
|
|
|
+ class="imag"
|
|
|
+ :src="tabbar.info.overview_image_professional"
|
|
|
+ alt=""
|
|
|
+ />
|
|
|
+ <!-- 企业 -->
|
|
|
+ <img
|
|
|
+ v-if="index == 2"
|
|
|
+ class="imag"
|
|
|
+ :src="tabbar.info.overview_image_enterprise"
|
|
|
+ alt=""
|
|
|
+ />
|
|
|
+ </div>
|
|
|
</div>
|
|
|
</div>
|
|
|
<advantage
|
|
|
:tabslist="tabbar.tabslist"
|
|
|
- title="方案优势"
|
|
|
- titleinfo="量身定制,满足小型制造行业管理的广泛需求"
|
|
|
- ></advantage>
|
|
|
- <application></application>
|
|
|
- <corporation></corporation>
|
|
|
+ :title="index == 3 ? '三方市场插件让您的企业流程规范化' : '方案优势'"
|
|
|
+ :titleinfo="index == 3 ? '' : tabbar.info.advantage_content"
|
|
|
+ >
|
|
|
+ </advantage>
|
|
|
+ <!-- 安装增包 -->
|
|
|
+ <corporation
|
|
|
+ style="background: rgba(245, 249, 255, 1)"
|
|
|
+ title="按需安装增强包,减少企业成本"
|
|
|
+ :info="tabbar.info.enhancement_package_content"
|
|
|
+ v-if="index == 3"
|
|
|
+ :list="tabbar.newlist"
|
|
|
+ ></corporation>
|
|
|
+ <!-- 管理平台 -->
|
|
|
+ <application :titleinfo="tabbar.info.scene_content" :image="tabbar.info.scene_image" style="background: #ffffff" v-if="index == 3"></application>
|
|
|
+ <application :titleinfo="tabbar.info.scene_content" :image="tabbar.info.scene_image" v-else></application>
|
|
|
+ <!-- 客户案例 -->
|
|
|
+ <corporation
|
|
|
+ v-if="index != 3"
|
|
|
+ title="客户案例"
|
|
|
+ :list="tabbar.customerlist"
|
|
|
+ ></corporation>
|
|
|
<bottom></bottom>
|
|
|
</template>
|
|
|
|
|
|
<script setup>
|
|
|
-import { useRouter } from "vue-router";
|
|
|
-import { onMounted, ref, reactive } from "vue";
|
|
|
+import { useRouter, useRoute } from "vue-router";
|
|
|
+import { onMounted, ref, reactive, watch } from "vue";
|
|
|
import banner from "../../components/Banne/index.vue";
|
|
|
import bottom from "../../components/Layout/bottom.vue";
|
|
|
import application from "../../components/Application .vue";
|
|
|
import corporation from "../../components/corporation.vue";
|
|
|
import advantage from "../../components/advantage/index.vue";
|
|
|
+import * as productApi from "../../api/login";
|
|
|
+import * as configApi from "../../api/config";
|
|
|
+const route = useRoute();
|
|
|
+const index = ref();
|
|
|
+index.value = route.query.index;
|
|
|
+
|
|
|
+// 方案概述列表
|
|
|
+const overviewList = reactive({
|
|
|
+ list: [],
|
|
|
+});
|
|
|
+const overview = async () => {
|
|
|
+ try {
|
|
|
+ const { data } = await productApi.overview({});
|
|
|
+ overviewList.list = data;
|
|
|
+ } catch (error) {}
|
|
|
+};
|
|
|
+onMounted(overview);
|
|
|
+//方案优势
|
|
|
+const advantag = async () => {
|
|
|
+ try {
|
|
|
+ const { data } = await productApi.advantage({
|
|
|
+ type:
|
|
|
+ index.value == 0
|
|
|
+ ? "group"
|
|
|
+ : index.value == 1
|
|
|
+ ? "professional"
|
|
|
+ : "enterprise",
|
|
|
+ });
|
|
|
+ tabbar.tabslist = data;
|
|
|
+ } catch (error) {}
|
|
|
+};
|
|
|
+//插件列表
|
|
|
+const plugin = async () => {
|
|
|
+ try {
|
|
|
+ const { data } = await productApi.plugin({});
|
|
|
+ tabbar.tabslist = data;
|
|
|
+ } catch (error) {}
|
|
|
+};
|
|
|
+if (index.value == 3) {
|
|
|
+ onMounted(plugin);
|
|
|
+} else {
|
|
|
+ onMounted(advantag);
|
|
|
+}
|
|
|
+
|
|
|
+//客户案例
|
|
|
+const customer = async () => {
|
|
|
+ try {
|
|
|
+ const { data } = await productApi.customer({});
|
|
|
+ tabbar.customerlist = data;
|
|
|
+ } catch (error) {}
|
|
|
+};
|
|
|
+onMounted(customer);
|
|
|
+
|
|
|
+//产品配置
|
|
|
+const config = async () => {
|
|
|
+ try {
|
|
|
+ const { data } = await configApi.config({
|
|
|
+ module: "cms_product",
|
|
|
+ });
|
|
|
+ tabbar.info = data;
|
|
|
+ tabbar.newlist.push({image:data.group_enhancement_package_image})
|
|
|
+ tabbar.newlist.push({image:data.professional_enhancement_package_image})
|
|
|
+ } catch (error) {}
|
|
|
+};
|
|
|
+onMounted(config);
|
|
|
+
|
|
|
+//监听url变化
|
|
|
+watch(
|
|
|
+ () => route.query,
|
|
|
+ (newVal) => {
|
|
|
+ index.value = route.query.index;
|
|
|
+ if (index.value == 3) {
|
|
|
+ plugin();
|
|
|
+ } else {
|
|
|
+ advantag();
|
|
|
+ }
|
|
|
+ }
|
|
|
+);
|
|
|
|
|
|
const tabbar = reactive({
|
|
|
tabslist: [
|
|
@@ -90,6 +214,9 @@ const tabbar = reactive({
|
|
|
"https://inews.gtimg.com/om_bt/Os3eJ8u3SgB3Kd-zrRRhgfR5hUvdwcVPKUTNO6O7sZfUwAA/641",
|
|
|
},
|
|
|
],
|
|
|
+ customerlist: [],
|
|
|
+ info: {},
|
|
|
+ newlist:[]
|
|
|
});
|
|
|
|
|
|
const imgList = reactive({
|
|
@@ -114,7 +241,7 @@ onMounted(() => {});
|
|
|
width: 100%;
|
|
|
height: 570px;
|
|
|
margin-top: 30px;
|
|
|
- background: rgba(13, 15, 255, 0.5);
|
|
|
+ // background: rgba(13, 15, 255, 0.5);
|
|
|
}
|
|
|
.content {
|
|
|
width: 1200px;
|
|
@@ -129,6 +256,7 @@ onMounted(() => {});
|
|
|
border: 1px solid rgba(151, 151, 151, 0.3);
|
|
|
padding: 20px 0 0 28px;
|
|
|
box-sizing: border-box;
|
|
|
+ // column-gap: 18px
|
|
|
}
|
|
|
.item_title {
|
|
|
font-family: PingFangSC, PingFang SC;
|
|
@@ -151,8 +279,9 @@ onMounted(() => {});
|
|
|
.box_item {
|
|
|
margin-top: 40px;
|
|
|
display: flex;
|
|
|
- justify-content: space-between;
|
|
|
+ // justify-content: space-between;
|
|
|
align-items: center;
|
|
|
+ column-gap: 20px;
|
|
|
}
|
|
|
.title {
|
|
|
font-family: PingFangSC, PingFang SC;
|