当前位置:   article > 正文

使用Uniapp设计简单可编辑表格实现增删查改_uniapp小程序数据表格增删改查实例

uniapp小程序数据表格增删改查实例

uniapp-简单-表格-增删查改

概述:

uniapp + elementui实现一个可以展示数据列表,
查询:顶部搜索框
:新增按钮被点击会新增一行空白可编辑行-点击保存将新增数据提交到后台
:选中数据行,可进入编辑状态,点击保存将数据提交到后台
删除:点击删除直接删除

表格参照使用elementui-table,在此基础上增加可编辑状态
直通车:table

预览效果

总体效果:
在这里插入图片描述

编辑状态下效果:
在这里插入图片描述

前端代码


<template>
	<view class="content">
		
		<view>
			<mSearch  @search="search($event,1)"></mSearch>
		</view>

		<el-table :data="userList" border style="width: 100%" @selection-change="handleSelectionChange" @cell-click="cellClick">
		<el-table-column type="selection" width="55">
		</el-table-column>
		<el-table-column fixed prop="name" label="姓名" width="80">
			<template scope="scope">
				<el-input v-model="scope.row.name" v-show="scope.row.editable" @blur="loseFcous(scope.$index, scope.row)" > </el-input>
				<span style="margin-left: 10px" v-show="!scope.row.editable">{{ scope.row.name }}</span>
			</template>
		</el-table-column>
		<el-table-column prop="account" label="账号" width="120">
			<template scope="scope">
				<el-input v-model="scope.row.account" v-show="scope.row.editable" @blur="loseFcous(scope.$index, scope.row)" > </el-input>
				<span style="margin-left: 10px" v-show="!scope.row.editable">{{ scope.row.account }}</span>
			</template>
		</el-table-column>

		<el-table-column prop="password" label="密码" width="120">
			<template scope="scope">
				<el-input v-model="scope.row.password" v-show="scope.row.editable" @blur="loseFcous(scope.$index, scope.row)" > </el-input>
				<span style="margin-left: 10px" v-show="!scope.row.editable">{{ scope.row.password }}</span>
			</template>
		</el-table-column>
		
		<el-table-column fixed="right" label="操作" width="60">
		  <template slot-scope="scope">
			<el-button @click="handleClick(scope.row)" type="text" size="small">删除</el-button>
		  </template>
		</el-table-column>
		</el-table>

		<el-row>
		  <el-col :span="4"><el-button type="primary" @click="add"><span id="add">新增</span></el-button></div></div></el-col>
		  <el-col :span="4"><div class="grid-content bg-purple" style="visibility: hidden;"></div></div></el-col>
		  <el-col :span="4"><div class="grid-content bg-purple" style="visibility: hidden;"></div></el-col>
		  <el-col :span="4"><div class="grid-content bg-purple" style="visibility: hidden;"></div></el-col>
		  <el-col :span="4"><div class="grid-content bg-purple" style="visibility: hidden;"></div></el-col>
		  <el-col :span="4"><el-button type="success" @click="save">保存</el-button></div></el-col>
		</el-row>
	</view>
</template>

<script>
	import mSearch from '@/components/mehaotian-search/mehaotian-search.vue';

	function initUser(_this){
		console.table(_this.userinfo);
		uni.request({
			url: "/api/user/",
			data:JSON.stringify(_this.userinfo),
			header: {
				'X-Requested-With': 'XMLHttpRequest',
				"Accept": "application/json",
				"Content-Type": "application/json",
			},
			dataType: 'json',
			method:'POST',
			success: (res) => {
				console.table(res);
				if(res.data['code']=='0'){
					_this.userList = res.data.data;
				}else{
					uni.$u.toast('服务器异常,请重新获取');
				}
			},
			error:(res)=>{
				uni.$u.toast('网络异常');
			}
		});
	};
	
	function updateUser(_this,aurl){
		console.table(_this.userinfo);
		uni.request({
			url: aurl,
			data:JSON.stringify(_this.multipleSelection),
			header: {
				'X-Requested-With': 'XMLHttpRequest',
				"Accept": "application/json",
				"Content-Type": "application/json",
			},
			dataType: 'json',
			method:'POST',
			success: (res) => {
				if(res.data['code']=='0'){
					console.info(res.data['msg']);
					_this.addOrEdit = false;
				}else{
					console.error('服务器异常,请重新获取');
				}
			},
			error:(res)=>{
				uni.$u.toast('网络异常');
			}
		});
	};
	
	function delUser(_this,uid){
		console.log(typeof uid)
		console.table(_this.userinfo);
		uni.request({
			url: "/api/user/delete",
			data:{"id":uid},
			header: {
				'X-Requested-With': 'XMLHttpRequest',
				"Accept": "application/json",
				"Content-Type": "application/json",
			},
			dataType: 'json',
			method:'POST',
			success: (res) => {
				if(res.data['code']=='0'){
					console.info(res.data['msg']);
					_this.addOrEdit = false;
				}else{
					console.error('服务器异常,请重新获取');
				}
			},
			error:(res)=>{
				uni.$u.toast('网络异常');
			}
		});
	};
	
	export default {
		data() {
			return {
				userinfo:{
					"name": '',
					"account": '',
					"password": ''
				},
				userList:[],
				multipleSelection:[],
				ifCheck:true,//是否被选中,默认选中
				checkRows: [],//临时被选中行
				addOrEdit: false,//默认修改保存
				
			}
		},
		components: {
			mSearch
		},
		methods:{
			//搜索方法
			search(e, val) {
				this.userinfo.name=e;
				initUser(this);
			},
			//
			handleClick(row){
				delUser(this,row['id']);
				for(var i=0;i<this.userList.length;i++){
					if(this.userList[i]['id']==row['id']){
						this.userList.splice(i,1);
					}
				}
				
			},
			//用来改变状态
			changeRowState(val,ifCheck){
				for(var i=0,l=val.length;i<l;i++){
					val[i].editable=ifCheck;
				}
			},
			//选框是否被点击触发
		    handleSelectionChange(val) {
				//取消选择-->取消编辑
				if(val.length==0){
					this.changeRowState(this.checkRows,false);
				}else{
					//修改为可编辑状态
					this.changeRowState(val,true);
				}

				this.checkRows = val;
				console.log(this.userList)
				this.multipleSelection = val;
		    },
			//新增
			add(){
				this.addOrEdit = true;
				this.userList.push({});
			},
			//保存
			save(){
				if(this.addOrEdit){
					updateUser(this,"/api/user/insert");
				}else{
					updateUser(this,"/api/user/update");
				}
			},
			//编辑框失去焦点
			loseFcous(index, row) {
				row.editable=false;
			},
			//内容框被点击编辑【该方法不太友好,暂时弃用】
			cellClick(row, column) {
				row.editable=true;
			}
		},
		mounted() {
			var _this = this;
			initUser(_this);
		}
			
	}
</script>

<style lang="scss">
    .content {
        .text {
            font-size: 40upx;
            font-weight: bolder;
            text-align: center;
        }

        .addDataBox {
            width: 750upx;
            background-color: #333;
            color: white;

            .group {
                padding: 15upx;
                border: 1upx solid #eee;
                border-radius: 20upx;
                margin: 0 auto;
                margin: 10upx;

                button {
                    margin-left: 20upx;
                }

                input {
                    width: 170upx;
                    height: 60upx;
                    border: 1upx solid #eee;
                }
            }
        }

    }

    .btn-group {
        margin-top: 20upx;
        display: flex;
    }

    .popupWindow {
        background-color: #eee;
        border: 1upx solid #333;
        position: relative;
        top: 10upx;
    }

    .input {
        width: 170upx;
        height: 60upx;
        border: 1upx solid #333;
    }
</style>
<style>
  .el-col {
    border-radius: 4px;
  }
  .bg-purple-dark {
    background: #99a9bf;
  }
  .bg-purple {
    background: #d3dce6;
  }
  .bg-purple-light {
    background: #e5e9f2;
  }
  .grid-content {
    border-radius: 4px;
    min-height: 36px;
  }
</style>

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83
  • 84
  • 85
  • 86
  • 87
  • 88
  • 89
  • 90
  • 91
  • 92
  • 93
  • 94
  • 95
  • 96
  • 97
  • 98
  • 99
  • 100
  • 101
  • 102
  • 103
  • 104
  • 105
  • 106
  • 107
  • 108
  • 109
  • 110
  • 111
  • 112
  • 113
  • 114
  • 115
  • 116
  • 117
  • 118
  • 119
  • 120
  • 121
  • 122
  • 123
  • 124
  • 125
  • 126
  • 127
  • 128
  • 129
  • 130
  • 131
  • 132
  • 133
  • 134
  • 135
  • 136
  • 137
  • 138
  • 139
  • 140
  • 141
  • 142
  • 143
  • 144
  • 145
  • 146
  • 147
  • 148
  • 149
  • 150
  • 151
  • 152
  • 153
  • 154
  • 155
  • 156
  • 157
  • 158
  • 159
  • 160
  • 161
  • 162
  • 163
  • 164
  • 165
  • 166
  • 167
  • 168
  • 169
  • 170
  • 171
  • 172
  • 173
  • 174
  • 175
  • 176
  • 177
  • 178
  • 179
  • 180
  • 181
  • 182
  • 183
  • 184
  • 185
  • 186
  • 187
  • 188
  • 189
  • 190
  • 191
  • 192
  • 193
  • 194
  • 195
  • 196
  • 197
  • 198
  • 199
  • 200
  • 201
  • 202
  • 203
  • 204
  • 205
  • 206
  • 207
  • 208
  • 209
  • 210
  • 211
  • 212
  • 213
  • 214
  • 215
  • 216
  • 217
  • 218
  • 219
  • 220
  • 221
  • 222
  • 223
  • 224
  • 225
  • 226
  • 227
  • 228
  • 229
  • 230
  • 231
  • 232
  • 233
  • 234
  • 235
  • 236
  • 237
  • 238
  • 239
  • 240
  • 241
  • 242
  • 243
  • 244
  • 245
  • 246
  • 247
  • 248
  • 249
  • 250
  • 251
  • 252
  • 253
  • 254
  • 255
  • 256
  • 257
  • 258
  • 259
  • 260
  • 261
  • 262
  • 263
  • 264
  • 265
  • 266
  • 267
  • 268
  • 269
  • 270
  • 271
  • 272
  • 273
  • 274
  • 275
  • 276
  • 277
  • 278
  • 279
  • 280
  • 281
  • 282
  • 283
  • 284
  • 285
  • 286
  • 287

后台数据为测试数据,一个简单user–>json数据,这里就不放了

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/羊村懒王/article/detail/264033
推荐阅读
相关标签