欧美一级特黄大片做受成人-亚洲成人一区二区电影-激情熟女一区二区三区-日韩专区欧美专区国产专区

如何實現(xiàn)bootstrap-table表格導出-創(chuàng)新互聯(lián)

這期內(nèi)容當中小編將會給大家?guī)碛嘘P(guān)如何實現(xiàn)bootstrap-table表格導出,文章內(nèi)容豐富且以專業(yè)的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。

創(chuàng)新互聯(lián)一直在為企業(yè)提供服務,多年的磨煉,使我們在創(chuàng)意設計,網(wǎng)絡營銷推廣到技術(shù)研發(fā)擁有了開發(fā)經(jīng)驗。我們擅長傾聽企業(yè)需求,挖掘用戶對產(chǎn)品需求服務價值,為企業(yè)制作有用的創(chuàng)意設計體驗。核心團隊擁有超過十載以上行業(yè)經(jīng)驗,涵蓋創(chuàng)意,策化,開發(fā)等專業(yè)領域,公司涉及領域有基礎互聯(lián)網(wǎng)服務達州服務器托管App定制開發(fā)、手機移動建站、網(wǎng)頁設計、網(wǎng)絡整合營銷。

文檔參數(shù)說明:

Table Export

Use Plugin: tableExport.jquery.plugin

Usage

<script src="extensions/export/bootstrap-table-export.js"></script>

Options

showExport        //是否顯示到處按鈕

  • type: Boolean

  • description: set true to show export button.

  • default: false

exportDataType   //導出表格方式(默認basic:只導出當前頁的表格數(shù)據(jù);all:導出所有數(shù)據(jù);selected:導出選中的數(shù)據(jù))

  • type: String

  • description: export data type, support: 'basic', 'all', 'selected'.

  • default: basic

exportTypes   //導出文件類型 ,支持多種類型文件導出

  • type: Array

  • description: export types, support types: 'json', 'xml', 'png', 'csv', 'txt', 'sql', 'doc', 'excel', 'xlsx', 'pdf'.

  • default: ['json', 'xml', 'csv', 'txt', 'sql', 'excel']

exportOptions  //導出的表格參數(shù)設置,這里參照tableExport.jquery.plugin插件中的參數(shù)進行設置,點擊官網(wǎng)文檔中的option藍色字體就可跳轉(zhuǎn)到該插件的說明文檔處,網(wǎng)址:https://github.com/hhurz/tableExport.jquery.plugin#options。

  • type: Object

  • description: export options of tableExport.jquery.plugin

  • default: {}

Icons     //導出按鈕圖標設置

  • export: 'glyphicon-export icon-share'

下面直接貼代碼:

//查詢
    function refresh(){
        $("#datatable").bootstrapTable('refresh',{url:'__MODULE__/Statistics/listData'});
    }
    //查詢條件
    function queryParams(params){
        params['project_id'] = $("select[name=project_id]").find("option:selected").val();
        params['time_field'] = $("select[name=time_field]").find("option:selected").val();
        params['start_time'] = $("input[name=start_time]").val();
        params['end_time'] = $("input[name=end_time]").val();
        params['user_name'] = $("input[name=user_name]").val();
        params['telephone'] = $("input[name=telephone]").val();
        params['room_confirm_number'] = $("input[name=room_confirm_number]").val();
        params['lineson'] = $("select[name=lineson]").val();
        params['invoice'] = $("select[name=invoice]").val();
        return params;
    }
 
 
    function DoOnMsoNumberFormat(cell, row, col) {
        var result = "";
        if (row > 0 && col == 0)
            result = "\\@";
        return result;
    }
    var rowCount = 0;
    $("#datatable").bootstrapTable({
        height:"500",
        url: '__MODULE__/Statistics/listData',  //表格數(shù)據(jù)請求地址
        pagination:true,   //是否分頁
        search: false,    //是否顯示查詢框
        sortName: "id",    //排序相關(guān)
        sortOrder: "desc",
        queryParams:'queryParams',
        method:"post",
        sortable:true,
        dataType:'json',
        toolbar: "#exampleTableEventsToolbar",
        icons: {refresh: "glyphicon-repeat", toggle: "glyphicon-list-alt", columns: "glyphicon-list"},
        pageList:[10, 25, 50, 100],
        clickToSelect:true,
        exportDataType:'all',
 
        onLoadSuccess:function(data){   //表格數(shù)據(jù)加載成功事件
            rowCount = data.length-1;
            $("#datatable").bootstrapTable('hideRow', {index:rowCount});
            $("#datatable td").attr("data-tableexport-msonumberformat","\@");
            $("#datatable tr").attr("data-tableexport-display","always");
        },
        onPageChange:function(number,size){  //表格翻頁事件
            $("#datatable").bootstrapTable('hideRow', {index:rowCount});
            $("#datatable td").attr("data-tableexport-msonumberformat","\@");
            $("#datatable tr").attr("data-tableexport-display","always");
 
        },
        showExport: true,  //是否顯示導出按鈕
        buttonsAlign:"right",  //按鈕位置
        exportTypes:['excel'],  //導出文件類型
        Icons:'glyphicon-export',
        exportOptions:{
            ignoreColumn: [0,1],  //忽略某一列的索引
            fileName: '總臺帳報表',  //文件名稱設置
            worksheetName: 'sheet1',  //表格工作區(qū)名稱
            tableName: '總臺帳報表',
            excelstyles: ['background-color', 'color', 'font-size', 'font-weight'],
            onMsoNumberFormat: DoOnMsoNumberFormat
        },
        columns: [
            {
                checkbox:true,
                title: '選擇'
            },{
                title: '序號',
                formatter: function (value, row, index) {
                    $(".group_sum").html(row['group_sum']);
                    $(".group_money_sum").html(row['group_money_sum']+"元");
                    $(".confirm_sum").html(row['confirm_sum']);
                    $(".confirm_money_sum").html(row['confirm_money_sum']+"元");
                    $(".refund_sum").html(row['refund_sum']);
                    $(".refund_money_sum").html(row['group_back_sum']+"元");
                    $(".residue_money_sum").html(row['residue_sum']+"元");
                    var a = index+1; return a+"<span style='display:none;'>"+row.id+"</span>"
                }
            },{
                field: 'project_name',
                align:"center",
                title: '項目'
            }, {
                field: 'user_name',
                align:"center",
                title: '姓名'
            }, {
                field: 'telephone',
                align:"center",
                title: '電話'
            },{
                field: 'id_card_number',
                align:"center",
                rowAttributes:"rowAttributes",
                title: '身份證號'
            },{
                field: 'telephone',
                align:"center",
                title: '手機號'
            },{
                field: 'pos_r_n',
                align:"center",
                title: 'POS機參考號'
            },{
                field: 'pos_c_n',
                align:"center",
                title: 'POS機終端號'
            },{
                field: 'merchant_code',
                align:"center",
                title: '商戶編碼'
            },{
                field: 'bank_card_number',
                align:"center",
                title: '銀行卡號'
            },{
                field: 'create_time',
                align:"center",
                title: '領取優(yōu)惠時間'
            },{
                field: 'group_purchase_number',
                align:"center",
                title: '優(yōu)惠編碼'
 
            },{
                field: 'group_purchase_expenses',
                align:"center",
                title: '會員費用'
            },{
                field: 'back_pay_money',
                align:"center",
                title: '退款金額'
            },{
                field: 'refund_etime',
                align:"center",
                title: '退款時間'
            },{
                field: 'confirm_pay_money',
                align:"center",
                title: '認購金額'
            },{
                field: 'group_purchase_confirm_time',
                align:"center",
                title: '認購時間'
            },{
                field: 'room_confirm_number',
                align:"center",
                title: '認購房號'
            },{
                field: '',
                align:"center",
                title: '賬戶余額'
            },{
                field: 'invoice_status',
                align:"center",
                title: '發(fā)票狀態(tài)',
                formatter: 'invoice_status_formatter',
                events:'confirmEvents'
            },{
                field: 'lineson',
                align:"center",
                title: '數(shù)據(jù)來源',
                formatter: 'lineson_status_formatter',
                events:'confirmEvents'
            }
        ]
    });

上述就是小編為大家分享的如何實現(xiàn)bootstrap-table表格導出了,如果剛好有類似的疑惑,不妨參照上述分析進行理解。如果想知道更多相關(guān)知識,歡迎關(guān)注創(chuàng)新互聯(lián)網(wǎng)站制作公司行業(yè)資訊頻道。

文章名稱:如何實現(xiàn)bootstrap-table表格導出-創(chuàng)新互聯(lián)
分享地址:http://aaarwkj.com/article48/dpgeep.html

成都網(wǎng)站建設公司_創(chuàng)新互聯(lián),為您提供營銷型網(wǎng)站建設、網(wǎng)站導航企業(yè)建站、微信小程序、做網(wǎng)站、關(guān)鍵詞優(yōu)化

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)

成都app開發(fā)公司
日本在线看片一区二区| 香蕉欧美在线视频播放| 亚洲国产第一av导航| 97人妻人人揉人人澡人人学生| 丝袜亚洲激情欧美日韩偷拍| 夫妻性生活视频全过程| 蜜桃久久国产精品一区二区| 亚洲成人大片免费在线观看 | 成人性生活三级黄色片| 成人免费在线国产视频| 美女午夜福利精品视频| 日本亚洲欧美男人的天堂| 欧美日韩国产综合在线观看| 国产精品一区二区av在线| 天天做日日干夜夜操| 欧美日韩成人精品一区二区| 给我搜一个一级黄色片| 日韩一级免费高清黄片| 激情综合色综合久久丁香| 国产男女爱猛视频在线| 国产精品久久中文字幕亚洲| 不卡的视频在线观看| 天堂在线av免费观看| 久久精品一区二区婷婷| 国产精品成人大片在线播放| 日本区一区二区三啪啪| 内射久久一区二区亚洲| 精品久久少妇激情视频| 中文成人无字幕乱码精品| 国产精品人成在线观看不卡| 亚洲国产日本一区自拍| 亚洲国产av永久精品成人| 在线播放av男人的天堂| 日本老太老熟妇一级特黄| 麻豆影片在线免费观看| 国产高清视频不卡在线| 一区二区三区日韩欧美在线| 国产男女猛进猛出精品91| 国产成人精品手机在线观看| 色噜噜狠狠狠久久综合一区| 国产精品乱码精品久久久|