| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <template>
- <view>
- <list ref="listRef" pageName="HaulSlag"></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() {
- this.$nextTick(() => {
- this.$refs.listRef.getList()
- })
- uni.setNavigationBarColor({
- frontColor: '#000000',
- })
- },
- methods: {}
- }
- </script>
- <style lang="scss" scoped>
- </style>
|