Files
dvcp_v2_webapp/project/xiushan/apps/financing/AppFinancingNeeds/needsStatistics.vue

50 lines
851 B
Vue
Raw Normal View History

2022-04-07 19:47:59 +08:00
<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>