diff --git a/src/stores/conformanceData.js b/src/stores/conformanceData.js index 2907dd2..a2a2b28 100644 --- a/src/stores/conformanceData.js +++ b/src/stores/conformanceData.js @@ -21,5 +21,19 @@ export default defineStore('conformanceDataStore', { setConformanceData(userInputObj){ this.dataToSave = {...userInputObj}; }, + /** + * Set the starting time of time range to be saved later + * @param {string} startStr + */ + setConformanceDataStart(startStr){ + this.dataToSave.start = startStr; + }, + /** + * Set the ending time of time range to be saved later + * @param {string} startStr + */ + setConformanceDataEnd(endStr){ + this.dataToSave.end = endStr; + }, }, }) \ No newline at end of file diff --git a/src/views/Discover/Performance/index.vue b/src/views/Discover/Performance/index.vue index baa4208..625cec4 100644 --- a/src/views/Discover/Performance/index.vue +++ b/src/views/Discover/Performance/index.vue @@ -8,13 +8,21 @@

Time Usage

Frequency

@@ -22,7 +30,11 @@
-

scheduleTime Usage

+

+ schedule + + Time Usage +

-

movingFrequency

+

+ moving + + Frequency +