123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157 |
- // pages/role/editOperation.js
- const utils = require('../../utils/util')
- const form = require('../../utils/formValidation')
- const util = require('../../utils/util.js');
- const app = getApp();
- Page({
- /**
- * 页面的初始数据
- */
- data: {
- userInfo:{
- username: '',
- realname: '',
- telephone: '',
- password: '',
- },
- userId:''
- },
- /**
- * 生命周期函数--监听页面加载
- */
- onLoad: function (options) {
- this.setData({
- userId: options.userId
- })
- this.bindOperation()
- },
- /**
- * 生命周期函数--监听页面初次渲染完成
- */
- onReady: function () {
- },
- /**
- * 生命周期函数--监听页面显示
- */
- onShow: function () {
- },
- /**
- * 生命周期函数--监听页面隐藏
- */
- onHide: function () {
- },
- /**
- * 生命周期函数--监听页面卸载
- */
- onUnload: function () {
- },
- /**
- * 页面相关事件处理函数--监听用户下拉动作
- */
- onPullDownRefresh: function () {
- },
- /**
- * 页面上拉触底事件的处理函数
- */
- onReachBottom: function () {
- },
- /**
- * 用户点击右上角分享
- */
- onShareAppMessage: function () {
- },
- formSubmit: function(e) {
- //表单规则
- let rules = [{
- name: "realname",
- rule: ["required"], //可使用区间,此处主要测试功能
- msg: ["请输入运维姓名"]
- }, {
- name: "username",
- rule: ["required"],
- msg: ["请输入登录账号"]
- },{
- name: "telephone",
- rule: ["required", "isMobile"],
- msg: ["请输入电话号码", "请输入正确的手机号"]
- }];
- //进行表单检查
- let formData = e.detail.value;
- let checkRes = form.validation(formData, rules);
- if (!checkRes) {
- // wx.showToast({
- // title: "验证通过!",
- // icon: "none"
- // });
- var that = this
- console.log("1111")
- console.log(that.data.userInfo)
- console.log("2222")
- util.request(util.api.editRole, that.data.userInfo, "PUT", false, true,app.globalData.token).then((res)=>{
- if (res.code == 200) {
- wx.navigateTo({
- url: '/pages/role/operationList',
- })
- }
- }).catch((res) => {})
- } else {
- wx.showToast({
- title: checkRes,
- icon: "none"
- });
- return;
- }
- },
- formReset: function(e) {
- console.log("清空数据")
- },
- bindOperation(){
- var that = this
- util.request(util.api.queryByUserId, {id:that.data.userId}, "GET", false, true,app.globalData.token).then((res)=>{
- if (res.code == 200) {
- that.setData({
- userInfo: res.result,
- })
- }
- }).catch((res) => {})
- },
- // editOperation(){
- // var that = this
- // console.log("1111")
- // console.log(that.data.userInfo)
- // console.log("2222")
- // util.request(util.api.editRole, that.data.userInfo, "PUT", false, true,app.globalData.token).then((res)=>{
- // if (res.code == 200) {
- // wx.navigateTo({
- // url: '/pages/role/operationList',
- // })
- // }
- // }).catch((res) => {})
- // },
- inputedit: function (e) {
- let _this = this;
- let dataset = e.currentTarget.dataset;
- let value = e.detail.value;
- let name = dataset.name;
- _this.data[name] = value;
- _this.setData({
- [name]: _this.data[name]
- });
- },
- })
|