1234567891011121314151617181920212223 |
- export default {
- data() {
- return {
- };
- },
- onReachBottom() {
- try {
- if (this.initModule && this.initModule.length > 0) {
- this.initModule.forEach(el => {
- if (this.$refs[`${el.component}Ref`][0].reachBottom) {
- this.$refs[`${el.component}Ref`][0].onReachBottom()
- }
- })
- }
- } catch (e) {
- console.log('触摸底部 ----------: ' + e.message)
- }
- },
- }
|