15 lines
756 B
JavaScript
15 lines
756 B
JavaScript
import { WeaLocaleProvider } from "ecCom";
|
|
|
|
const getLabel = WeaLocaleProvider.getLabel;
|
|
export const commonVariables = [
|
|
{ id: "HRM_Name", name: getLabel(111, "当前操作者姓名")},
|
|
{ id: "HRM_Num", name: getLabel(111, "当前操作者编号")},
|
|
{ id: "HRM_Mobile", name: getLabel(111, "当前操作者移动电话")},
|
|
{ id: "HRM_Email", name: getLabel(111, "当前操作者电子邮件")},
|
|
{ id: "HRM_CurrentOperatorId", name: getLabel(111, "当前操作者人员id")},
|
|
{ id: "HRM_Department", name: getLabel(111, "当前操作者部门")},
|
|
{ id: "HRM_SecondDepartment", name: getLabel(111, "分部")},
|
|
{ id: "HRM_CurrentDate", name: getLabel(111, "当前日期")},
|
|
{ id: "HRM_CurrentTime", name: getLabel(111, "当前时间")},
|
|
];
|