Commit 08057098 by 唐玉峰

.

parent d9ba3c13
...@@ -19,8 +19,13 @@ ...@@ -19,8 +19,13 @@
<div style="padding: 20px"> <div style="padding: 20px">
<el-table :data="tableData" stripe style="width: 100%" border size="mini"> <el-table :data="tableData" stripe style="width: 100%" border size="mini">
<el-table-column align="center" type="index" width="50" :index="(currentPage - 1) * pageSize + 1" fixed></el-table-column> <el-table-column align="center" type="index" width="50" :index="(currentPage - 1) * pageSize + 1" fixed></el-table-column>
<el-table-column :prop="item.prop" min-width="160" :label="item.label" v-for="item in columnList" :key="item.label" show-overflow-tooltip> <el-table-column prop="now" label="添加时间" show-overflow-tooltip> </el-table-column>
<el-table-column prop="type" label="类型" show-overflow-tooltip>
<template #default="scope">
<div>{{ typeObj[scope.row.type] }}</div>
</template>
</el-table-column> </el-table-column>
<el-table-column :prop="item.prop" :label="item.label" v-for="item in columnList" :key="item.label" show-overflow-tooltip> </el-table-column>
</el-table> </el-table>
<div style="text-align: right; margin-top: 20px"> <div style="text-align: right; margin-top: 20px">
<el-pagination <el-pagination
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment