基础表格,批量删除功能完善。

pull/244/head
james 2020-05-17 17:06:43 +08:00
parent 31f40a5e15
commit ae3da0b456
1 changed files with 191 additions and 170 deletions

View File

@ -1,189 +1,210 @@
<template> <template>
<div> <div>
<div class="crumbs"> <div class="crumbs">
<el-breadcrumb separator="/"> <el-breadcrumb separator="/">
<el-breadcrumb-item> <el-breadcrumb-item>
<i class="el-icon-lx-cascades"></i> 基础表格 <i class="el-icon-lx-cascades"></i> 基础表格
</el-breadcrumb-item> </el-breadcrumb-item>
</el-breadcrumb> </el-breadcrumb>
</div> </div>
<div class="container"> <div class="container">
<div class="handle-box"> <div class="handle-box">
<el-button <el-button type="primary"
type="primary" icon="el-icon-delete"
icon="el-icon-delete" class="handle-del mr10"
class="handle-del mr10" @click="delAllSelection">批量删除</el-button>
@click="delAllSelection" <el-select v-model="query.address"
>批量删除</el-button> placeholder="地址"
<el-select v-model="query.address" placeholder="地址" class="handle-select mr10"> class="handle-select mr10">
<el-option key="1" label="广东省" value="广东省"></el-option> <el-option key="1"
<el-option key="2" label="湖南省" value="湖南省"></el-option> label="广东省"
</el-select> value="广东省"></el-option>
<el-input v-model="query.name" placeholder="用户名" class="handle-input mr10"></el-input> <el-option key="2"
<el-button type="primary" icon="el-icon-search" @click="handleSearch"></el-button> label="湖南省"
</div> value="湖南省"></el-option>
<el-table </el-select>
:data="tableData" <el-input v-model="query.name"
placeholder="用户名"
class="handle-input mr10"></el-input>
<el-button type="primary"
icon="el-icon-search"
@click="handleSearch">搜索</el-button>
</div>
<el-table :data="tableData"
border border
class="table" class="table"
ref="multipleTable" ref="multipleTable"
header-cell-class-name="table-header" header-cell-class-name="table-header"
@selection-change="handleSelectionChange" @selection-change="handleSelectionChange">
> <el-table-column type="selection"
<el-table-column type="selection" width="55" align="center"></el-table-column> width="55"
<el-table-column prop="id" label="ID" width="55" align="center"></el-table-column> align="center"></el-table-column>
<el-table-column prop="name" label="用户名"></el-table-column> <el-table-column prop="id"
<el-table-column label="账户余额"> label="ID"
<template slot-scope="scope">{{scope.row.money}}</template> width="55"
</el-table-column> align="center"></el-table-column>
<el-table-column label="头像(查看大图)" align="center"> <el-table-column prop="name"
<template slot-scope="scope"> label="用户名"></el-table-column>
<el-image <el-table-column label="账户余额">
class="table-td-thumb" <template slot-scope="scope">{{scope.row.money}}</template>
:src="scope.row.thumb" </el-table-column>
:preview-src-list="[scope.row.thumb]" <el-table-column label="头像(查看大图)"
></el-image> align="center">
</template> <template slot-scope="scope">
</el-table-column> <el-image class="table-td-thumb"
<el-table-column prop="address" label="地址"></el-table-column> :src="scope.row.thumb"
<el-table-column label="状态" align="center"> :preview-src-list="[scope.row.thumb]"></el-image>
<template slot-scope="scope"> </template>
<el-tag </el-table-column>
:type="scope.row.state==='成功'?'success':(scope.row.state==='失败'?'danger':'')" <el-table-column prop="address"
>{{scope.row.state}}</el-tag> label="地址"></el-table-column>
</template> <el-table-column label="状态"
</el-table-column> align="center">
<template slot-scope="scope">
<el-tag :type="scope.row.state==='成功'?'success':(scope.row.state==='失败'?'danger':'')">{{scope.row.state}}</el-tag>
</template>
</el-table-column>
<el-table-column prop="date" label="注册时间"></el-table-column> <el-table-column prop="date"
<el-table-column label="操作" width="180" align="center"> label="注册时间"></el-table-column>
<template slot-scope="scope"> <el-table-column label="操作"
<el-button width="180"
type="text" align="center">
icon="el-icon-edit" <template slot-scope="scope">
@click="handleEdit(scope.$index, scope.row)" <el-button type="text"
>编辑</el-button> icon="el-icon-edit"
<el-button @click="handleEdit(scope.$index, scope.row)">编辑</el-button>
type="text" <el-button type="text"
icon="el-icon-delete" icon="el-icon-delete"
class="red" class="red"
@click="handleDelete(scope.$index, scope.row)" @click="handleDelete(scope.$index, scope.row)">删除</el-button>
>删除</el-button> </template>
</template> </el-table-column>
</el-table-column> </el-table>
</el-table> <div class="pagination">
<div class="pagination"> <el-pagination background
<el-pagination layout="total, prev, pager, next"
background :current-page="query.pageIndex"
layout="total, prev, pager, next" :page-size="query.pageSize"
:current-page="query.pageIndex" :total="pageTotal"
:page-size="query.pageSize" @current-change="handlePageChange"></el-pagination>
:total="pageTotal" </div>
@current-change="handlePageChange"
></el-pagination>
</div>
</div>
<!-- 编辑弹出框 -->
<el-dialog title="编辑" :visible.sync="editVisible" width="30%">
<el-form ref="form" :model="form" label-width="70px">
<el-form-item label="用户名">
<el-input v-model="form.name"></el-input>
</el-form-item>
<el-form-item label="地址">
<el-input v-model="form.address"></el-input>
</el-form-item>
</el-form>
<span slot="footer" class="dialog-footer">
<el-button @click="editVisible = false"> </el-button>
<el-button type="primary" @click="saveEdit"> </el-button>
</span>
</el-dialog>
</div> </div>
<!-- 编辑弹出框 -->
<el-dialog title="编辑"
:visible.sync="editVisible"
width="30%">
<el-form ref="form"
:model="form"
label-width="70px">
<el-form-item label="用户名">
<el-input v-model="form.name"></el-input>
</el-form-item>
<el-form-item label="地址">
<el-input v-model="form.address"></el-input>
</el-form-item>
</el-form>
<span slot="footer"
class="dialog-footer">
<el-button @click="editVisible = false"> </el-button>
<el-button type="primary"
@click="saveEdit"> </el-button>
</span>
</el-dialog>
</div>
</template> </template>
<script> <script>
import { fetchData } from '../../api/index'; import { fetchData } from '../../api/index';
export default { export default {
name: 'basetable', name: 'basetable',
data() { data () {
return { return {
query: { query: {
address: '', address: '',
name: '', name: '',
pageIndex: 1, pageIndex: 1,
pageSize: 10 pageSize: 10
}, },
tableData: [], tableData: [],
multipleSelection: [], multipleSelection: [],
delList: [], delList: [],
editVisible: false, editVisible: false,
pageTotal: 0, pageTotal: 0,
form: {}, form: {},
idx: -1, idx: -1,
id: -1 id: -1
}; };
},
created () {
this.getData();
},
methods: {
// easy-mock
getData () {
fetchData(this.query).then(res => {
console.log(res);
this.tableData = res.list;
this.pageTotal = res.pageTotal || 50;
});
}, },
created() { //
this.getData(); handleSearch () {
this.$set(this.query, 'pageIndex', 1);
this.getData();
}, },
methods: { //
// easy-mock handleDelete (index, row) {
getData() { //
fetchData(this.query).then(res => { this.$confirm('确定要删除吗?', '提示', {
console.log(res); type: 'warning'
this.tableData = res.list; })
this.pageTotal = res.pageTotal || 50; .then(() => {
}); this.$message.success('删除成功');
}, this.tableData.splice(index, 1);
// })
handleSearch() { .catch(() => { });
this.$set(this.query, 'pageIndex', 1); },
this.getData(); //
}, handleSelectionChange (val) {
// this.multipleSelection = val;
handleDelete(index, row) { },
// delAllSelection () {
this.$confirm('确定要删除吗?', '提示', { const length = this.multipleSelection.length;
type: 'warning' let str = '';
}) this.delList = this.delList.concat(this.multipleSelection);
.then(() => { //tableData
this.$message.success('删除成功'); for (let i = 0; i < this.tableData.length; i++) {
this.tableData.splice(index, 1); for (let j = 0; j < length; j++) {
}) if (this.tableData[i] == this.multipleSelection[j]) {
.catch(() => {}); this.tableData.splice(i, 1);
}, str += this.multipleSelection[j].name + ' ';
// }
handleSelectionChange(val) {
this.multipleSelection = val;
},
delAllSelection() {
const length = this.multipleSelection.length;
let str = '';
this.delList = this.delList.concat(this.multipleSelection);
for (let i = 0; i < length; i++) {
str += this.multipleSelection[i].name + ' ';
}
this.$message.error(`删除了${str}`);
this.multipleSelection = [];
},
//
handleEdit(index, row) {
this.idx = index;
this.form = row;
this.editVisible = true;
},
//
saveEdit() {
this.editVisible = false;
this.$message.success(`修改第 ${this.idx + 1} 行成功`);
this.$set(this.tableData, this.idx, this.form);
},
//
handlePageChange(val) {
this.$set(this.query, 'pageIndex', val);
this.getData();
} }
}
let errMessage = str.length == 0 ? '请勾选删除ID' : `删除了${str}`
this.$message.success(errMessage)
this.multipleSelection = [];
},
//
handleEdit (index, row) {
this.idx = index;
this.form = row;
this.editVisible = true;
},
//
saveEdit () {
this.editVisible = false;
this.$message.success(`修改第 ${this.idx + 1} 行成功`);
this.$set(this.tableData, this.idx, this.form);
},
//
handlePageChange (val) {
this.$set(this.query, 'pageIndex', val);
this.getData();
} }
}
}; };
</script> </script>