去掉this.$set语法(语法报错),在3.0已废弃,用 proxy 实现双向绑定不会出现不更新的问题

pull/283/head
lss 2021-05-12 17:41:36 +08:00
parent 4dd1b4aae6
commit 8c1b5ce574
1 changed files with 121 additions and 118 deletions

View File

@ -1,123 +1,123 @@
<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" @click="delAllSelection"
>批量删除</el-button> >批量删除</el-button>
<el-select v-model="query.address" placeholder="地址" class="handle-select mr10"> <el-select v-model="query.address" placeholder="地址" class="handle-select mr10">
<el-option key="1" label="广东省" value="广东省"></el-option> <el-option key="1" label="广东省" value="广东省"></el-option>
<el-option key="2" label="湖南省" value="湖南省"></el-option> <el-option key="2" label="湖南省" value="湖南省"></el-option>
</el-select> </el-select>
<el-input v-model="query.name" placeholder="用户名" class="handle-input mr10"></el-input> <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> <el-button type="primary" icon="el-icon-search" @click="handleSearch"></el-button>
</div> </div>
<el-table <el-table
:data="tableData" :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" width="55" align="center"></el-table-column> <el-table-column type="selection" width="55" align="center"></el-table-column>
<el-table-column prop="id" label="ID" width="55" align="center"></el-table-column> <el-table-column prop="id" label="ID" width="55" align="center"></el-table-column>
<el-table-column prop="name" label="用户名"></el-table-column> <el-table-column prop="name" label="用户名"></el-table-column>
<el-table-column label="账户余额"> <el-table-column label="账户余额">
<template #default="scope">{{ scope.row.money }}</template> <template #default="scope">{{ scope.row.money }}</template>
</el-table-column> </el-table-column>
<el-table-column label="头像(查看大图)" align="center"> <el-table-column label="头像(查看大图)" align="center">
<template #default="scope"> <template #default="scope">
<el-image <el-image
class="table-td-thumb" class="table-td-thumb"
:src="scope.row.thumb" :src="scope.row.thumb"
:preview-src-list="[scope.row.thumb]" :preview-src-list="[scope.row.thumb]"
></el-image> ></el-image>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column prop="address" label="地址"></el-table-column> <el-table-column prop="address" label="地址"></el-table-column>
<el-table-column label="状态" align="center"> <el-table-column label="状态" align="center">
<template #default="scope"> <template #default="scope">
<el-tag <el-tag
:type=" :type="
scope.row.state === '成功' scope.row.state === '成功'
? 'success' ? 'success'
: scope.row.state === '失败' : scope.row.state === '失败'
? 'danger' ? 'danger'
: '' : ''
" "
>{{ scope.row.state }}</el-tag> >{{ scope.row.state }}</el-tag>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column prop="date" label="注册时间"></el-table-column> <el-table-column prop="date" label="注册时间"></el-table-column>
<el-table-column label="操作" width="180" align="center"> <el-table-column label="操作" width="180" align="center">
<template #default="scope"> <template #default="scope">
<el-button <el-button
type="text" type="text"
icon="el-icon-edit" icon="el-icon-edit"
@click="handleEdit(scope.$index, scope.row)" @click="handleEdit(scope.$index, scope.row)"
>编辑</el-button> >编辑</el-button>
<el-button <el-button
type="text" 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 <el-pagination
background background
layout="total, prev, pager, next" layout="total, prev, pager, next"
:current-page="query.pageIndex" :current-page="query.pageIndex"
:page-size="query.pageSize" :page-size="query.pageSize"
:total="pageTotal" :total="pageTotal"
@current-change="handlePageChange" @current-change="handlePageChange"
></el-pagination> ></el-pagination>
</div> </div>
</div> </div>
<!-- 编辑弹出框 --> <!-- 编辑弹出框 -->
<el-dialog title="编辑" v-model="editVisible" width="30%"> <el-dialog title="编辑" v-model="editVisible" width="30%">
<el-form ref="form" :model="form" label-width="70px"> <el-form ref="form" :model="form" label-width="70px">
<el-form-item label="用户名"> <el-form-item label="用户名">
<el-input v-model="form.name"></el-input> <el-input v-model="form.name"></el-input>
</el-form-item> </el-form-item>
<el-form-item label="地址"> <el-form-item label="地址">
<el-input v-model="form.address"></el-input> <el-input v-model="form.address"></el-input>
</el-form-item> </el-form-item>
</el-form> </el-form>
<template #footer> <template #footer>
<span class="dialog-footer"> <span class="dialog-footer">
<el-button @click="editVisible = false"> </el-button> <el-button @click="editVisible = false"> </el-button>
<el-button type="primary" @click="saveEdit"> </el-button> <el-button type="primary" @click="saveEdit"> </el-button>
</span> </span>
</template> </template>
</el-dialog> </el-dialog>
</div> </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
}, },
@ -145,17 +145,18 @@ export default {
}, },
// //
handleSearch() { handleSearch() {
this.$set(this.query, "pageIndex", 1); // this.$set(this.query, "pageIndex", 1); // this.$set3.0 proxy
this.query.pageIndex = 1;
this.getData(); this.getData();
}, },
// //
handleDelete(index) { handleDelete(index) {
// //
this.$confirm("确定要删除吗?", "提示", { this.$confirm('确定要删除吗?', '提示', {
type: "warning" type: 'warning'
}) })
.then(() => { .then(() => {
this.$message.success("删除成功"); this.$message.success('删除成功');
this.tableData.splice(index, 1); this.tableData.splice(index, 1);
}) })
.catch(() => {}); .catch(() => {});
@ -166,10 +167,10 @@ export default {
}, },
delAllSelection() { delAllSelection() {
const length = this.multipleSelection.length; const length = this.multipleSelection.length;
let str = ""; let str = '';
this.delList = this.delList.concat(this.multipleSelection); this.delList = this.delList.concat(this.multipleSelection);
for (let i = 0; i < length; i++) { for (let i = 0; i < length; i++) {
str += this.multipleSelection[i].name + " "; str += this.multipleSelection[i].name + ' ';
} }
this.$message.error(`删除了${str}`); this.$message.error(`删除了${str}`);
this.multipleSelection = []; this.multipleSelection = [];
@ -184,11 +185,13 @@ export default {
saveEdit() { saveEdit() {
this.editVisible = false; this.editVisible = false;
this.$message.success(`修改第 ${this.idx + 1} 行成功`); this.$message.success(`修改第 ${this.idx + 1} 行成功`);
this.$set(this.tableData, this.idx, this.form); // this.$set(this.tableData, this.idx, this.form);
this.tableData[this.idx] = this.form;
}, },
// //
handlePageChange(val) { handlePageChange(val) {
this.$set(this.query, "pageIndex", val); // this.$set(this.query, "pageIndex", val);
this.query.pageIndex = val;
this.getData(); this.getData();
} }
} }