123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151 |
- // pages/store/edit1.js
- const utils = require('../../utils/util')
- const form = require('../../utils/formValidation')
- const util = require('../../utils/util.js');
- const app = getApp();
- Page({
- /**
- * 页面的初始数据
- */
- data: {
- id:'',
- user: {
- realname:'',
- password:'',
- agentPhone:''
- }
- },
- /**
- * 生命周期函数--监听页面加载
- */
- onLoad: function (options) {
- this.setData({
- id: options.id
- })
- this.bindAgent()
- },
- /**
- * 生命周期函数--监听页面初次渲染完成
- */
- 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: "agentPhone",
- rule: ["required", "isMobile"],
- msg: ["请输入代理手机号", "请输入正确的手机号"]
- }];
- //进行表单检查
- let formData = e.detail.value;
- let checkRes = form.validation(formData, rules);
- if (!checkRes) {
- var that = this
- util.request(util.api.agentEdit, that.data.user, "PUT", false, true,app.globalData.token).then((res)=>{
- if (res.code == 200) {
- wx.navigateBack({
- url: '/pages/agent/index',
- })
- }
- }).catch((res) => {})
- // wx.showToast({
- // title: "验证通过!",
- // icon: "none"
- // });
- } else {
- wx.showToast({
- title: checkRes,
- icon: "none"
- });
- return;
- }
- },
- delete:function(){
- util.request(util.api.agentDelete,{id:this.data.id}, "DELETE", true, true,app.globalData.token).then((res)=>{
- if (res.code == 200) {
- wx.navigateTo({
- url: '/pages/agent/index',
- })
- }
- }).catch((res) => {})
- },
- formReset: function(e) {
- console.log("清空数据")
- },
- bindAgent(){
- var that = this
- util.request(util.api.agentQueryById, {id:that.data.id}, "GET", false, true,app.globalData.token).then((res)=>{
- if (res.code == 200) {
- that.setData({
- user: res.result,
- })
- }
- }).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]
- });
- },
- })
|