This commit is contained in:
xiaojunnuo
2026-04-09 18:20:36 +08:00
parent 7b6b71cd4b
commit db87bc770e
5 changed files with 16 additions and 4 deletions
@@ -4,7 +4,7 @@
<div class="step-item overflow-hidden"> <div class="step-item overflow-hidden">
<div class="text"> <div class="text">
<h3 class="title">{{ number }} {{ currentStepItem.title }}</h3> <h3 class="title font-bold">{{ number }} {{ currentStepItem.title }}</h3>
<div class="description mt-5"> <div class="description mt-5">
<div v-for="(desc, index) of currentStepItem.descriptions" :key="index">{{ desc }}</div> <div v-for="(desc, index) of currentStepItem.descriptions" :key="index">{{ desc }}</div>
</div> </div>
@@ -247,6 +247,7 @@ function previewMask() {
<style lang="less"> <style lang="less">
.tutorial-steps { .tutorial-steps {
display: flex;
.step-item { .step-item {
display: flex !important; display: flex !important;
flex-direction: row; flex-direction: row;
@@ -251,7 +251,7 @@ function openUpgrade() {
class: "vip-modal", class: "vip-modal",
maskClosable: true, maskClosable: true,
okText: t("vip.close"), okText: t("vip.close"),
width: 1100, width: 1180,
content: () => { content: () => {
return <VipModalContent placeholder={placeholder} isPlus={isPlus} productInfo={productInfo} goBuyPlusPage={goBuyPlusPage} goBuyCommPage={goBuyCommPage} openStarModal={openStarModal} modalRef={modalRef} />; return <VipModalContent placeholder={placeholder} isPlus={isPlus} productInfo={productInfo} goBuyPlusPage={goBuyPlusPage} goBuyCommPage={goBuyCommPage} openStarModal={openStarModal} modalRef={modalRef} />;
}, },
@@ -65,6 +65,11 @@
</div> </div>
<div class="get-show"> <div class="get-show">
<template v-if="item.type === 'plus'"> <template v-if="item.type === 'plus'">
<span class="mr-5">
已有
<span class="color-red"> {{ todayOrderCount.vipTotal }}</span>
位伙伴支持
</span>
<a-tooltip :title="t('vip.afdian_support_vip')"> <a-tooltip :title="t('vip.afdian_support_vip')">
<a-button size="small" type="primary" @click="goBuyPlusPage"> <a-button size="small" type="primary" @click="goBuyPlusPage">
{{ t("vip.get_after_support") }} {{ t("vip.get_after_support") }}
@@ -260,6 +265,9 @@ const todayOrderCount = computed(() => {
const lastStage = countInfo?.stages?.[countInfo?.stages?.length - 1] || {}; const lastStage = countInfo?.stages?.[countInfo?.stages?.length - 1] || {};
lastStage.orderCount = orderCount; lastStage.orderCount = orderCount;
const vipTotal = countInfo?.vipTotal || 0;
const showVipTotal = countInfo?.showVipTotal || false;
const userTotal = countInfo?.userTotal || 0;
const stages: any = []; const stages: any = [];
stages.push({ stages.push({
title: countInfo.title, title: countInfo.title,
@@ -273,6 +281,9 @@ const todayOrderCount = computed(() => {
return { return {
enabled: enabled, enabled: enabled,
stages: stages, stages: stages,
showVipTotal: showVipTotal,
vipTotal: vipTotal,
userTotal: userTotal,
}; };
}); });
@@ -65,7 +65,7 @@ export default {
click_to_get_7_day_trial: "Click to get 7-day trial", click_to_get_7_day_trial: "Click to get 7-day trial",
years: "years", years: "years",
afdian_support_vip: "Obtain the permanent professional version coupon", afdian_support_vip: "Obtain the permanent professional version coupon",
get_after_support: "Get after sponsoring", get_after_support: "sponsoring",
business_edition: "Business Edition", business_edition: "Business Edition",
commercial_license: "Commercial license, allowed for external operation", commercial_license: "Commercial license, allowed for external operation",
@@ -33,7 +33,7 @@ export default {
activateCertDesc2: "让证书生效", activateCertDesc2: "让证书生效",
taskSuccessTitle: "部署任务添加成功", taskSuccessTitle: "部署任务添加成功",
taskSuccessDesc: "现在可以运行", taskSuccessDesc: "现在可以运行",
pluginsTitle: "本系统提供茫茫多的部署插件", pluginsTitle: "本系统提供海量的部署插件",
pluginsDesc: "您可以根据自身需求将证书部署到各种应用和平台", pluginsDesc: "您可以根据自身需求将证书部署到各种应用和平台",
}, },
}, },