2023-06-07 10:48:30 +00:00
|
|
|
<template>
|
|
|
|
<el-container>
|
|
|
|
<el-header>
|
|
|
|
<div class="left-panel">
|
|
|
|
<el-button type="primary" icon="el-icon-plus"></el-button>
|
|
|
|
<el-button type="danger" plain icon="el-icon-delete"></el-button>
|
|
|
|
</div>
|
|
|
|
<div class="right-panel">
|
|
|
|
<el-alert title="因演示使用mock数据,所以视图上看不出效果,可以查看控制台的网络请求" type="warning" :closable="false"/>
|
|
|
|
</div>
|
|
|
|
</el-header>
|
|
|
|
<el-main class="nopadding">
|
|
|
|
<scTable ref="table" :apiObj="list.apiObj" row-key="id" stripe show-summary remoteSort remoteFilter remoteSummary>
|
|
|
|
<el-table-column type="selection" width="50"></el-table-column>
|
|
|
|
<el-table-column label="姓名" prop="name" width="150"></el-table-column>
|
|
|
|
<el-table-column label="性别" prop="sex" width="150" column-key="sex" :filters="sexFilters"></el-table-column>
|
|
|
|
<el-table-column label="邮箱" prop="email" width="250"></el-table-column>
|
|
|
|
<el-table-column label="评分" prop="num" width="150" sortable='custom'></el-table-column>
|
|
|
|
<el-table-column label="进度" prop="progress" width="250" sortable></el-table-column>
|
|
|
|
<el-table-column label="注册时间" prop="datetime" width="150" sortable='custom'></el-table-column>
|
|
|
|
</scTable>
|
|
|
|
</el-main>
|
|
|
|
</el-container>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
export default {
|
|
|
|
name: 'tableRemote',
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
sexFilters: [
|
|
|
|
{text: '男', value: '男'},
|
|
|
|
{text: '女', value: '女'}
|
|
|
|
],
|
|
|
|
list: {
|
2023-06-11 14:57:10 +00:00
|
|
|
apiObj: this.$api.demo.list
|
2023-06-07 10:48:30 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style>
|
|
|
|
</style>
|