|
@@ -1,19 +1,100 @@
|
|
|
<template>
|
|
|
- <div class="ManagingUsers">
|
|
|
- 管理员用户
|
|
|
+ <div class="ManagingUsers" style="display: none;" :style="{display: block}">
|
|
|
+ <div class="ManagingUsers1">
|
|
|
+ <el-input v-model="page.name" placeholder="请输入内容" style="max-width: 300px;" clearable></el-input>
|
|
|
+ <el-button type="primary" icon="el-icon-search">搜索</el-button>
|
|
|
+ <el-button type="warning" icon="el-icon-circle-plus-outline">添加</el-button>
|
|
|
+ </div>
|
|
|
+ <div class="ManagingUsers2">
|
|
|
+ <el-table :data="tableData" style="width: 100%" border>
|
|
|
+ <el-table-column label="日期" width="180">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <i class="el-icon-time"></i>
|
|
|
+ <span style="margin-left: 10px">{{ scope.row.date }}</span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column label="姓名" width="180">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <el-popover trigger="hover" placement="top">
|
|
|
+ <p>姓名: {{ scope.row.name }}</p>
|
|
|
+ <p>住址: {{ scope.row.address }}</p>
|
|
|
+ <div slot="reference" class="name-wrapper">
|
|
|
+ <el-tag size="medium">{{ scope.row.name }}</el-tag>
|
|
|
+ </div>
|
|
|
+ </el-popover>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column label="操作">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <el-button size="mini" @click="handleEdit(scope.$index, scope.row)">编辑</el-button>
|
|
|
+ <el-button size="mini" type="danger" @click="handleDelete(scope.$index, scope.row)">删除
|
|
|
+ </el-button>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ </el-table>
|
|
|
+ </div>
|
|
|
+ <div class="ManagingUsers3">
|
|
|
+ <el-pagination @size-change="handleSizeChange" @current-change="handleCurrentChange"
|
|
|
+ :current-page="page.page" :page-size="page.page_size"
|
|
|
+ layout="total, prev, pager, next, jumper" :total="total">
|
|
|
+ </el-pagination>
|
|
|
+ </div>
|
|
|
</div>
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
export default {
|
|
|
- name:'ManagingUsers',
|
|
|
+ name: 'ManagingUsers',
|
|
|
data() {
|
|
|
- return{
|
|
|
- vlaue:''
|
|
|
+ return {
|
|
|
+ total:30,
|
|
|
+ page:{
|
|
|
+ page:1,
|
|
|
+ page_size:10,
|
|
|
+ name:''
|
|
|
+ },
|
|
|
+ tableData: [{
|
|
|
+ date: '2016-05-02',
|
|
|
+ name: '王小虎',
|
|
|
+ address: '上海市普陀区金沙江路 1518 弄'
|
|
|
+ }, {
|
|
|
+ date: '2016-05-04',
|
|
|
+ name: '王小虎',
|
|
|
+ address: '上海市普陀区金沙江路 1517 弄'
|
|
|
+ }, {
|
|
|
+ date: '2016-05-01',
|
|
|
+ name: '王小虎',
|
|
|
+ address: '上海市普陀区金沙江路 1519 弄'
|
|
|
+ }, {
|
|
|
+ date: '2016-05-03',
|
|
|
+ name: '王小虎',
|
|
|
+ address: '上海市普陀区金沙江路 1516 弄'
|
|
|
+ }]
|
|
|
+ }
|
|
|
+ },
|
|
|
+ methods: {
|
|
|
+ handleSizeChange(val) {
|
|
|
+ console.log(`每页 ${val} 条`);
|
|
|
+ },
|
|
|
+ handleCurrentChange(val) {
|
|
|
+ console.log(`当前页: ${val}`);
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
</script>
|
|
|
|
|
|
-<style lang="scss">
|
|
|
-</style>
|
|
|
+<style lang="scss" scoped>
|
|
|
+ .ManagingUsers {
|
|
|
+ .ManagingUsers1 {
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ }
|
|
|
+
|
|
|
+ .ManagingUsers2 {
|
|
|
+ margin-top: 40px;
|
|
|
+ }
|
|
|
+ .ManagingUsers3 {
|
|
|
+ margin-top: 40px;
|
|
|
+ }
|
|
|
+ }
|
|
|
+</style>
|