import { ApiModel } from "../../utils/api"; const _Http = new ApiModel(); import { TestVerify } from "../../utils/verify"; const _Verify = new TestVerify(); Page({ /** * 页面的初始数据 */ data: { isDisabled: false, //是否禁用 butText: "保存", //按钮文字 popups: false, //弹出层控制 /* */ fbrand: "", //品牌名称 attinfos: [], // 图片列表 coverAttinfos: [], //品牌展示图 isLogo: [], //用于判断是否上传logo saleprodclass: [], //经营类目 showSaleprodclass: "", //显示经营类目 fcontact: "", //联系人 fphonenumber: "", //联系方式 fagentname: "", //商户名称 fintroduction: "", //商户介绍 faddress: "", //地址 fdutyparagraph: "", //统一社会代码 requestType: "普通修改", //请求类型 /* */ errTips: { fbrand: false, attinfos: false, saleprodclass: false, fcontact: false, fphonenumber: false, fagentname: false, fintroduction: false, faddress: false, } }, /* input事件剔除特殊字符 */ eliminate(value) { const { name } = value.target.dataset; this.setData({ [name]: _Verify.Eliminate(value.detail) }) }, /** * 生命周期函数--监听页面加载 */ onLoad: function (options) { // 判断主子账号 是否禁用 this.setData({ isDisabled: (wx.getStorageSync('userData').fisadministrator == 1) ? false : true }); //判断进入方式 if (options.data == null) { console.log("注册进入") this.setData({ requestType: "商户认证" }) } else if (options.data == 1) { wx.showToast({ title: '商户信息审核中', icon: 'none', duration: 5000 }); this.setData({ requestType: "商户认证", isDisabled: true }) } else { //处理数据 const data = JSON.parse(options.data); this.returnData(data) } }, //跳转富文本 toRichText() { const that = this; const fintroduction = encodeURIComponent(this.data.fintroduction); wx.navigateTo({ url: './editor/editor?fintroduction=' + fintroduction, events: { richTextCallBack: function (richText) { that.setData({ fintroduction: richText.richText, 'errTips.fintroduction': false }) } } }) }, /* 添加图片 */ imageChange(data) { this.setData({ attinfos: data.detail.fileList }) }, coverImageChange(data) { this.setData({ coverAttinfos: data.detail.fileList }) }, /* 选择类目回调 */ saleprodChange(arr) { let detail = arr.detail, showSaleprodclass = ""; for (let i = 0; i < detail.length; i++) { showSaleprodclass += (detail[i] + ','); }; this.setData({ popups: false, saleprodclass: detail, showSaleprodclass: showSaleprodclass.slice(0, showSaleprodclass.length - 1) }) }, /* 返回数据 */ returnData(data) { console.log(data) var attinfos = [], coverAttinfos = []; // 格式化图片 for (let i = 0; i < data.attinfos.length; i++) { const Data = { url: data.attinfos[i].fobsurl, ownerid: data.attinfos[i].ownerid, tattachmentid: data.attinfos[i].tattachmentid, ownertable: data.attinfos[i].ownertable, fdocument: data.attinfos[i].fdocument }; if (data.attinfos[i].ftype == "brandlogo") { attinfos.unshift(Data) } else if (data.attinfos[i].ftype == "brandcover") { coverAttinfos.unshift(Data) } } //格式化经营类目 if (data.saleprodclass.length >= 1) { this.saleprodChange({ detail: data.saleprodclass }) } //解码富文本 const fintroduction = decodeURIComponent(data.fintroduction); this.setData({ fbrand: data.fbrand, saleprodclass: data.saleprodclass, fcontact: data.fcontact, fphonenumber: data.fphonenumber, fagentname: data.fagentname, faddress: data.faddress, fdutyparagraph: data.fdutyparagraph, attinfos, coverAttinfos, fintroduction }) }, /* 提交数据 */ submit() { if (!this.formVerify()) return wx.showToast({ title: '请检查表单内容', icon: "error" }); if (this.data.attinfos.length < 1) return wx.showToast({ title: '请上传品牌LOGO!', icon: "none" }); if (this.data.coverAttinfos.length < 1) return wx.showToast({ title: '请上传品牌展示图!', icon: "none" }); const that = this; if (this.data.requestType == '普通修改') { wx.showModal({ title: '提示', content: "是否确认修改商户信息", success: (res => { if (res.confirm) { that.requestToSend(); }; }) }) } else { that.requestToSend(); } }, /* 发送请求 */ requestToSend() { _Http.basic({ "accesstoken": wx.getStorageSync('userData').token, "classname": "customer.tagents.tagents", "method": "modify_enterpriseAgent", "content": { "ftype": this.data.requestType, "data": [{ "fbrand": this.data.fbrand, "saleprodclass": this.data.saleprodclass, "fcontact": this.data.fcontact, "fphonenumber": this.data.fphonenumber, "fagentname": this.data.fagentname, "fintroduction": this.data.fintroduction, "faddress": this.data.faddress, "fdutyparagraph": this.data.fdutyparagraph, }] } }).then(res => { if (res.msg != '成功') return wx.showToast({ title: res.data, }) wx.showToast({ title: '提交成功', }); setTimeout(() => { wx.navigateBack({ delta: 1, }) }, 500) }) }, /* 表单验证 */ formVerify() { let errTips = this.data.errTips, verify = true; /* 验证品牌名 */ if (!_Verify.required(this.data.fbrand)) { errTips.fbrand = true; verify = false; } /* 验证经营类目 */ if (!_Verify.required(this.data.showSaleprodclass)) { errTips.saleprodclass = true; verify = false; } /* 验证联系人 */ if (!_Verify.required(this.data.fcontact)) { errTips.fcontact = true; verify = false; } /* 验证联系方式 */ if (!_Verify.phoneNumber(this.data.fphonenumber)) { errTips.fphonenumber = true; verify = false; } /* 验证商户名称 */ if (!_Verify.required(this.data.fagentname)) { errTips.fagentname = true; verify = false; } /* 验证商户介绍 */ if (!_Verify.required(this.data.fintroduction)) { errTips.fintroduction = true; verify = false; } /* 验证商户介绍 */ if (this.data.fintroduction == '