作者:生活更美好YE | 来源:互联网 | 2023-08-09 10:12
一、模糊查询
使用
或使用
二、页面带参数跳转
在前一个页面:
uni.redirectTo({url:'./user_update?id='+ id})
后一个页面:
使用onLoad接收,在页面跳转时运行
onLoad:function(res){this.id = res.id
}
或
onLoad(options) {options.id}
三、如何修改中文乱码问题
在yml文件中的jdbc中url上添加&characterEncoding=utf-8&useSSL=false
url: jdbc:mysql://39.107.35.145:3306/rz_cms?serverTimezone=UTC&characterEncoding=utf-8&useSSL=false
四、用户添加
手机号昵称
五、用户修改
手机号:昵称:
六、table多选回显
this.$refs.roletable.toggleRowSelection(j,true)
j:对应的行的序号
true:selected的值(true代表选中,默认值为false
七、搜索栏
<--&#64;input 数据输入&#xff1b;&#64;confirm 回车 &#xff1b;&#64;cancel 点击取消按钮 &#xff1b;&#64;clear 点击输入框最后的x号-->
clear(){this.getUserList()
},
cancel(){this.getUserList()
},
input(e){},
confirm(res) {uni.request({url:&#39;http://localhost:8070/auth/user/getUser/&#39;&#43;res.value,success: (res) &#61;> {this.userList &#61; res.data.datathis.total &#61; res.data.rows}})
},