linwenxin 8 hónapja
szülő
commit
5d728d01b4

+ 29 - 8
src/global-text-processor.js

@@ -1,21 +1,42 @@
+function isNumberRegex(value) {
+  return /^-?\d+(\.\d+)?$/.test(value)
+}
+
 export default {
   install(Vue) {
     Vue.mixin({
-      updated() {
-        this.$nextTick(() => {
-          this.processTextNodes(this.$el)
-        })
-      },
+      // updated() {
+      //   this.$nextTick(() => {
+      //     this.processTextNodes(this.$el)
+      //   })
+      // },
       methods: {
         processTextNodes(el) {
           // 遍历子节点并处理文本内容
           if (el.nodeType === Node.ELEMENT_NODE) {
+            // 跳过 table-body中的td 元素
+            if (el.nodeName.toLowerCase() === 'td') {
+              return
+            }
             Array.from(el.childNodes).forEach(child => {
               if (child.nodeType === Node.TEXT_NODE) {
-                child.textContent = this.$i18n.t(child.textContent.trim())
-              } else {
-                this.processTextNodes(child)
+                const text = child.textContent.trim()
+                if (text && !isNumberRegex(text)) {
+                  try {
+                    child.textContent = '⏳' //this.$i18n.t(text)
+                  } catch (error) {}
+                }
+              } else if (child.nodeName === 'INPUT' || child.nodeName === 'TEXTAREA' || child.nodeName === 'SELECT') {
+                // 修改输入框和下拉框的 placeholder 内容
+                const placeholder = child.getAttribute('placeholder')
+                if (placeholder && !isNumberRegex(placeholder)) {
+                  try {
+                    child.setAttribute('placeholder', '⏳') //this.$i18n.t(placeholder)
+                  } catch (error) {}
+                }
               }
+              // 递归处理子节点
+              this.processTextNodes(child)
             })
           }
         }

+ 2 - 2
src/main.js

@@ -8,10 +8,10 @@ import 'normalize.css/normalize.css' // A modern alternative to CSS resets
 // import './plugins/jquery.hiwprint.js'
 
 // import VueI18n from 'vue-i18n'
-// import GlobalTextProcessor from './global-text-processor' // 导入插件
+import GlobalTextProcessor from './global-text-processor' // 导入插件
 
 // Vue.use(VueI18n)
-// Vue.use(GlobalTextProcessor) // 注册插件
+Vue.use(GlobalTextProcessor) // 注册插件
 
 // const i18n = new VueI18n({
 //   locale: 'ar'

+ 15 - 4
src/views/workOrder/automaticDispatchConfig/streetConfiguration/index.vue

@@ -138,11 +138,21 @@ export default {
       return [
         [
           [
-            this.optionsEvensAuth('add', {
-              click: () => {
-                this.formDialog = true
+            ...(() => {
+              if (this.websit) {
+                return [
+                  this.optionsEvensAuth('add', {
+                    click: () => {
+                      this.formData.websitId = this.websit.websitId
+                      this.formData.websitName = this.websit.name
+                      this.formDialog = true
+                    }
+                  })
+                ]
+              } else {
+                return []
               }
-            })
+            })()
           ],
           [
             this.optionsEvensAuth('downloadImportTemplate', {
@@ -180,6 +190,7 @@ export default {
           md: 6,
           options: this.dataList,
           attributes: {
+            disabled: true,
             placeholder: '请选择',
             clearable: true,
             filterable: true

+ 1 - 1
src/views/workOrder/workOrderPool/detailModule/workOrderInfo/mixins/pandanxinxi.js

@@ -102,7 +102,7 @@ export default {
           }
         },
         {
-          isShow: this?.orderInfo?.isThreeOrder && this.formOptions.websitId.isShow,
+          isShow: !!this?.orderInfo?.isThreeOrder && this.formOptions.websitId.isShow,
           name: 'slot-component',
           md: 8,
           attributes: { disabled: true, placeholder: '请输入' },