1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- <template>
- <div class="meetingStrategy">
- <div class="meetingStrategy-query">
- </div>
- <div class="meetingStrategy-table">
- <a-table
- :rowKey=" (record, index) => index"
- :columns="columns"
- :data-source="tableData"
- :pagination="false"
- >
- </a-table>
- </div>
- </div>
- </template>
- <script>
- export default {
- data() {
- return {
- tableData: [],
- columns: [
- {
- dataIndex: 'name',
- key: 'name',
- title: '名称'
- },
- {
- dataIndex: 'createTime',
- key: 'createTime',
- title: '创建时间'
- },
- {
- dataIndex: 'creator',
- key: 'creator',
- title: '创建人'
- },
- {
- dataIndex: 'enable',
- key: 'enable',
- title: '启用'
- },
- {
- dataIndex: 'operation',
- key: 'operation',
- title: '操作'
- },
- ]
- }
- }
- }
- </script>
- <style lang="less" scoped>
- .meetingStrategy {
- }
- </style>
|