12345678910111213141516171819202122232425262728 |
- <template>
- <el-container direction="vertical">
- <el-header height="40px" style="border-bottom: 1px solid #eee">状态查询</el-header>
- <div style="margin:10px 0;">
- <el-date-picker v-model="value1" type="date" placeholder="选择日期"></el-date-picker>
- <el-button style="margin-left:10px;" type="primary">查询</el-button>
- </div>
- <el-table :data="tableData" height="100%" border style="width: 100%">
- <el-table-column prop="date" label="日期" width="180"></el-table-column>
- <el-table-column prop="name" label="姓名" width="180"></el-table-column>
- <el-table-column prop="address" label="地址"></el-table-column>
- </el-table>
- <el-row style="margin-top:10px;" type="flex" justify="end">
- <el-pagination background layout="prev, pager, next" :total="1000"></el-pagination>
- </el-row>
- </el-container>
- </template>
- <script>
- export default {
- data() {
- return {
- tableData: []
- };
- }
- };
- </script>
- <style scoped>
- </style>
|