ecinc-cloud-wappaio 9.7.62 → 9.7.63

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -278102,7 +278102,8 @@ external_commonjs_vue_commonjs2_vue_root_Vue_default().directive('form-title', {
278102
278102
  function txtLblI18nFunc(el, binding, vnode) {
278103
278103
  var field = binding.value;
278104
278104
  //非中文版、流程类文本标签,使用语言包中的配置
278105
- if (field && (vnode.context.$i18n.locale !== 'zhCN' || vnode.context.moduleCode && vnode.context.moduleCode.toLowerCase() === 'wflowform')) {
278105
+ var moduleCode = (vnode.context.moduleCode || '').toLowerCase();
278106
+ if (field && (vnode.context.$i18n.locale !== 'zhCN' || moduleCode === 'wflowform' || moduleCode === 'ecoa')) {
278106
278107
  var attrs = vnode.data.attrs || {};
278107
278108
  var label = vnode.context.$i18n.generateTitle({
278108
278109
  i18nCode: binding.value
@@ -278120,7 +278120,8 @@ external_commonjs_vue_commonjs2_vue_root_Vue_default().directive('form-title', {
278120
278120
  function txtLblI18nFunc(el, binding, vnode) {
278121
278121
  var field = binding.value;
278122
278122
  //非中文版、流程类文本标签,使用语言包中的配置
278123
- if (field && (vnode.context.$i18n.locale !== 'zhCN' || vnode.context.moduleCode && vnode.context.moduleCode.toLowerCase() === 'wflowform')) {
278123
+ var moduleCode = (vnode.context.moduleCode || '').toLowerCase();
278124
+ if (field && (vnode.context.$i18n.locale !== 'zhCN' || moduleCode === 'wflowform' || moduleCode === 'ecoa')) {
278124
278125
  var attrs = vnode.data.attrs || {};
278125
278126
  var label = vnode.context.$i18n.generateTitle({
278126
278127
  i18nCode: binding.value