hide trend analysis settings in statistics settings page

This commit is contained in:
MaysWind
2024-06-24 00:23:54 +08:00
parent 0e391bee50
commit daae5b68cd
+21 -21
View File
@@ -62,28 +62,28 @@
</f7-list-item>
</f7-list>
<f7-block-title>{{ $t('Trend Analysis Settings') }}</f7-block-title>
<f7-list strong inset dividers>
<f7-list-item
:title="$t('Default Chart Type')"
smart-select :smart-select-params="{ openIn: 'popup', popupPush: true, closeOnSelect: true, scrollToSelectedItem: true, searchbar: true, searchbarPlaceholder: $t('Chart Type'), searchbarDisableText: $t('Cancel'), appendSearchbarNotFound: $t('No results'), popupCloseLinkText: $t('Done') }">
<select v-model="defaultTrendChartType">
<option :value="chartType.type"
:key="chartType.type"
v-for="chartType in allTrendChartTypes">{{ chartType.displayName }}</option>
</select>
</f7-list-item>
<!-- <f7-block-title>{{ $t('Trend Analysis Settings') }}</f7-block-title>-->
<!-- <f7-list strong inset dividers>-->
<!-- <f7-list-item-->
<!-- :title="$t('Default Chart Type')"-->
<!-- smart-select :smart-select-params="{ openIn: 'popup', popupPush: true, closeOnSelect: true, scrollToSelectedItem: true, searchbar: true, searchbarPlaceholder: $t('Chart Type'), searchbarDisableText: $t('Cancel'), appendSearchbarNotFound: $t('No results'), popupCloseLinkText: $t('Done') }">-->
<!-- <select v-model="defaultTrendChartType">-->
<!-- <option :value="chartType.type"-->
<!-- :key="chartType.type"-->
<!-- v-for="chartType in allTrendChartTypes">{{ chartType.displayName }}</option>-->
<!-- </select>-->
<!-- </f7-list-item>-->
<f7-list-item
:title="$t('Default Date Range')"
smart-select :smart-select-params="{ openIn: 'popup', popupPush: true, closeOnSelect: true, scrollToSelectedItem: true, searchbar: true, searchbarPlaceholder: $t('Date Range'), searchbarDisableText: $t('Cancel'), appendSearchbarNotFound: $t('No results'), popupCloseLinkText: $t('Done') }">
<select v-model="defaultTrendChartDateRange">
<option :value="dateRange.type"
:key="dateRange.type"
v-for="dateRange in allTrendChartDateRanges">{{ dateRange.displayName }}</option>
</select>
</f7-list-item>
</f7-list>
<!-- <f7-list-item-->
<!-- :title="$t('Default Date Range')"-->
<!-- smart-select :smart-select-params="{ openIn: 'popup', popupPush: true, closeOnSelect: true, scrollToSelectedItem: true, searchbar: true, searchbarPlaceholder: $t('Date Range'), searchbarDisableText: $t('Cancel'), appendSearchbarNotFound: $t('No results'), popupCloseLinkText: $t('Done') }">-->
<!-- <select v-model="defaultTrendChartDateRange">-->
<!-- <option :value="dateRange.type"-->
<!-- :key="dateRange.type"-->
<!-- v-for="dateRange in allTrendChartDateRanges">{{ dateRange.displayName }}</option>-->
<!-- </select>-->
<!-- </f7-list-item>-->
<!-- </f7-list>-->
</f7-page>
</template>