新增搜索列表QueryList

This commit is contained in:
chenghx
2018-07-25 18:03:39 +08:00
parent 5014a92bd2
commit bdde0c1cd5
3 changed files with 217 additions and 1 deletions

View File

@@ -0,0 +1,37 @@
<template>
<div class="standard-table">
<div class="alert">
<a-alert type="info">
<div slot="message">
已选择<span></span>
服务调用总计<span></span>
<a>清空</a>
</div>
</a-alert>
</div>
<a-table
:bordered="bordered"
:loading="loading"
:columns="columns"
:dataSource="dataSource"
:rowKey="rowKey"
:pagination="pagination"
/>
</div>
</template>
<script>
import AAlert from 'vue-antd-ui/es/alert/index'
import ATable from 'vue-antd-ui/es/table'
export default {
name: 'StandardTable',
components: {ATable, AAlert},
props: ['bordered', 'loading', 'columns', 'dataSource', 'rowKey', 'pagination']
}
</script>
<style scoped>
.alert{
margin-bottom: 16px;
}
</style>