| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749 |
- define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefined, Backend, Table, Form) {
- var Controller = {
- index : function () {
- // 初始化表格参数配置
- Table.api.init();
- //绑定事件
- $('a[data-toggle="tab"]').on('shown.bs.tab', function (e) {
- var panel = $($(this).attr("href"));
- if (panel.length > 0) {
- Controller.table[panel.attr("id")].call(this);
- $(this).on('click', function (e) {
- $($(this).attr("href")).find(".btn-refresh").trigger("click");
- });
- }
- //移除绑定的事件
- $(this).unbind('shown.bs.tab');
- });
- //必须默认触发shown.bs.tab事件
- $('ul.nav-tabs li.active a[data-toggle="tab"]').trigger("shown.bs.tab");
- $(document).on('click', '.show-detail', function (data) {
- var area = [$(window).width() > 1200 ? '1200px' : '95%', $(window).height() > 800 ? '800px' : '95%'];
- var options = {
- shadeClose : false,
- shade : [0.3, '#393D49'],
- area : area,
- callback : function (value) {
- //在回调函数里可以调用你的业务代码实现前端的各种逻辑和效果
- console.log(value);
- }
- };
- Fast.api.open($.fn.bootstrapTable.defaults.extend.detail_url + "?ids=" + $(this).data('id'), '联系人详情', options);
- }).on('click', '.show-customer', function (data) {
- var area = [$(window).width() > 1200 ? '1200px' : '95%', $(window).height() > 800 ? '800px' : '95%'];
- var options = {
- shadeClose : false,
- shade : [0.3, '#393D49'],
- area : area,
- callback : function (value) {
- //在回调函数里可以调用你的业务代码实现前端的各种逻辑和效果
- console.log(value);
- }
- };
- Fast.api.open($.fn.bootstrapTable.defaults.extend.customer_url + "?ids=" + $(this).data('id'), '客户详情', options);
- }).on('click','.btn-send-email',function () {
- var tab_id=$('.active.in').attr('id');
- var table;
- switch (tab_id){
- case 'first'://全部
- table=$('#table');
- break;
- case 'second'://我负责的
- table=$('#table1');
- break;
- case 'third'://下属负责的
- table=$('#table2');
- break;
- case 'four'://今日待跟进
- table=$('#table3');
- break;
- case 'five'://今日已跟进
- table=$('#table4');
- break;
- case 'six'://从未跟进的
- table=$('#table5');
- break;
- }
- //在templateView的模式下不能调用table.bootstrapTable('getSelections')来获取选中的ID,只能通过下面的Table.api.selectedids来获取
- if(Table.api.selectedids(table).length == 0){
- layer.alert('请选择要选中的客户!');
- return false;
- }
- var $this=$(this);
- var ids=JSON.stringify(Table.api.selectedids(table));
- var url=$this.data('url'),title=$this.data('title'),types=$this.data('types');
- Fast.api.open(url+"?ids="+ids+"&type="+types, title,{
- shadeClose: false,
- shade: false,
- maxmin: false,
- moveOut: false,
- scrollbars:false,
- 'area':[
- $(window).width() > 800 ? '600px' : '400px',
- $(window).height() > 600 ? '500px' : '400px'
- ],
- callback:function(value){
- Form.events.plupload("#plupload-local");
- // 在这里可以接收弹出层中使用`Fast.api.close(data)`进行回传数据
- },
- });
- }).on('click','.btn-send-sms',function () {
- var tab_id=$('.active.in').attr('id');
- var table;
- switch (tab_id){
- case 'first'://全部
- table=$('#table');
- break;
- case 'second'://我负责的
- table=$('#table1');
- break;
- case 'third'://下属负责的
- table=$('#table2');
- break;
- case 'four'://今日待跟进
- table=$('#table3');
- break;
- case 'five'://今日已跟进
- table=$('#table4');
- break;
- case 'six'://从未跟进的
- table=$('#table5');
- break;
- }
- //在templateView的模式下不能调用table.bootstrapTable('getSelections')来获取选中的ID,只能通过下面的Table.api.selectedids来获取
- if(Table.api.selectedids(table).length == 0){
- layer.alert('请选择要选中的客户!');
- return false;
- }
- var $this=$(this);
- var ids=JSON.stringify(Table.api.selectedids(table));
- var url=$this.data('url'),title=$this.data('title'),types=$this.data('types');
- Fast.api.open(url+"?ids="+ids+"&type="+types, title,{
- shadeClose: false,
- shade: false,
- maxmin: false,
- moveOut: false,
- scrollbars:false,
- 'area':[
- $(window).width() > 800 ? '600px' : '400px',
- $(window).height() > 600 ? '500px' : '400px'
- ],
- callback:function(value){
- Form.events.plupload("#plupload-local");
- // 在这里可以接收弹出层中使用`Fast.api.close(data)`进行回传数据
- },
- });
- }).on("click", ".btn-export", function () {
- var tab_id=$('.active.in').attr('id');
- var table,type;
- switch (tab_id){
- case 'first'://全部
- table=$('#table');
- type=0;
- break;
- case 'second'://我负责的
- table=$('#table1');
- type=1;
- break;
- case 'third'://下属负责的
- table=$('#table2');
- type=2;
- break;
- case 'four'://今日待跟进
- table=$('#table3');
- type=3;
- break;
- case 'five'://今日已跟进
- table=$('#table4');
- type=4;
- break;
- case 'six'://从未跟进的
- table=$('#table5');
- type=5;
- break;
- }
- var ids = Table.api.selectedids(table);
- var page = table.bootstrapTable('getData');
- var options = table.bootstrapTable('getOptions');
- var params=options.queryParams({});
- var all = options.totalRows;
- var sort = options.sortName+' '+options.sortOrder;
- var filter = params.filter;
- var op = params.op;
- Layer.confirm("请选择导出的选项", {
- title : '导出数据',
- btn : ["选中项(" + ids.length + "条)", "本页(" + page.length + "条)", "全部(" + all + "条)"],
- success : function (layero, index) {
- $(".layui-layer-btn a", layero).addClass("layui-layer-btn0");
- }, yes : function (index, layero) {
- if (ids.length == 0) {
- Layer.alert('数据为空');
- return true;
- }
- $.post('qingdong/customer/contacts/export', {sort:sort,ids : ids.join(","), isall : 1}, function (res) {
- if(res.code == 1){
- Layer.alert(res.msg);
- window.location.href = res.data.filePath;
- Layer.close(index);
- table.bootstrapTable('refresh');
- }else{
- Layer.alert(res.msg);
- }
- }, 'json');
- return false;
- },
- btn2 : function (index, layero) {
- if (page.length == 0) {
- Layer.alert('数据为空');
- return true;
- }
- var ids = [];
- $.each(page, function (i, j) {
- ids.push(j.id);
- });
- $.post('qingdong/customer/contacts/export', {sort:sort,ids : ids.join(","), isall : 2}, function (res) {
- if(res.code == 1){
- Layer.alert(res.msg);
- window.location.href = res.data.filePath;
- Layer.close(index);
- table.bootstrapTable('refresh');
- }else{
- Layer.alert(res.msg);
- }
- }, 'json');
- return false;
- },
- btn3 : function (index, layero) {
- if (page.length == 0) {
- Layer.alert('数据为空');
- return true;
- }
- $.post('qingdong/customer/contacts/export?filter='+filter+'&op='+op, {sort:sort,ids : ids.join(","), isall : 3,type:type}, function (res) {
- if(res.code == 1){
- Layer.alert(res.msg);
- window.location.href = res.data.filePath;
- Layer.close(index);
- table.bootstrapTable('refresh');
- }else{
- Layer.alert(res.msg);
- }
- }, 'json');
- return false;
- }
- })
- }).on('click','.btn-imports',function () {
- Fast.api.open("qingdong/customer/contacts/import", "联系人导入",{
- shadeClose: false,
- shade: false,
- maxmin: false,
- moveOut: false,
- scrollbars:false,
- 'area':[
- $(window).width() > 800 ? '600px' : '400px',
- $(window).height() > 600 ? '500px' : '400px'
- ],
- callback:function(value){
- Form.events.plupload("#plupload-local");
- // 在这里可以接收弹出层中使用`Fast.api.close(data)`进行回传数据
- },
- });
- });
- },
- tableinfo:{
- url : '',
- toolbar: '#toolbar',
- pk : 'id',
- sortName : 'id',
- fixedColumns : true,
- fixedNumber : 2,
- fixedRightNumber : 1,
- search:false,
- searchFormVisible:true,
- columns : [
- [
- {checkbox : true},
- {
- field : 'name', title : '姓名', fixedColumns : true, formatter : function (value, row, index) {
- if(value ==''){
- value = '无';
- }
- return "<a href='javascript:void(0);' data-id='" + row.id + "' class='show-detail'>" + value + "</a>";
- }
- },
- {
- field : 'customer', title : '所属客户', fixedColumns : true, formatter : function (value, row, index) {
- if(row.customer){
- return "<a href='javascript:void(0);' data-id='" + row.customer_id + "' class='show-customer'>" + row.customer.name + "</a>";
- }else{
- return row.customer_id;
- }
- },operate:false
- },
- {field : 'customer_id', title : '客户名称', visible: false, addClass: "selectpage", extend: "data-source='qingdong/customer/customer/index' data-field='name'"},
- {field : 'subname', title : '尊称',operate:'like'},
- {field : 'mobile', title : '手机',operate:'like'},
- {field : 'email', title : '邮箱',operate:'like'},
- {field : 'role', title : '角色',operate:false},
- {field : 'post', title : '职务',operate:false},
- {field : 'address', title : '地址',operate:false},
- {field : 'next_time', title : '下次联系时间',operate:false},
- {field : 'remarks', title : '备注信息',operate:false},
- {field : 'owner_staff.name', title : '归属人',operate:false},
- {field : 'createtime', title : '创建时间',formatter: Table.api.formatter.datetime,operate:false},
- {field : 'updatetime', title : '更新时间',formatter: Table.api.formatter.datetime,operate:false},
- {
- field: 'operate2', title: __('Operate'), events: {
- 'click .btn-chooseone': function (e, value, row, index) {
- Fast.api.close({id: row.id, name: row.name});
- },
- }, formatter: function () {
- return '<a href="javascript:;" class="btn btn-danger btn-chooseone btn-xs"><i class="fa fa-check"></i> ' + __('Choose') + '</a>';
- }
- },
- {field: 'operate', title: __('Operate'), events: Table.api.events.operate, formatter: Table.api.formatter.buttons,
- buttons: [
- {
- name: 'detail',
- text: __('跟进'),
- title: __('跟进'),
- extend:'data-area=["80%","80%"]',
- classname: 'records btn-dialog',
- url: 'qingdong/customer/record/add/relation_type/2',
- visible: function (row) {
- //返回true时按钮显示,返回false隐藏
- return true;
- }
- },
- ]
- },
- ]
- ],
- onLoadSuccess:function(){
- // 这里就是数据渲染结束后的回调函数
- $(".btn-add").data("area",["80%","80%"]);
- $(".btn-edit").data("area",["80%","80%"]);
- }
- },
- table: {
- first: function () {
- // 初始化表格参数配置
- Table.api.init({
- extend : {
- add_url : 'qingdong/customer/contacts/add',
- detail_url : 'qingdong/customer/contacts/detail',
- customer_url : 'qingdong/customer/customer/detail',
- table : 'contacts',
- }
- });
- if(Config.fields !='[]'){
- if (Config.fields && Object.keys(Config.fields).length > 0) {
- var fields = JSON.parse(Config.fields);
- var start = Controller.tableinfo.columns[0].length-2;
- for (var i = 0; i < fields.length; i++) {
- if (fields[i].hasOwnProperty('formatter'))
- fields[i].formatter = eval(fields[i].formatter);
- if (fields[i].hasOwnProperty('events'))
- fields[i].events = eval(fields[i].events);
- if (fields[i].hasOwnProperty('searchList'))
- fields[i].searchList = JSON.parse(fields[i].searchList);
- Controller.tableinfo.columns[0].splice(start + i, 0, fields[i]);
- }
- }
- }
- const q = {};
- location.search.replace(/([^?&=]+)=([^&]+)/g,function(_,k,v){q[k]=v});
- var table = $("#table");
- Controller.tableinfo.url=location.href+'&type=0';
- Controller.tableinfo.toolbar='#toolbar';
- Controller.tableinfo.columns[0][Controller.tableinfo.columns[0].length-1].table=table;
- if (q.isselect == 1) {
- Controller.tableinfo.columns[0][Controller.tableinfo.columns[0].length - 1].visible = false;
- } else {
- Controller.tableinfo.columns[0][Controller.tableinfo.columns[0].length - 2].visible = false;
- }
- // 初始化表格
- table.bootstrapTable(Controller.tableinfo);
- // 为表格绑定事件
- Table.api.bindevent(table);
- },
- second: function () {
- // 初始化表格参数配置
- Table.api.init({
- extend : {
- add_url : 'qingdong/customer/contacts/add',
- detail_url : 'qingdong/customer/contacts/detail',
- customer_url : 'qingdong/customer/customer/detail',
- table : 'contacts',
- }
- });
- var table = $("#table1");
- Controller.tableinfo.url=location.href+'&type=1';
- Controller.tableinfo.toolbar='#toolbar1';
- Controller.tableinfo.columns[0][Controller.tableinfo.columns[0].length-1].table=table;
- // 初始化表格
- table.bootstrapTable(Controller.tableinfo);
- // 为表格绑定事件
- Table.api.bindevent(table);
- },
- third: function () {
- // 初始化表格参数配置
- Table.api.init({
- extend : {
- add_url : 'qingdong/customer/contacts/add',
- detail_url : 'qingdong/customer/contacts/detail',
- customer_url : 'qingdong/customer/customer/detail',
- table : 'contacts',
- }
- });
- var table = $("#table2");
- Controller.tableinfo.url=location.href+'&type=2';
- Controller.tableinfo.toolbar='#toolbar2';
- Controller.tableinfo.columns[0][Controller.tableinfo.columns[0].length-1].table=table;
- // 初始化表格
- table.bootstrapTable(Controller.tableinfo);
- // 为表格绑定事件
- Table.api.bindevent(table);
- },
- four: function () {
- // 初始化表格参数配置
- Table.api.init({
- extend : {
- add_url : 'qingdong/customer/contacts/add',
- detail_url : 'qingdong/customer/contacts/detail',
- customer_url : 'qingdong/customer/customer/detail',
- table : 'contacts',
- }
- });
- var table = $("#table3");
- Controller.tableinfo.url=location.href+'&type=3';
- Controller.tableinfo.toolbar='#toolbar3';
- Controller.tableinfo.columns[0][Controller.tableinfo.columns[0].length-1].table=table;
- // 初始化表格
- table.bootstrapTable(Controller.tableinfo);
- // 为表格绑定事件
- Table.api.bindevent(table);
- },
- five: function () {
- // 初始化表格参数配置
- Table.api.init({
- extend : {
- add_url : 'qingdong/customer/contacts/add',
- detail_url : 'qingdong/customer/contacts/detail',
- customer_url : 'qingdong/customer/customer/detail',
- table : 'contacts',
- }
- });
- var table = $("#table4");
- Controller.tableinfo.url=location.href+'&type=4';
- Controller.tableinfo.toolbar='#toolbar4';
- Controller.tableinfo.columns[0][Controller.tableinfo.columns[0].length-1].table=table;
- // 初始化表格
- table.bootstrapTable(Controller.tableinfo);
- // 为表格绑定事件
- Table.api.bindevent(table);
- },
- six: function () {
- // 初始化表格参数配置
- Table.api.init({
- extend : {
- add_url : 'qingdong/customer/contacts/add',
- detail_url : 'qingdong/customer/contacts/detail',
- customer_url : 'qingdong/customer/customer/detail',
- table : 'contacts',
- }
- });
- var table = $("#table5");
- Controller.tableinfo.url=location.href+'&type=5';
- Controller.tableinfo.toolbar='#toolbar5';
- Controller.tableinfo.columns[0][Controller.tableinfo.columns[0].length-1].table=table;
- // 初始化表格
- table.bootstrapTable(Controller.tableinfo);
- // 为表格绑定事件
- Table.api.bindevent(table);
- },
- },
- add : function () {
- Controller.api.bindevent();
- },
- edit : function () {
- Form.api.bindevent($("form"), function(data, ret){
- //这里是表单提交处理成功后的回调函数,接收来自php的返回数据
- Fast.api.close(data);//这里是重点
- }, function(data, ret){
- });
- Controller.api.bindevent();
- },
- import : function () {
- Form.api.bindevent($("form[role=form]"), function (data, ret) {
- //这里是表单提交处理成功后的回调函数,接收来自php的返回数据
- Fast.api.close(data);//这里是重点
- }, function (data, ret) {
- Toastr.error(ret.msg);
- return false;
- });
- },
- detail : function () {
- // 初始化表格参数配置
- Table.api.init({});
- //跟进记录
- var table1 = $("#records");
- // 初始化表格
- table1.bootstrapTable({
- url : 'qingdong/customer/record/index?contacts_id='+Config.idinfo.id,
- pk : 'id',
- sortName : 'id',
- operate : false,
- commonSearch : false,
- search : false,
- visible : false,
- showColumns : false,
- showExport : false,
- showToggle : false,
- columns : [
- [
- {field: 'follow_type', title: __('跟进类型')},
- {field: 'follow_time', title: __('跟进时间')},
- {field: 'follow', title: __('跟进状态')},
- {field: 'content', title: __('跟进内容'),cellStyle:function (value,row,index,field) {
- return {
- css: {
- "min-width": "150px",
- "white-space": "nowrap",
- "text-overflow": "ellipsis",
- "overflow": "hidden",
- "max-width":"300px",
- 'cursor':"pointer"
- }
- };
- },formatter:function (value,row,index,field) {
- var span=document.createElement('span');
- span.setAttribute('title',value);
- span.innerHTML = value;
- return span.outerHTML;
- }
- },
- {field: 'next_time', title: __('下次跟进时间')},
- {
- field : 'operate',
- title : __('Operate'),
- table : table1,
- events : Table.api.events.operate,
- formatter : Table.api.formatter.operate,
- buttons : [
- {
- name : '详情',
- text : __('详情'),
- classname : 'records btn-dialog',
- url : 'qingdong/customer/record/detail',
- callback: function (data) {
- $('.btn-success').trigger('click');
- },
- },
- {
- name : '评论',
- text : __('评论'),
- classname : 'records btn-dialog',
- url : 'qingdong/customer/comment/add',
- callback: function (data) {
- $('.btn-success').trigger('click');
- },
- }
- ]
- }
- ]
- ]
- });
- //操作日志
- var table2 = $("#operation_log");
- // 初始化表格
- table2.bootstrapTable({
- url : 'qingdong/customer/log/index?contacts_id='+Config.idinfo.id,
- pk : 'id',
- sortName : 'id',
- operate : false,
- commonSearch : false,
- search : false,
- visible : false,
- showColumns : false,
- showExport : false,
- showToggle : false,
- columns : [
- [
- {field: 'staff.name', title: __('员工')},
- {field: 'content', title: __('内容'),cellStyle:function (value,row,index,field) {
- return {
- css: {
- "min-width": "150px",
- "white-space": "nowrap",
- "text-overflow": "ellipsis",
- "overflow": "hidden",
- "max-width":"300px",
- 'cursor':"pointer"
- }
- };
- },formatter:function (value,row,index,field) {
- var span=document.createElement('span');
- span.setAttribute('title',value);
- span.innerHTML = value;
- return span.outerHTML;
- }
- },
- {field: 'createtime', title: __('Createtime'), operate:'RANGE', addclass:'datetimerange', formatter: Table.api.formatter.datetime},
- ]
- ]
- });
- //附件
- $('#files').bootstrapTable({
- url : 'qingdong/customer/contacts/get_file'+ location.search,
- pk : 'id',
- sortName : 'id',
- operate : false,
- commonSearch : false,
- search : false,
- visible : false,
- showColumns : false,
- showExport : false,
- showToggle : false,
- columns : [
- [
- {field : 'name', title : '附件名称'},
- {field : 'size', title : '附件大小'},
- {field : 'staff.name', title : '上传人'},
- {field : 'createtime', title : '上传时间',formatter: Table.api.formatter.datetime},
- {
- field : 'operate', title : '操作', formatter : function (value, row, index) {
- return "<a href='" + row.file_path + "' data-tips-image='" + row.file_path + "' class='show-detail'>" + '预览' + "</a>";
- }
- },
- ]
- ]
- });
- //编辑
- $(document).on('click','.btn-edit',function () {
- var id=$('#ids').val();
- Fast.api.open("qingdong/customer/contacts/edit?ids="+id, "客户编辑",{
- shadeClose: false,
- shade: false,
- maxmin: false,
- moveOut: false,
- scrollbars:false,
- callback:function () {
- location.reload()
- }
- });
- }).on('click',".btn-del",function(){//删除
- var id=$('#ids').val();
- Layer.confirm('确定删除当前客户吗?', {
- btn: ['确定','取消'],
- title: '提示',
- },function(index, layero){
- Fast.api.ajax("qingdong/customer/contacts/del?ids="+id,function(data,ret){
- if(ret.code == 1){
- Layer.close(index);
- parent.location.reload();
- }
- },function(data,ret){
- });
- });
- }).on('click','.btn-send-email',function () {
- //在templateView的模式下不能调用table.bootstrapTable('getSelections')来获取选中的ID,只能通过下面的Table.api.selectedids来获取
- var $this=$(this);
- var ids=$('#ids').val();
- var url=$this.data('url'),title=$this.data('title'),types=$this.data('types');
- Fast.api.open(url+"?ids="+ids+"&type="+types, title,{
- shadeClose: false,
- shade: false,
- maxmin: false,
- moveOut: false,
- scrollbars:false,
- 'area':[
- $(window).width() > 800 ? '600px' : '400px',
- $(window).height() > 600 ? '500px' : '400px'
- ],
- callback:function(value){
- Form.events.plupload("#plupload-local");
- // 在这里可以接收弹出层中使用`Fast.api.close(data)`进行回传数据
- },
- });
- }).on('click','.btn-send-sms',function () {
- //在templateView的模式下不能调用table.bootstrapTable('getSelections')来获取选中的ID,只能通过下面的Table.api.selectedids来获取
- var $this=$(this);
- var ids=$('#ids').val();
- var url=$this.data('url'),title=$this.data('title'),types=$this.data('types');
- Fast.api.open(url+"?ids="+ids+"&type="+types, title,{
- shadeClose: false,
- shade: false,
- maxmin: false,
- moveOut: false,
- scrollbars:false,
- 'area':[
- $(window).width() > 800 ? '600px' : '400px',
- $(window).height() > 600 ? '500px' : '400px'
- ],
- callback:function(value){
- Form.events.plupload("#plupload-local");
- // 在这里可以接收弹出层中使用`Fast.api.close(data)`进行回传数据
- },
- });
- });
- Controller.api.bindevent();
- },
- api : {
- bindevent : function () {
- $(document).on("click", ".select-customer", function () {
- var $this = $(this);
- parent.Backend.api.open($(this).data("url"), __('Select'), {
- callback: function (data) {
- $this.html(data.name);
- $('[name="' + $this.data('name') + '"]').val(data.id);
- }
- });
- });
- Form.api.bindevent($("form[role=form]"), function(data, ret){
- //这里是表单提交处理成功后的回调函数,接收来自php的返回数据
- Fast.api.close(data);//这里是重点
- });
- }
- }
- };
- return Controller;
- });
|