Greasy Fork

Greasy Fork is available in English.

方正教务系统成绩分项下载

Download performance items from the Founder Educational Administration System

当前为 2025-02-03 提交的版本,查看 最新版本

您需要先安装一个扩展,例如 篡改猴Greasemonkey暴力猴,之后才能安装此脚本。

You will need to install an extension such as Tampermonkey to install this script.

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴Userscripts ,之后才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。

您需要先安装用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name         方正教务系统成绩分项下载
// @namespace    [email protected]
// @version      1.1
// @description  Download performance items from the Founder Educational Administration System
// @author       iKaiKail
// @match        *://jwgl.sxzy.edu.cn/jwglxt/cjcx/*
// @match        *://jwgl.fafu.edu.cn/jwglxt/cjcx/*
// @match        *://jwgl.whvcse.edu.cn/jwglxt/cjcx/*
// @match        *://jwgl.whu.edu.cn/jwglxt/cjcx/*
// @match        *://jwgl8.ujn.edu.cn/jwglxt/cjcx/*
// @match        *://authserver.mju.edu.cn/jwglxt/cjcx/*
// @match        *://jwgl.nwnu.edu.cn/jwglxt/cjcx/*
// @match        *://jwgl.cauc.edu.cn/jwglxt/cjcx/*
// @match        *://jwgl.njtech.edu.cn/jwglxt/cjcx/*
// @match        *://jwgl.njucm.edu.cn/jwglxt/cjcx/*
// @match        *://jwgl.hx.cn/jwglxt/cjcx/*
// @match        *://gdjw.zjut.edu.cn/jwglxt/cjcx/*
// @icon         https://www.zfsoft.com/img/zf.ico
// @grant        none
// @require      https://code.jquery.com/jquery-3.6.0.min.js
// ==/UserScript==
 
(function() {
    'use strict';
 
    // 创建按钮元素
    let ele = $("<button type='button' class='btn btn-primary btn-sm' href='javascript:void(0);'></i>导出所有成绩</button>");
 
    // 按钮点击事件
    ele.click(function() {
        function downFile(blob) {
            var elementA = document.createElement('a');
            elementA.download = +new Date() + ".xlsx";
            elementA.style.display = 'none';
            elementA.href = URL.createObjectURL(blob);
            document.body.appendChild(elementA);
            elementA.click();
            document.body.removeChild(elementA);
        }
 
        var xhr = new XMLHttpRequest();
        xhr.open("POST", '/jwglxt/cjcx/cjcx_dcXsKccjList.html', true);
        xhr.responseType = 'blob';
        xhr.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
 
        xhr.onload = function() {
            downFile(xhr.response);
            location.reload();
        };
 
        xhr.send("gnmkdmKey=N305005&xnm=" + document.querySelectorAll('#xnm')[0].value + "&xqm=" + document.querySelectorAll('#xqm')[0].value + "&dcclbh=JW_N305005_GLY&exportModel.selectCol=kcmc%40%E8%AF%BE%E7%A8%8B%E5%90%8D%E7%A7%B0&exportModel.selectCol=xnmmc%40%E5%AD%A6%E5%B9%B4&exportModel.selectCol=xqmmc%40%E5%AD%A6%E6%9C%9F&exportModel.selectCol=kkbmmc%40%E5%BC%80%E8%AF%BE%E5%AD%A6%E9%99%A2&exportModel.selectCol=kch%40%E8%AF%BE%E7%A8%8B%E4%BB%A3%E7%A0%81&exportModel.selectCol=jxbmc%40%E6%95%99%E5%AD%A6%E7%8F%AD&exportModel.selectCol=xf%40%E5%AD%A6%E5%88%86&exportModel.selectCol=xmcj%40%E6%88%90%E7%BB%A9&exportModel.selectCol=xmblmc%40%E6%88%90%E7%BB%A9%E5%88%86%E9%A1%B9&exportModel.exportWjgs=xls&fileName=%E6%96%87%E4%BB%B91656485751290");
    });
 
    // 将按钮添加到页面中的某个位置,例如页面底部
    let searchButton = $('#search_go');
    if (searchButton.length > 0) {
        searchButton.after(ele);
    } else {
        $('body').append(ele);
    }
})();