fastAdmin table 刷新

  1. 当前页面刷新
{
    field: 'operate',
    title: __('Operate'),
    table: table,
    events: Table.api.events.operate,
    buttons: [{
        name: '重新审核',
        text: __('重新审核'),
        // btn-ajax  class即代表ajax提交
        classname: 'btn btn-warning btn-xs btn-detail btn-ajax',
        url: 'integral/ajax_status',
        //成功返回参数
        success: function (data,rest) {
        	//关闭弹出框
			Fast.api.close(data);
			//刷新父级页面
			window.parent.location.reload();
            //刷新当前页面
            table.bootstrapTable('refresh', {});
            return true;
        }
    }
    ],
    formatter: Table.api.formatter.operate
}
  1. 弹出层关闭刷新父级页面
    //在index 中关闭弹出层的时候 刷新父级页面
       index: function () {
            parent.window.$(".layui-layer-iframe").find(".layui-layer-close").on("click",function (data) {
                window.parent.location.reload();
            });
        },

查看更多

你可能感兴趣的:(fastAdmin)