|
@@ -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>
|