| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- <template>
- <view>
- <list pageName="myInspectionProjectTask" ref="listRef"></list>
- </view>
- </template>
- <script>
- import list from './list.vue'
- export default {
- components: {
- list
- },
- mixins: [],
- data() {
- return {
- }
- },
- computed: {
- },
- created() {
- uni.$off('successInit')
- uni.$on('successInit', (data) => {
- this.$nextTick(() => {
- this.$refs.listRef.successInit()
- })
- })
- },
- onUnload() {
-
- uni.$off('successInit')
-
- },
- onLoad(data) {
- this.$nextTick(() => {
- this.$refs.listRef.getList()
- })
- },
- methods: {
- }
- }
- </script>
- <style lang="scss" scoped>
- </style>
|