diff --git a/src/components/customField/TableData.vue b/src/components/customField/TableData.vue index 21980ba4..452013a6 100644 --- a/src/components/customField/TableData.vue +++ b/src/components/customField/TableData.vue @@ -102,7 +102,7 @@ export default { ipagination: { current: 1, pageSize: 50, - pageSizeOptions: ['10', '50', '100', '150', '200'], + pageSizeOptions: ['10', '30', '50', '100', '150', '200'], showTotal: (total, range) => { return range[0] + '-' + range[1] + ' ' + this.$t('total') + ' ' + total + ' ' + this.$t('strip') }, diff --git a/src/components/selection/EnterprisePlanSelectionModal.vue b/src/components/selection/EnterprisePlanSelectionModal.vue index e5992790..3130693f 100644 --- a/src/components/selection/EnterprisePlanSelectionModal.vue +++ b/src/components/selection/EnterprisePlanSelectionModal.vue @@ -157,7 +157,7 @@ export default { ipagination: { current: 1, pageSize: 10, - pageSizeOptions: ['10', '20', '30'], + pageSizeOptions: ['10', '30', '50', '100', '150', '200'], showTotal: (total, range) => { return range[0] + '-' + range[1] + ' ' + this.$t('total') + ' ' + total + ' ' + this.$t('strip') }, diff --git a/src/components/selection/EnterpriseRecheckPlanSelectionModal.vue b/src/components/selection/EnterpriseRecheckPlanSelectionModal.vue index e0eb856f..c0f62a73 100644 --- a/src/components/selection/EnterpriseRecheckPlanSelectionModal.vue +++ b/src/components/selection/EnterpriseRecheckPlanSelectionModal.vue @@ -132,7 +132,7 @@ export default { ipagination: { current: 1, pageSize: 10, - pageSizeOptions: ['10', '20', '30'], + pageSizeOptions: ['10', '30', '50', '100', '150', '200'], showTotal: (total, range) => { return range[0] + '-' + range[1] + ' ' + this.$t('total') + ' ' + total + ' ' + this.$t('strip') }, diff --git a/src/components/selection/StandardSelectionModal.vue b/src/components/selection/StandardSelectionModal.vue index b5a2fa39..99fc6f11 100644 --- a/src/components/selection/StandardSelectionModal.vue +++ b/src/components/selection/StandardSelectionModal.vue @@ -130,7 +130,7 @@ export default { ipagination: { current: 1, pageSize: 10, - pageSizeOptions: ['10', '20', '30'], + pageSizeOptions: ['10', '30', '50', '100', '150', '200'], showTotal: (total, range) => { return range[0] + '-' + range[1] + ' ' + this.$t('total') + ' ' + total + ' ' + this.$t('strip') }, diff --git a/src/mixins/ConfigurableTableMixin.js b/src/mixins/ConfigurableTableMixin.js index 397ffb43..78a43164 100644 --- a/src/mixins/ConfigurableTableMixin.js +++ b/src/mixins/ConfigurableTableMixin.js @@ -22,7 +22,7 @@ export const ConfigurableTableMixin = { ipagination: { current: 1, pageSize: 10, - pageSizeOptions: ['10', '50', '100', '150', '200'], + pageSizeOptions: ['10', '30', '50', '100', '150', '200'], showTotal: (total, range) => { return range[0] + '-' + range[1] + ' ' + this.$t('total') + ' ' + total + ' ' + this.$t('strip') }, diff --git a/src/mixins/JeroListMixin.js b/src/mixins/JeroListMixin.js index 0953519d..677f6637 100644 --- a/src/mixins/JeroListMixin.js +++ b/src/mixins/JeroListMixin.js @@ -31,7 +31,7 @@ export const JeroListMixin = { ipagination: { current: 1, pageSize: 10, - pageSizeOptions: ['10', '20', '30'], + pageSizeOptions: ['10', '30', '50', '100', '150', '200'], showTotal: (total, range) => { return range[0] + '-' + range[1] + ' ' + this.$t('total') + total + this.$t('strip') }, diff --git a/src/views/dashboard/search/AdvancedSearch.vue b/src/views/dashboard/search/AdvancedSearch.vue index f3a84d2b..e539049c 100644 --- a/src/views/dashboard/search/AdvancedSearch.vue +++ b/src/views/dashboard/search/AdvancedSearch.vue @@ -233,7 +233,7 @@ export default { ipagination: { current: 1, pageSize: 10, - pageSizeOptions: ['10', '20', '30'], + pageSizeOptions: ['10', '30', '50', '100', '150', '200'], showTotal: (total, range) => { return range[0] + '-' + range[1] + ' ' + this.$t('total') + total + this.$t('strip') }, @@ -300,7 +300,7 @@ export default { this.ipagination = { current: 1, pageSize: 10, - pageSizeOptions: ['10', '20', '30'], + pageSizeOptions: ['10', '30', '50', '100', '150', '200'], showTotal: (total, range) => { return range[0] + '-' + range[1] + ' ' + this.$t('total') + total + this.$t('strip') }, diff --git a/src/views/dashboard/search/GeneralSearch.vue b/src/views/dashboard/search/GeneralSearch.vue index 7673d99a..75e56436 100644 --- a/src/views/dashboard/search/GeneralSearch.vue +++ b/src/views/dashboard/search/GeneralSearch.vue @@ -154,7 +154,7 @@ export default { ipagination: { current: 1, pageSize: 10, - pageSizeOptions: ['10', '20', '30'], + pageSizeOptions: ['10', '30', '50', '100', '150', '200'], showTotal: (total, range) => { return range[0] + '-' + range[1] + ' ' + this.$t('total') + total + this.$t('strip') }, @@ -331,7 +331,7 @@ export default { this.ipagination = { current: 1, pageSize: 10, - pageSizeOptions: ['10', '20', '30'], + pageSizeOptions: ['10', '30', '50', '100', '150', '200'], showTotal: (total, range) => { return range[0] + '-' + range[1] + ' ' + this.$t('total') + total + this.$t('strip') }, @@ -351,7 +351,7 @@ export default { this.ipagination = { current: 1, pageSize: 10, - pageSizeOptions: ['10', '20', '30'], + pageSizeOptions: ['10', '30', '50', '100', '150', '200'], showTotal: (total, range) => { return range[0] + '-' + range[1] + ' ' + this.$t('total') + total + this.$t('strip') }, diff --git a/src/views/workCenter/enterpriseStandardInitChange/PlanApprovalChangeFlow.vue b/src/views/workCenter/enterpriseStandardInitChange/PlanApprovalChangeFlow.vue index 71acebe1..4a2b6736 100644 --- a/src/views/workCenter/enterpriseStandardInitChange/PlanApprovalChangeFlow.vue +++ b/src/views/workCenter/enterpriseStandardInitChange/PlanApprovalChangeFlow.vue @@ -164,7 +164,7 @@ - + - +