This commit is contained in:
2020-07-14 18:20:34 +00:00
parent 3c7f257dea
commit ae766fab32
5 changed files with 44 additions and 59 deletions

View File

@@ -103,23 +103,6 @@ export default {
);
vm.$emit("input", ret);
}
// ,
// handleDateInput(value) {
// //combine the time and dates into a consolidated value
// let TimePortion = window.$gz.locale.utcDateStringToLocal8601TimeOnlyString(
// this.internalValue,
// this.timeZoneName
// );
// if (!TimePortion) {
// TimePortion = "00:00:00";
// }
// let newValue = window.$gz.locale.localTimeDateStringToUTC8601String(
// value + "T" + TimePortion,
// this.timeZoneName
// );
// this.$emit("input", newValue);
// }
}
};
</script>