Преглед на файлове

selectUnit回显的问题

cxmo преди 5 месеца
родител
ревизия
772b480c0f
променени са 1 файла, в които са добавени 8 реда и са изтрити 4 реда
  1. 8 4
      src/components/selectUnit.vue

+ 8 - 4
src/components/selectUnit.vue

@@ -50,10 +50,14 @@ export default {
         }
     },
     watch:{
-        value(){
-            if(this.value){
-                this.unit = this.getUnitTrans(this.value)
-            }
+        value:{
+            handler(){
+                if(this.value){
+                    console.log('value',this.value)
+                    this.unit = this.getUnitTrans(this.value)
+                }
+            },
+            immediate:true
         }
     },
     data() {