41 lines
583 B
Vue
41 lines
583 B
Vue
<template>
|
|
<div class="AppShowProduce">
|
|
<List
|
|
slot="content"
|
|
:instance="instance"
|
|
:dict="dict"
|
|
:permissions="permissions">
|
|
</List>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import List from './components/List.vue'
|
|
|
|
export default {
|
|
name: 'AppShowProduce',
|
|
label: '晒农产品',
|
|
|
|
components: {
|
|
List
|
|
},
|
|
|
|
props: {
|
|
instance: Function,
|
|
dict: Object,
|
|
permissions: Function
|
|
},
|
|
|
|
data () {
|
|
return {
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.AppShowProduce {
|
|
height: 100%;
|
|
}
|
|
</style>
|