Commit 55a1e4a0 by liuchenxi

bugfix: 宝宝标签输入年龄

parent 700f23df
......@@ -2036,6 +2036,7 @@ export default {
let v = e.target.value;
v = v.indexOf('-') == v.length - 1 ? '' : v;
v = v.indexOf('.') == v.length - 1 ? v.replace('.', '') : v;
if(this.tagData.tagId == '6fb8ab4ce2d64fd19ac22fcba722bd61') v = Math.floor(v);
return v;
},
onChangeTime(val) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment