31 lines
381 B
Vue
31 lines
381 B
Vue
<template>
|
|
<view>
|
|
<HistoryData ref="historyData" />
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
import HistoryData from './data.vue'
|
|
export default {
|
|
data: function () {
|
|
return {
|
|
|
|
};
|
|
},
|
|
components: {
|
|
HistoryData
|
|
},
|
|
onShow() {
|
|
this.$nextTick(() => {
|
|
this.$refs.historyData.getAgriList();
|
|
})
|
|
},
|
|
methods: {
|
|
|
|
}
|
|
};
|
|
</script>
|
|
|
|
<style scoped>
|
|
|
|
</style> |