@monoui/vuejs 1.1.84 → 1.1.86
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/main.js +2 -2
- package/package.json +1 -1
- package/src/components/Table/Table.vue +6 -2
package/package.json
CHANGED
|
@@ -611,7 +611,7 @@ export default {
|
|
|
611
611
|
settings: {
|
|
612
612
|
currentPage: 1,
|
|
613
613
|
pageCount: 0,
|
|
614
|
-
itemPerPage: 10,
|
|
614
|
+
itemPerPage: this.perPage || 10,
|
|
615
615
|
totalItemCount: 0
|
|
616
616
|
},
|
|
617
617
|
tableData: [],
|
|
@@ -629,7 +629,8 @@ export default {
|
|
|
629
629
|
column: "CreatedDate",
|
|
630
630
|
title: "All",
|
|
631
631
|
frame: 3,
|
|
632
|
-
options: [3, 6, 9, 12, "Clear"]
|
|
632
|
+
options: [3, 6, 9, 12, "Clear"],
|
|
633
|
+
operator: 0
|
|
633
634
|
}
|
|
634
635
|
};
|
|
635
636
|
},
|
|
@@ -674,6 +675,9 @@ export default {
|
|
|
674
675
|
if (this.timeFrame.title)
|
|
675
676
|
this.finalTimeFrame.title = this.timeFrame.title;
|
|
676
677
|
|
|
678
|
+
if (this.timeFrame.operator)
|
|
679
|
+
this.finalTimeFrame.operator = this.timeFrame.operator;
|
|
680
|
+
|
|
677
681
|
if (this.timeFrame.frame)
|
|
678
682
|
this.finalTimeFrame.frame = this.timeFrame.frame;
|
|
679
683
|
|