|
@@ -117,8 +117,6 @@ export default {
|
|
|
}
|
|
|
},
|
|
|
change(e) {
|
|
|
- // this.$emit("change", this.value);
|
|
|
- console.log(this.trueValue);
|
|
|
this.errorInfo = "";
|
|
|
const isNum = /^[0-9]+.?[0-9]*$/; // 是否都为数字
|
|
|
const isDouble = /^[+-]?\d+(?:\.\d{1,2})?$/; // 最多两位小数,可为正负
|
|
@@ -143,7 +141,6 @@ export default {
|
|
|
this.value.push({ value: "" });
|
|
|
} else {
|
|
|
if (this.value.length === 1) return;
|
|
|
- console.log(this.value);
|
|
|
this.value.splice(index, 1);
|
|
|
}
|
|
|
},
|