// watch: { // ‘form.timeScopes‘: function (val) { // console.log("进入吗?"); // console.log(val); // } // }, // computed: { // lossMinutes: function () { // if ( // this.form.timeScopes && // this.form.timeScopes.length == 2 && // this.form.timeScopes[0] && // this.form.timeScopes[1] && // this.form.timeScopes[0].length > 0 && // this.form.timeScopes[1].length > 0 // ) { // return parseInt( // Math.abs( // new Date(this.form.timeScopes[0]) - // new Date(this.form.timeScopes[1]) // ) / // 1000 / // 60 // ); // } else { // return 0; // } // } // }
原文:https://www.cnblogs.com/foreXdd/p/15246276.html