leisure-core 0.4.43 → 0.4.44
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/le-common-page/src/main.vue +11 -0
- package/package.json +1 -1
|
@@ -88,6 +88,8 @@
|
|
|
88
88
|
</div>
|
|
89
89
|
</template>
|
|
90
90
|
<script>
|
|
91
|
+
import { Number } from "core-js";
|
|
92
|
+
|
|
91
93
|
export default {
|
|
92
94
|
name: "le-common-page",
|
|
93
95
|
props: {
|
|
@@ -95,6 +97,10 @@ export default {
|
|
|
95
97
|
type: Array,
|
|
96
98
|
default: () => [],
|
|
97
99
|
},
|
|
100
|
+
totalData: {
|
|
101
|
+
type: Number,
|
|
102
|
+
default: 1,
|
|
103
|
+
},
|
|
98
104
|
tableColumns: {
|
|
99
105
|
type: Array,
|
|
100
106
|
default: () => [],
|
|
@@ -136,6 +142,11 @@ export default {
|
|
|
136
142
|
deep: true,
|
|
137
143
|
immediate: true,
|
|
138
144
|
},
|
|
145
|
+
totalData: {
|
|
146
|
+
handler(val) {
|
|
147
|
+
this.searchData.total = val;
|
|
148
|
+
},
|
|
149
|
+
},
|
|
139
150
|
},
|
|
140
151
|
data() {
|
|
141
152
|
return {
|