Browse Source

Merge branch '08/24teamQuest' into 11/24SAAS

mo 2 năm trước cách đây
mục cha
commit
8f138b7c4d
1 tập tin đã thay đổi với 6 bổ sung4 xóa
  1. 6 4
      src/views/resetTeaming/components/payInfoDetail.vue

+ 6 - 4
src/views/resetTeaming/components/payInfoDetail.vue

@@ -1245,11 +1245,10 @@ export default {
         this.$set(this.form, "leBaoList", [{}]);
       }
     },
-    "form.eclass": {
+    Eclass: {
       handler(newValue,oldValue) {
-        // console.log("form.eclass",[...newValue])
-        let oldString = JSON.stringify(oldValue)
-        let newString = JSON.stringify(newValue)
+        let oldString = JSON.stringify({...oldValue})
+        let newString = JSON.stringify({...newValue})
         if (this.initDetail || oldString == newString) {
           this.initDetail = false;
           return;
@@ -1320,6 +1319,9 @@ export default {
     musicGroup() {
       return this.baseInfo?.musicGroup;
     },
+    Eclass(){
+      return JSON.parse(JSON.stringify(this.form.eclass));
+    }
   },
 };
 </script>