@@ -25,7 +25,12 @@
$(".foot").css({'position':'fixed'})
},
getTimeVal(value){//确定
- this.val = value;
+ if(value.charAt(0) == 0){
+ this.val = value.substr(1);
+ }else{
+ this.val = value;
+ }
+
this.showTime = false;
const newData = Object.assign({},this.item,{value:this.val,valueP:this.val});
this.$emit("updata",newData);