开发:在线客服改成在线售后

pull/2520/head
ChenX 10 months ago
parent f8e7aacbb6
commit 03c632aaa3

@ -375,7 +375,7 @@ export enum CommandNames
ShareView = "SHAREVIEW", //分享图纸(只读模式) ShareView = "SHAREVIEW", //分享图纸(只读模式)
VisibleInRender = "VISIBLEINRENDER", //渲染器中显示实体 VisibleInRender = "VISIBLEINRENDER", //渲染器中显示实体
UnVisibleInRender = "UNVISIBLEINRENDER", //渲染器中隐藏实体 UnVisibleInRender = "UNVISIBLEINRENDER", //渲染器中隐藏实体
SendCADFileToKF = "SENDCADFILETOKF",//发送当前文件给在线客服 SendCADFileToKF = "SENDCADFILETOKF",//发送当前文件给在线售后
Show2DPathLine = "SHOW2DPATHLINE",//显示二维刀路路径 Show2DPathLine = "SHOW2DPATHLINE",//显示二维刀路路径
Hide2DPathLine = "HIDE2DPATHLINE",//隐藏二维刀路路径 Hide2DPathLine = "HIDE2DPATHLINE",//隐藏二维刀路路径
Show2DPathObject = "SHOW2DPATHOBJECT",//显示二维刀路差集 Show2DPathObject = "SHOW2DPATHOBJECT",//显示二维刀路差集

@ -881,7 +881,7 @@ export function registerCommand()
//画廊命令 //画廊命令
commandMachine.RegisterCommand(CommandNames.Gallery, new Command_Gallery()); commandMachine.RegisterCommand(CommandNames.Gallery, new Command_Gallery());
//在线客服 //在线售后
commandMachine.RegisterCommand(CommandNames.SendCADFileToKF, new Command_SendCADFileOnKf()); commandMachine.RegisterCommand(CommandNames.SendCADFileToKF, new Command_SendCADFileOnKf());
//修改注册位置 //修改注册位置

@ -139,7 +139,7 @@ export const ChatButton = ({ isLoginInterface = false }) =>
className={"TopPanel_Btn04"} className={"TopPanel_Btn04"}
small={true} small={true}
icon={isLoginInterface ? null : "people"} icon={isLoginInterface ? null : "people"}
text={isLoginInterface ? "联系客服" : "在线客服"} text={isLoginInterface ? "联系客服" : "在线售后"}
style={{ position: "relative" }} style={{ position: "relative" }}
intent={Intent.PRIMARY} intent={Intent.PRIMARY}
onClick={(e) => onClick={(e) =>

@ -2575,8 +2575,8 @@ export const CommandList: ICommand[] = [
defaultCustom: CommandNames.SendCADFileToKF, defaultCustom: CommandNames.SendCADFileToKF,
command: CommandNames.SendCADFileToKF, command: CommandNames.SendCADFileToKF,
type: "文件", type: "文件",
chName: "发送当前文件给在线客服", chName: "发送当前文件给在线售后",
chDes: "发送当前文件给在线客服(需要打开在线客服界面才能发送)", chDes: "发送当前文件给在线售后(需要打开在线售后界面才能发送)",
}, },
{ {
icon: IconEnum.Print, icon: IconEnum.Print,

Loading…
Cancel
Save