From a76375b0323aa2c07cf53e3323a37c21ab2bcc0d Mon Sep 17 00:00:00 2001 From: pengm <674192343@qq.com> Date: Fri, 20 Jun 2025 14:27:56 +0800 Subject: [PATCH] 1.处理拼版信息界面的多语言翻译 --- src/components/Common/MakeUpPDF/index.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/components/Common/MakeUpPDF/index.js b/src/components/Common/MakeUpPDF/index.js index 6926fb0..60327aa 100644 --- a/src/components/Common/MakeUpPDF/index.js +++ b/src/components/Common/MakeUpPDF/index.js @@ -226,6 +226,8 @@ const MakeUpPDF = baseProps => { }; const tabsConfig = masterConfig.gdsconfigformslave.filter(item => item.sName && item.bVisible && item.sControlName); + const tabOrderInfomation = commonFunc.showLocalMessage(props, "tabOrderInfomation", "订单信息"); + const tabPlatemakingProgress = commonFunc.showLocalMessage(props, "tabPlatemakingProgress", "拼版进度"); return ( { ), }} items={[ - { label: "订单信息", key: "100", children: }, - { label: "拼板进度", key: "200", children: }, + { label: tabOrderInfomation, key: "100", children: }, + { label: tabPlatemakingProgress, key: "200", children: }, ...tabsConfig.map((config, index) => { const { showName, sName } = config; const fileUrl = masterData[sName]; -- libgit2 0.22.2