/* 表单输入 */ formListInput: function (e) { var that = this; var editor_info = that.data.editor_info; var form_list = that.data.form_list; var height = e.detail.height; var index = e.currentTarget.dataset.index; editor_info['height'] = height; form_list[index]['value'] = e.detail.value; that.setData({ editor_info: editor_info, form_list: form_list }) },