50 lines
851 B
Vue
50 lines
851 B
Vue
|
|
<template>
|
||
|
|
<section class="needsStatistics">
|
||
|
|
<ai-list>
|
||
|
|
<template #content>
|
||
|
|
<ai-search-bar>
|
||
|
|
<template #left>
|
||
|
|
<!-- <el-input size="small" placeholder="搜索企业名称" v-model="search.enterpriseName" clearable
|
||
|
|
@change="page.current=1,getTableData()"/> -->
|
||
|
|
</template>
|
||
|
|
</ai-search-bar>
|
||
|
|
|
||
|
|
</template>
|
||
|
|
</ai-list>
|
||
|
|
</section>
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<script>
|
||
|
|
import {mapState} from "vuex";
|
||
|
|
|
||
|
|
export default {
|
||
|
|
name: "needsStatistics",
|
||
|
|
props: {
|
||
|
|
instance: Function,
|
||
|
|
dict: Object,
|
||
|
|
permissions: Function
|
||
|
|
},
|
||
|
|
computed: {
|
||
|
|
...mapState(['user'])
|
||
|
|
},
|
||
|
|
data() {
|
||
|
|
return {
|
||
|
|
|
||
|
|
}
|
||
|
|
},
|
||
|
|
methods: {
|
||
|
|
getTableData() {
|
||
|
|
|
||
|
|
},
|
||
|
|
},
|
||
|
|
created() {
|
||
|
|
this.getTableData()
|
||
|
|
}
|
||
|
|
}
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<style lang="scss" scoped>
|
||
|
|
.needsStatistics {
|
||
|
|
}
|
||
|
|
</style>
|