diff --git a/src/Common/CommandNames.ts b/src/Common/CommandNames.ts index 1b01d4487..f9809854a 100644 --- a/src/Common/CommandNames.ts +++ b/src/Common/CommandNames.ts @@ -375,7 +375,7 @@ export enum CommandNames ShareView = "SHAREVIEW", //分享图纸(只读模式) VisibleInRender = "VISIBLEINRENDER", //渲染器中显示实体 UnVisibleInRender = "UNVISIBLEINRENDER", //渲染器中隐藏实体 - SendCADFileToKF = "SENDCADFILETOKF",//发送当前文件给在线客服 + SendCADFileToKF = "SENDCADFILETOKF",//发送当前文件给在线售后 Show2DPathLine = "SHOW2DPATHLINE",//显示二维刀路路径 Hide2DPathLine = "HIDE2DPATHLINE",//隐藏二维刀路路径 Show2DPathObject = "SHOW2DPATHOBJECT",//显示二维刀路差集 diff --git a/src/Editor/CommandRegister.ts b/src/Editor/CommandRegister.ts index 7440617b7..0384c9d70 100644 --- a/src/Editor/CommandRegister.ts +++ b/src/Editor/CommandRegister.ts @@ -881,7 +881,7 @@ export function registerCommand() //画廊命令 commandMachine.RegisterCommand(CommandNames.Gallery, new Command_Gallery()); - //在线客服 + //在线售后 commandMachine.RegisterCommand(CommandNames.SendCADFileToKF, new Command_SendCADFileOnKf()); //修改注册位置 diff --git a/src/UI/Components/ChatButton.tsx b/src/UI/Components/ChatButton.tsx index 74e34bd18..51eec765e 100644 --- a/src/UI/Components/ChatButton.tsx +++ b/src/UI/Components/ChatButton.tsx @@ -139,7 +139,7 @@ export const ChatButton = ({ isLoginInterface = false }) => className={"TopPanel_Btn04"} small={true} icon={isLoginInterface ? null : "people"} - text={isLoginInterface ? "联系客服" : "在线客服"} + text={isLoginInterface ? "联系客服" : "在线售后"} style={{ position: "relative" }} intent={Intent.PRIMARY} onClick={(e) => diff --git a/src/UI/Components/CommandPanel/CommandList.ts b/src/UI/Components/CommandPanel/CommandList.ts index 0882414c8..9012b58e7 100644 --- a/src/UI/Components/CommandPanel/CommandList.ts +++ b/src/UI/Components/CommandPanel/CommandList.ts @@ -2575,8 +2575,8 @@ export const CommandList: ICommand[] = [ defaultCustom: CommandNames.SendCADFileToKF, command: CommandNames.SendCADFileToKF, type: "文件", - chName: "发送当前文件给在线客服", - chDes: "发送当前文件给在线客服(需要打开在线客服界面才能发送)", + chName: "发送当前文件给在线售后", + chDes: "发送当前文件给在线售后(需要打开在线售后界面才能发送)", }, { icon: IconEnum.Print,