feat: 增加客户端类型
This commit is contained in:
@@ -3,6 +3,30 @@ import DHWQ from "@/pages/login/images/dhwq.png";
|
|||||||
import TM from "@/pages/login/images/tm.png";
|
import TM from "@/pages/login/images/tm.png";
|
||||||
import WSMM from "@/pages/login/images/wsmm.png";
|
import WSMM from "@/pages/login/images/wsmm.png";
|
||||||
|
|
||||||
|
/// 客户端类型
|
||||||
|
export const ClientType = {
|
||||||
|
// 智念
|
||||||
|
ZHINIAN: "ZHINIAN",
|
||||||
|
// 朵花
|
||||||
|
DUOHUA: "DUOHUA",
|
||||||
|
// 天沐
|
||||||
|
TIANMU: "TIANMU",
|
||||||
|
};
|
||||||
|
|
||||||
|
/// 获取当前客户端类型
|
||||||
|
export const currentClientType = (name) => {
|
||||||
|
switch (name) {
|
||||||
|
case '智念':
|
||||||
|
return ClientType.ZHINIAN;
|
||||||
|
case '朵花':
|
||||||
|
return ClientType.DUOHUA;
|
||||||
|
case '天沐':
|
||||||
|
return ClientType.TIANMU;
|
||||||
|
default:
|
||||||
|
return ClientType.ZHINIAN;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 客户端配置管理模块
|
* 客户端配置管理模块
|
||||||
*
|
*
|
||||||
@@ -39,9 +63,12 @@ const processConfigs = (configs) => {
|
|||||||
export const CLIENT_CONFIGS = processConfigs(rawConfigs);
|
export const CLIENT_CONFIGS = processConfigs(rawConfigs);
|
||||||
|
|
||||||
// 获取当前用户端配置
|
// 获取当前用户端配置
|
||||||
export const getCurrentConfig = () => CLIENT_CONFIGS.tianmu;
|
export const getCurrentConfig = () => CLIENT_CONFIGS.duohua;
|
||||||
export const clientId = getCurrentConfig().clientId;
|
export const clientId = getCurrentConfig().clientId;
|
||||||
export const appId = getCurrentConfig().appId;
|
export const appId = getCurrentConfig().appId;
|
||||||
|
|
||||||
// 环境配置 - 智念客户端使用测试环境,其他客户端使用生产环境
|
// 环境配置 - 智念客户端使用测试环境,其他客户端使用生产环境
|
||||||
export const isProd = getCurrentConfig().name !== '智念';
|
export const isProd = currentClientType(getCurrentConfig().name) !== ClientType.ZHINIAN;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -430,6 +430,7 @@ const getMainPageData = async () => {
|
|||||||
const res = await mainPageData({ sceneId });
|
const res = await mainPageData({ sceneId });
|
||||||
|
|
||||||
if (res.code === 0) {
|
if (res.code === 0) {
|
||||||
|
appStore.setSceneId("");
|
||||||
initData();
|
initData();
|
||||||
mainPageDataModel.value = res.data;
|
mainPageDataModel.value = res.data;
|
||||||
agentId.value = res.data.agentId;
|
agentId.value = res.data.agentId;
|
||||||
|
|||||||
@@ -24,6 +24,7 @@
|
|||||||
|
|
||||||
<script setup>
|
<script setup>
|
||||||
import { onMounted, ref } from "vue";
|
import { onMounted, ref } from "vue";
|
||||||
|
import { currentClientType, ClientType } from "@/constant/base";
|
||||||
const itemList = ref([]);
|
const itemList = ref([]);
|
||||||
|
|
||||||
const emits = defineEmits(["replySent"]);
|
const emits = defineEmits(["replySent"]);
|
||||||
@@ -37,32 +38,60 @@ onMounted(() => {
|
|||||||
});
|
});
|
||||||
|
|
||||||
const initData = () => {
|
const initData = () => {
|
||||||
itemList.value = [
|
itemList.value =
|
||||||
{
|
currentClientType === ClientType.TIANMU
|
||||||
icon: "https://oss.nianxx.cn/mp/static/quick/quick_icon_yuding.png",
|
? [
|
||||||
title: "快速预定",
|
{
|
||||||
content: "预定门票、房间、餐食",
|
icon: "https://oss.nianxx.cn/mp/static/quick/quick_icon_yuding.png",
|
||||||
type: "Command.quickBooking",
|
title: "快速预定",
|
||||||
},
|
content: "预定门票、房间、餐食",
|
||||||
{
|
type: "Command.quickBooking",
|
||||||
icon: "https://oss.nianxx.cn/mp/static/quick/quick_icon_find.png",
|
},
|
||||||
title: "探索发现",
|
{
|
||||||
content: "探索玩法、出片佳地",
|
icon: "https://oss.nianxx.cn/mp/static/quick/quick_icon_find.png",
|
||||||
type: "Command.discovery",
|
title: "探索发现",
|
||||||
},
|
content: "探索玩法、出片佳地",
|
||||||
{
|
type: "Command.discovery",
|
||||||
icon: "https://oss.nianxx.cn/mp/static/quick/quick_icon_order.png",
|
},
|
||||||
title: "订单/工单",
|
{
|
||||||
content: "我的订单/工单",
|
icon: "https://oss.nianxx.cn/mp/static/quick/quick_icon_call.png",
|
||||||
type: "MyOrder",
|
title: "反馈意见",
|
||||||
},
|
content: "有意见告诉沐沐",
|
||||||
{
|
type: "Command.feedbackCard",
|
||||||
icon: "https://oss.nianxx.cn/mp/static/quick/quick_icon_call.png",
|
},
|
||||||
title: "反馈意见",
|
{
|
||||||
content: "有意见告诉朵朵",
|
icon: "https://oss.nianxx.cn/mp/static/quick/quick_icon_order.png",
|
||||||
type: "Command.feedbackCard",
|
title: "订单/工单",
|
||||||
},
|
content: "我的订单/工单",
|
||||||
];
|
type: "MyOrder",
|
||||||
|
},
|
||||||
|
]
|
||||||
|
: [
|
||||||
|
{
|
||||||
|
icon: "https://oss.nianxx.cn/mp/static/quick/quick_icon_yuding.png",
|
||||||
|
title: "快速预定",
|
||||||
|
content: "预定门票、房间、餐食",
|
||||||
|
type: "Command.quickBooking",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
icon: "https://oss.nianxx.cn/mp/static/quick/quick_icon_find.png",
|
||||||
|
title: "探索发现",
|
||||||
|
content: "探索玩法、出片佳地",
|
||||||
|
type: "Command.discovery",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
icon: "https://oss.nianxx.cn/mp/static/quick/quick_icon_order.png",
|
||||||
|
title: "订单/工单",
|
||||||
|
content: "我的订单/工单",
|
||||||
|
type: "MyOrder",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
icon: "https://oss.nianxx.cn/mp/static/quick/quick_icon_call.png",
|
||||||
|
title: "反馈意见",
|
||||||
|
content: "有意见告诉朵朵",
|
||||||
|
type: "Command.feedbackCard",
|
||||||
|
},
|
||||||
|
];
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user