diff --git a/src/views/modules/shopOrder/shopOrder/common/routing.vue b/src/views/modules/shopOrder/shopOrder/common/routing.vue index a5bc016..29184b9 100644 --- a/src/views/modules/shopOrder/shopOrder/common/routing.vue +++ b/src/views/modules/shopOrder/shopOrder/common/routing.vue @@ -9,16 +9,16 @@ :visible.sync="visible"> - {{ '新增' }} + {{ buttons.addButton }} {{ '修改' }} + style="margin-left: 2px;margin-top: 0px">{{ buttons.editButton }} {{ '删除' }} + style="margin-left: 2px;margin-top: 0px">{{ buttons.deleteButton }} {{ '复制' }} + style="margin-left: 2px;margin-top: 0px">{{ buttons.copyButton}} @@ -86,7 +86,23 @@ getOrderNoRouteInMaxItemNo } from "@/api/shopOrder/shopOrder.js" - import RoutingAddAndEdit from './routingAddAndEdit' + import RoutingAddAndEdit from './routingAddAndEdit'; + + + import { + searchSysLanguagePackList, + searchSysLanguageParam, + searchFunctionButtonList, + saveButtonList, + searchSysLanguage, + searchLanguageListByLanguageCode, + saveSysLanguageOne, + searchPageLanguageData, + removerLanguage, + saveSysLanguageList + } from "@/api/sysLanguage.js"; + + var functionId = 'C10000039'; export default { components: { @@ -96,6 +112,7 @@ return { visible: false, height: 350, + titleCon: '生产订单-工艺路线维护', dataListLoading: false, disabledFlag: true, columnList: [ @@ -487,7 +504,32 @@ site: '', lotSize: 0 }, - selectRow: null + selectRow: null, + buttons: { + addButton: '新增', + editButton: '修改', + deleteButton: '删除', + copyButton: '复制', + }, + queryButton: { + functionId: functionId, + table_id: '*', + languageCode: this.$i18n.locale, + objectType: 'button' + }, + labels: { + titleCon: '生产订单-工艺路线维护', + orderNo: '订单号', + partNo: '物料编码', + partDesc: '物料名称/规格', + siteNo: '工厂编号', + }, + queryLabel: { + functionId: functionId, + table_id: '*', + languageCode: this.$i18n.locale, + objectType: 'label' + }, } }, watch: { @@ -506,7 +548,10 @@ init(modelData) { this.visible = true this.itemData = modelData - this.searchRouteInShopOrder() + this.searchRouteInShopOrder(); + this.getMultiLanguageList();//刷新多语言的信息 + //重置组件的标题 + this.titleCon = this.labels.titleCon;//重置组件的标题 }, // 编辑或新增 routAddAndEdit(val) { @@ -606,7 +651,30 @@ this.$emit('tableHanddle', this.itemData) Object.assign(this.$data, this.$options.data.call(this)); }) - } + }, + + //获取多语言的信息 + getMultiLanguageList() { + //首先查询当前按钮的多语言 + searchFunctionButtonList(this.queryButton).then(({data}) => { + if (JSON.stringify(data.data) != '{}') { + this.buttons = data.data + } else { + // saveButtonList(this.buttonList).then(({data}) => { + // }) + } + }); + //其次查询当前标签的多语言 + searchFunctionButtonList(this.queryLabel).then(({data}) => { + if (JSON.stringify(data.data) != '{}') { + this.labels = data.data + } else { + // saveButtonList(this.buttonList).then(({data}) => { + // }) + } + }); + }, + }, created() { diff --git a/src/views/modules/shopOrder/shopOrder/common/routingAddAndEdit.vue b/src/views/modules/shopOrder/shopOrder/common/routingAddAndEdit.vue index 2b0f65b..1aaece7 100644 --- a/src/views/modules/shopOrder/shopOrder/common/routingAddAndEdit.vue +++ b/src/views/modules/shopOrder/shopOrder/common/routingAddAndEdit.vue @@ -5,30 +5,30 @@ @close="closeDialog" width="690px" class="sxm" - :title="selectRow.itemNo?'编辑工序信息':'新增工序信息'" + :title=labels.titleCon :close-on-click-modal="false" :visible.sync="visible"> - + - + - 加工中心编码: + {{ labels.workCenterNo }} - 加工中心名称: + {{ labels.workCenterName }} @@ -36,21 +36,21 @@ - + - + - + - + % @@ -60,17 +60,17 @@ - + - + - + - + @@ -78,10 +78,10 @@ - + - + @@ -89,8 +89,8 @@ - 保存 - 关闭 + {{ buttons.saveButton }} + {{ buttons.closeButton }} @@ -113,6 +113,21 @@ import {debounce, throttle} from "../../../../../utils/common"; + import { + searchSysLanguagePackList, + searchSysLanguageParam, + searchFunctionButtonList, + saveButtonList, + searchSysLanguage, + searchLanguageListByLanguageCode, + saveSysLanguageOne, + searchPageLanguageData, + removerLanguage, + saveSysLanguageList + } from "@/api/sysLanguage.js"; + + var functionId = 'C10000040'; + export default { components: { Chooselist @@ -121,6 +136,7 @@ return { visible: false, itemNoFlag: true, + titleCon: '工序信息维护', selectRow: { actionNotes: null, availResource: '', @@ -149,7 +165,40 @@ workCenterNo: '', workCenterType: "内部", lotSize: 0 - } + }, + buttons: { + saveButton: '保存', + closeButton: '关闭', + }, + queryButton: { + functionId: functionId, + table_id: '*', + languageCode: this.$i18n.locale, + objectType: 'button' + }, + labels: { + titleCon: '工序信息维护', + itemNo: '工序号:', + itemDesc: '工序名称:', + workCenterNo: '加工中心编码:', + workCenterName: '加工中心名称:', + readyTimes: '准备时间:', + unitProdQty: '单位产出量:', + prodUnit: '产出单位:', + efficiency: '效率:', + requiredTimes: '需求时间:', + planEndTime: '计划完工时间:', + planStartTime: '计划开工时间:', + crewSize: '操作工人数:', + remark: '备注:', + availResource: '可用机台:', + }, + queryLabel: { + functionId: functionId, + table_id: '*', + languageCode: this.$i18n.locale, + objectType: 'label' + }, } }, watch: { @@ -162,6 +211,8 @@ }, methods: { init(selectRow, operationType) { + //刷新页面的信息 + this.getMultiLanguageList();//刷新多语言的信息 this.visible = true this.selectRow = Object.assign(this.selectRow, selectRow); if (operationType == 1) { @@ -170,6 +221,7 @@ this.itemNoFlag = false this.searchOrderNoRouteInMaxItemNo() } + this.titleCon = this.labels.titleCon;//重置组件的标题 }, // 计算需求时间 getTimeRequired() { @@ -348,7 +400,30 @@ this.$emit('searchRouteInShopOrder') Object.assign(this.$data, this.$options.data.call(this)); }) - } + }, + + + //获取多语言的信息 + getMultiLanguageList() { + //首先查询当前按钮的多语言 + searchFunctionButtonList(this.queryButton).then(({data}) => { + if (JSON.stringify(data.data) != '{}') { + this.buttons = data.data + } else { + // saveButtonList(this.buttonList).then(({data}) => { + // }) + } + }); + //其次查询当前标签的多语言 + searchFunctionButtonList(this.queryLabel).then(({data}) => { + if (JSON.stringify(data.data) != '{}') { + this.labels = data.data + } else { + // saveButtonList(this.buttonList).then(({data}) => { + // }) + } + }); + }, }, created() { diff --git a/src/views/modules/shopOrder/shopOrder/common/shop_order_tool.vue b/src/views/modules/shopOrder/shopOrder/common/shop_order_tool.vue index 53d823f..3179a90 100644 --- a/src/views/modules/shopOrder/shopOrder/common/shop_order_tool.vue +++ b/src/views/modules/shopOrder/shopOrder/common/shop_order_tool.vue @@ -4,38 +4,38 @@ v-drag @close="closeDialog" width="880px" - :title="'生产订单-工具维护'" + :title=labels.titleCon :close-on-click-modal="false" :visible.sync="visible"> - {{ '新增' }} + {{ buttons.addButton }} {{ '修改' }} + style="margin-left: 2px;margin-top: 0px">{{ buttons.editButton }} {{ '删除' }} + style="margin-left: 2px;margin-top: 0px">{{ buttons.deleteButton }} {{ '复制' }} + style="margin-left: 2px;margin-top: 0px">{{ buttons.copyButton }} - + - + - + - + @@ -88,6 +88,21 @@ import toolAddAndEdit from './tool_add_and_edit';/*工具的新增和修改*/ + import { + searchSysLanguagePackList, + searchSysLanguageParam, + searchFunctionButtonList, + saveButtonList, + searchSysLanguage, + searchLanguageListByLanguageCode, + saveSysLanguageOne, + searchPageLanguageData, + removerLanguage, + saveSysLanguageList + } from "@/api/sysLanguage.js"; + + var functionId = 'C10000041'; + export default { components: { toolAddAndEdit,/*工具的新增和修改*/ @@ -95,6 +110,7 @@ data() { return { visible: false, + titleCon: '生产订单-工具维护', height: 350, dataListLoading: false, disabledFlag: true, @@ -324,7 +340,32 @@ partDesc: '', username: this.$store.state.user.name, }, - selectRow: null + selectRow: null, + buttons: { + addButton: '新增', + editButton: '修改', + deleteButton: '删除', + copyButton: '复制', + }, + queryButton: { + functionId: functionId, + table_id: '*', + languageCode: this.$i18n.locale, + objectType: 'button' + }, + labels: { + titleCon: '生产订单-工具维护', + orderNo: '订单号', + partNo: '物料编码', + partDesc: '物料名称/规格', + siteNo: '工厂编号', + }, + queryLabel: { + functionId: functionId, + table_id: '*', + languageCode: this.$i18n.locale, + objectType: 'label' + }, } }, watch: { @@ -341,9 +382,11 @@ }, methods: { init(modelData) { + this.getMultiLanguageList();//刷新多语言的信息 this.visible = true this.shopOrderRow = modelData - this.searchShopOrderTools() + this.searchShopOrderTools(); + this.titleCon = this.labels.titleCon;//重置组件的标题 }, // 获取数据 searchShopOrderTools() { @@ -428,7 +471,30 @@ this.$emit('tableHanddle', this.shopOrderRow) Object.assign(this.$data, this.$options.data.call(this)); }) - } + }, + + //获取多语言的信息 + getMultiLanguageList() { + //首先查询当前按钮的多语言 + searchFunctionButtonList(this.queryButton).then(({data}) => { + if (JSON.stringify(data.data) != '{}') { + this.buttons = data.data + } else { + // saveButtonList(this.buttonList).then(({data}) => { + // }) + } + }); + //其次查询当前标签的多语言 + searchFunctionButtonList(this.queryLabel).then(({data}) => { + if (JSON.stringify(data.data) != '{}') { + this.labels = data.data + } else { + // saveButtonList(this.buttonList).then(({data}) => { + // }) + } + }); + }, + }, created() { diff --git a/src/views/modules/shopOrder/shopOrder/common/tool_add_and_edit.vue b/src/views/modules/shopOrder/shopOrder/common/tool_add_and_edit.vue index 8a9b12f..a1dea5a 100644 --- a/src/views/modules/shopOrder/shopOrder/common/tool_add_and_edit.vue +++ b/src/views/modules/shopOrder/shopOrder/common/tool_add_and_edit.vue @@ -11,7 +11,7 @@ - + - + @@ -30,21 +30,21 @@ - 工具编码: + {{ labels.toolId }} - + - + - + @@ -52,15 +52,15 @@ - + - 保存 - 关闭 + {{ buttons.saveButton }} + {{ buttons.closeButton }} @@ -79,6 +79,21 @@ import {debounce, throttle} from "../../../../../utils/common"; + import { + searchSysLanguagePackList, + searchSysLanguageParam, + searchFunctionButtonList, + saveButtonList, + searchSysLanguage, + searchLanguageListByLanguageCode, + saveSysLanguageOne, + searchPageLanguageData, + removerLanguage, + saveSysLanguageList + } from "@/api/sysLanguage.js"; + + var functionId = 'C10000042'; + export default { components: { Chooselist @@ -90,7 +105,7 @@ operationType: 0, oriToolId: '', username: this.$store.state.user.name, - titile: '', + titleCon: '工具信息维护', selectRow: { site: this.$store.state.user.site, username: this.$store.state.user.name, @@ -104,6 +119,32 @@ remark: null, }, itemRows:[], + buttons: { + saveButton: '保存', + closeButton: '关闭', + }, + queryButton: { + functionId: functionId, + table_id: '*', + languageCode: this.$i18n.locale, + objectType: 'button' + }, + labels: { + titleCon: '工具信息维护', + itemNo: '工序号:', + itemDesc: '工序名称:', + toolId: '工具编码:', + toolName: '工具名称:', + toolSpec: '规格型号:', + toolQty: '工具数量:', + remark: '备注:', + }, + queryLabel: { + functionId: functionId, + table_id: '*', + languageCode: this.$i18n.locale, + objectType: 'label' + }, } }, methods: { diff --git a/src/views/modules/shopOrder/shopOrder/shopOrder.vue b/src/views/modules/shopOrder/shopOrder/shopOrder.vue index a25d97c..944c70a 100644 --- a/src/views/modules/shopOrder/shopOrder/shopOrder.vue +++ b/src/views/modules/shopOrder/shopOrder/shopOrder.vue @@ -43,7 +43,6 @@ {{ buttons.openButton }} - 多语言设置 @@ -332,15 +331,15 @@ - + - + - + - + - + - + @@ -368,10 +367,10 @@ - + - + - 关闭 + {{buttons.closeButton}} - + - + - + - + - 订单类型: + {{ labels.orderType }} - 计划方式: + {{labels.planMethod}} - + @@ -466,14 +465,14 @@ - 项目编码: + {{ labels.projectNo }} - + - + @@ -482,13 +481,13 @@ - + - + @@ -1729,93 +1728,6 @@ toolPrimaryMenu: '主菜单', toolMenu: '工具信息', }, - buttonList: [ - { - functionId: functionId, - languageValue: '列表', - objectId: 'orderListButton', - objectType: 'button', - tableId: '*' - }, { - functionId: functionId, - languageValue: '编辑', - objectId: 'editButton', - objectType: 'button', - tableId: '*' - }, { - functionId: functionId, - languageValue: '删除', - objectId: 'deleteButton', - objectType: 'button', - tableId: '*' - },{ - functionId: functionId, - languageValue: '打印', - objectId: 'printButton', - objectType: 'button', - tableId: '*' - }, { - functionId: functionId, - languageValue: '取消', - objectId: 'cancelButton', - objectType: 'button', - tableId: '*' - }, { - functionId: functionId, - languageValue: '关闭', - objectId: 'closeButton', - objectType: 'button', - tableId: '*' - },{ - functionId: functionId, - languageValue: '打开', - objectId: 'openButton', - objectType: 'button', - tableId: '*' - }, { - functionId: functionId, - languageValue: '导出', - objectId: 'download1', - objectType: 'button', - tableId: '*' - }, { - functionId: functionId, - languageValue: '导出', - objectId: 'download2', - objectType: 'button', - tableId: '*' - },{ - functionId: functionId, - languageValue: '主菜单', - objectId: 'routingPrimaryMenu', - objectType: 'button', - tableId: '*' - }, { - functionId: functionId, - languageValue: '工艺路线', - objectId: 'routingMenu', - objectType: 'button', - tableId: '*' - }, { - functionId: functionId, - languageValue: '导出', - objectId: 'download3', - objectType: 'button', - tableId: '*' - },{ - functionId: functionId, - languageValue: '主菜单', - objectId: 'toolPrimaryMenu', - objectType: 'button', - tableId: '*' - }, { - functionId: functionId, - languageValue: '工具信息', - objectId: 'toolMenu', - objectType: 'button', - tableId: '*' - }, - ], queryButton: { functionId: functionId, table_id: '*', @@ -1872,7 +1784,7 @@ sureCancelThisShopOrder: '确实要取消该生产订单吗?', sureCloseThisShopOrder: '确实要关闭该生产订单吗?', sureReOpenThisShopOrder: '确实要重新打开该生产订单吗?', - dataIsToLargeAndPleaseEnterOneCon: '数据量过于庞大,请至少输入一个查询条件', + dataIsToLargeAndPleaseEnterOneCon: '数据量过于庞大,请至少输入一个查询条件', sureDeleteThisShopOrder: '', operationIsSuccess: '操作成功!', pleaseSelectNeedDate: '请选择要求完工日期!', @@ -1883,376 +1795,9 @@ bomLabel: '产品结构', routingLabel: '工艺路线', toolLabel: '取消', + orderList: '订单列表', + to: '至:', }, - labelsList: [ - { - functionId: functionId, - languageValue: '订单号:', - objectId: 'orderNo', - objectType: 'label', - tableId: '*' - }, { - functionId: functionId, - languageValue: '物料编码:', - objectId: 'partNo', - objectType: 'label', - tableId: '*' - }, { - functionId: functionId, - languageValue: '物料名称/规格:', - objectId: 'partDesc', - objectType: 'label', - tableId: '*' - }, { - functionId: functionId, - languageValue: '工厂编号:', - objectId: 'siteNo', - objectType: 'label', - tableId: '*' - }, { - functionId: functionId, - languageValue: '要求完工日期:', - objectId: 'needDate', - objectType: 'label', - tableId: '*' - }, { - functionId: functionId, - languageValue: '要求开工日期:', - objectId: 'planStartDate', - objectType: 'label', - tableId: '*' - }, { - functionId: functionId, - languageValue: '订单数量:', - objectId: 'lotSize', - objectType: 'label', - tableId: '*' - }, { - functionId: functionId, - languageValue: '状态:', - objectId: 'orderStatus', - objectType: 'label', - tableId: '*' - }, { - functionId: functionId, - languageValue: '订单类型:', - objectId: 'orderType', - objectType: 'label', - tableId: '*' - }, { - functionId: functionId, - languageValue: '计划方式:', - objectId: 'planMethod', - objectType: 'label', - tableId: '*' - }, { - functionId: functionId, - languageValue: '是否打印:', - objectId: 'whetherPrint', - objectType: 'label', - tableId: '*' - }, { - functionId: functionId, - languageValue: '销售订单:', - objectId: 'shopOrder', - objectType: 'label', - tableId: '*' - }, { - functionId: functionId, - languageValue: '订单序号:', - objectId: 'shopOrderSort', - objectType: 'label', - tableId: '*' - }, { - functionId: functionId, - languageValue: '原生产订单号:', - objectId: 'oriOrderNo', - objectType: 'label', - tableId: '*' - }, { - functionId: functionId, - languageValue: '项目编码:', - objectId: 'projectNo', - objectType: 'label', - tableId: '*' - }, { - functionId: functionId, - languageValue: '项目名称:', - objectId: 'projectDesc', - objectType: 'label', - tableId: '*' - }, { - functionId: functionId, - languageValue: '总调机过程停机时间', - objectId: 'totalTuningDownTime', - objectType: 'label', - tableId: '*' - }, { - functionId: functionId, - languageValue: '客户产品科号:', - objectId: 'customerPartNo', - objectType: 'label', - tableId: '*' - }, { - functionId: functionId, - languageValue: '客户名称:', - objectId: 'customerDesc', - objectType: 'label', - tableId: '*' - }, { - functionId: functionId, - languageValue: '完成数量:', - objectId: 'finishQty', - objectType: 'label', - tableId: '*' - }, { - functionId: functionId, - languageValue: '库存计量单位:', - objectId: 'stockUnit', - objectType: 'label', - tableId: '*' - }, { - functionId: functionId, - languageValue: '已排料:', - objectId: 'materialIssued', - objectType: 'label', - tableId: '*' - }, { - functionId: functionId, - languageValue: '刀模已发:', - objectId: 'toolIssued', - objectType: 'label', - tableId: '*' - }, { - functionId: functionId, - languageValue: 'BOM版本号:', - objectId: 'bomVersion', - objectType: 'label', - tableId: '*' - }, { - functionId: functionId, - languageValue: 'Routing版本号:', - objectId: 'routingVersion', - objectType: 'label', - tableId: '*' - }, { - functionId: functionId, - languageValue: '印版已发:', - objectId: 'printIssued', - objectType: 'label', - tableId: '*' - }, { - functionId: functionId, - languageValue: '客户要求完工日期:', - objectId: 'customerNeedDate', - objectType: 'label', - tableId: '*' - }, { - functionId: functionId, - languageValue: '制造提前期:', - objectId: 'prodPreDays', - objectType: 'label', - tableId: '*' - }, { - functionId: functionId, - languageValue: '入库状态:', - objectId: 'inStockStatus', - objectType: 'label', - tableId: '*' - }, { - functionId: functionId, - languageValue: '技术注意事项:', - objectId: 'technicalRemark', - objectType: 'label', - tableId: '*' - }, { - functionId: functionId, - languageValue: '备注:', - objectId: 'orderRemark', - objectType: 'label', - tableId: '*' - }, { - functionId: functionId, - languageValue: '订单分解信息', - objectId: 'orderSplitInfo', - objectType: 'label', - tableId: '*' - }, { - functionId: functionId, - languageValue: '录入日期:', - objectId: 'enterDate', - objectType: 'label', - tableId: '*' - }, { - functionId: functionId, - languageValue: '录入人:', - objectId: 'enterBy', - objectType: 'label', - tableId: '*' - }, { - functionId: functionId, - languageValue: '下达日期: ', - objectId: 'releasedDate', - objectType: 'label', - tableId: '*' - }, { - functionId: functionId, - languageValue: '下达人:', - objectId: 'releasedBy', - objectType: 'label', - tableId: '*' - }, { - functionId: functionId, - languageValue: '排产日期:', - objectId: 'scheduledDate', - objectType: 'label', - tableId: '*' - }, { - functionId: functionId, - languageValue: '排产人:', - objectId: 'scheduledBy', - objectType: 'label', - tableId: '*' - }, { - functionId: functionId, - languageValue: '发料日期:', - objectId: 'issueDate', - objectType: 'label', - tableId: '*' - }, { - functionId: functionId, - languageValue: '生产日期:', - objectId: 'prodDate', - objectType: 'label', - tableId: '*' - }, { - functionId: functionId, - languageValue: '入库日期:', - objectId: 'inStockDate', - objectType: 'label', - tableId: '*' - }, { - functionId: functionId, - languageValue: '关闭日期:', - objectId: 'closedDate', - objectType: 'label', - tableId: '*' - }, { - functionId: functionId, - languageValue: '订单分解信息', - objectId: 'orderSplitInfo1', - objectType: 'label', - tableId: '*' - }, { - functionId: functionId, - languageValue: '源订单类型:', - objectId: 'oriOrderType', - objectType: 'label', - tableId: '*' - }, { - functionId: functionId, - languageValue: '源生产订单号:', - objectId: 'oriProdOrderNo', - objectType: 'label', - tableId: '*' - }, { - functionId: functionId, - languageValue: '订单分解层次:', - objectId: 'orderSplitLevels', - objectType: 'label', - tableId: '*' - }, { - functionId: functionId, - languageValue: '请选择生产订单!', - objectId: ' pleaseSelectShopOrder', - objectType: 'label', - tableId: '*' - }, { - functionId: functionId, - languageValue: '确实要取消该生产订单吗?', - objectId: 'sureCancelThisShopOrder', - objectType: 'label', - tableId: '*' - }, { - functionId: functionId, - languageValue: '确实要关闭该生产订单吗?', - objectId: 'sureCloseThisShopOrder', - objectType: 'label', - tableId: '*' - }, { - functionId: functionId, - languageValue: '确实要重新打开该生产订单吗?', - objectId: 'sureReOpenThisShopOrder', - objectType: 'label', - tableId: '*' - }, { - functionId: functionId, - languageValue: '确实要删除该生产订单吗?', - objectId: 'sureDeleteThisShopOrder', - objectType: 'label', - tableId: '*' - }, { - functionId: functionId, - languageValue: '数据量过于庞大,请至少输入一个查询条件!', - objectId: 'dataIsToLargeAndPleaseEnterOneCon', - objectType: 'label', - tableId: '*' - }, { - functionId: functionId, - languageValue: '操作成功!', - objectId: 'operationIsSuccess', - objectType: 'label', - tableId: '*' - }, { - functionId: functionId, - languageValue: '请选择要求完工日期!', - objectId: 'pleaseSelectNeedDate', - objectType: 'label', - tableId: '*' - }, { - functionId: functionId, - languageValue: '请选择要求开工日期!', - objectId: 'pleaseSelectStartDate', - objectType: 'label', - tableId: '*' - }, { - functionId: functionId, - languageValue: '确定', - objectId: 'confirmLabel', - objectType: 'label', - tableId: '*' - }, { - functionId: functionId, - languageValue: '取消', - objectId: 'cancelLabel', - objectType: 'label', - tableId: '*' - }, { - functionId: functionId, - languageValue: '订单', - objectId: 'orderLabel', - objectType: 'label', - tableId: '*' - }, { - functionId: functionId, - languageValue: '产品结构', - objectId: 'bomLabel', - objectType: 'label', - tableId: '*' - }, { - functionId: functionId, - languageValue: '工艺路线', - objectId: 'routingLabel', - objectType: 'label', - tableId: '*' - }, { - functionId: functionId, - languageValue: '工具信息', - objectId: 'toolLabel', - objectType: 'label', - tableId: '*' - }, - ], queryLabel: { functionId: functionId, table_id: '*',