自动评教(西电专版)

(适用西安电子科技大学网上评教应用APP)自动网上选项评教+文本框评教,自动选择非常满意,填入"对教授内容很满意,老师辛苦了!" (脑抽瞎更新了一下……好像0.3版本没有问题)

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// ==UserScript==
// @name         自动评教(西电专版)
// @namespace    https://jashshor.fun/
// @version      0.6
// @description  (适用西安电子科技大学网上评教应用APP)自动网上选项评教+文本框评教,自动选择非常满意,填入"对教授内容很满意,老师辛苦了!" (脑抽瞎更新了一下……好像0.3版本没有问题)
// @author       JashShor
// @match        *://ehall.xidian.edu.cn/jwapp/sys/wspjyyapp/*default/*
// @icon         https://bkimg.cdn.bcebos.com/pic/7aec54e736d12f2ec1809b2345c2d562843568ef?x-bce-process=image/resize,m_lfit,w_268,limit_1/format,f_jpg
// @grant        某个原创小哥
// @grant        GM_setValue
// @grant        GM_getValue
// @grant        window
// ==/UserScript==

(function() {
'use strict';
/**
    var shor = {
        'name': 'jash'
    };
**/

$(()=> {

 let param = {

  tag: true,

  num: 1,

  ele: document.createElement('div'),

  icon: '',

  homeIcon: '',

  moreIcon: '',

  personalIcon: '',

  closeIcon: '',

  distance: '500',

  css: "position:fixed;" +

  "bottom:4rem;" +

  "box-shadow:10px 10px 10px gray;" +

  "right:10px;" +

  "display:none;" +

  "font-size:1.5rem;" +

  "color:#fff;" +

  "z-index:1000;" +

  "height:2.5rem;" +

  "width:2.5rem;" +

  "background:#f44336;" +

  "border-radius:50%;" +

  "line-height:2.5rem;" +

  "text-align:center",

  menuCss: "position:absolute;" +

  // "bottom:3rem;" +

  "display:none;" +

  "box-shadow:10px 10px 10px gray;" +

  "font-size:1.2rem;" +

  "color:#fff;" +

  "background:orange;" +

  "height:2rem;" +

  "width:2rem;" +

  "border-radius:50%;" +

  "text-align:center;" +

  "line-height:2rem;"

  // type: '#top'

 };

 {

  document.querySelector('body').appendChild(((ele)=> {

   ele.className = 'scroll iconfont';

   ele.innerHTML = param.moreIcon;

   // ele.href = param.type;

   ele.style.cssText = param.css;

   for (let i = 0; i < 3; i++) {

    let menu_personal = document.createElement('a');

    menu_personal.className = 'iconfont';

    menu_personal.style.cssText = param.menuCss;

    switch (i) {

     case 0:

      setStyle(menu_personal, '#2196f3', '2.4rem', '2.4rem', param.homeIcon, 'home');

      break;

     case 1:

      setStyle(menu_personal, '#4caf50', 0, '3.5rem', param.personalIcon, 'personal');

      break;

     case 2:

      setStyle(menu_personal, '#fdd835', '3.5rem', '0', param.icon, 'top');

      break;

    }

    param.ele.appendChild(menu_personal);

   }

   return ele;

  })(param.ele));

  function setStyle(ele, ...args) {

   ele.style.background = args[0];

   ele.style.bottom = args[1];

   ele.style.right = args[2];

   ele.innerHTML = args[3];

   ele.id = args[4];

  }

 }

 {

  $(window).scroll(()=> {

   var scrollValue = $(window).scrollTop();

   if (scrollValue > param.distance) {

    if (param.tag) {

     $(param.ele).css('display', 'block').animateCss('fadeInRight');

     param.tag = !param.tag;

    }

   } else {

    if (!param.tag) {

     $(param.ele).css('display', 'none');

     $(param.ele).children().css('display', 'none');

     param.num++;

     param.tag = !param.tag;

    }

   }

  });

  $(param.ele).click((e)=> {
      finish();

  })

 }

});






//    GM_setValue('jash', shor);
//alert('预计10s后开始答卷,确保页面已经加载完成');
//setTimeout(()=>check(),5000);

return;
})();

/**
function check(){
var optionBtn=document.getElementsByClassName("bh-radio-label");
if(GM_getValue('jash').name =='jash'|(GM_getValue('jash').name =='shor'&optionBtn.checked==0)){
setTimeout(()=>check(),1500);
if(optionBtn.length!=0){
	setTimeout(()=>finish(),500);
    var shor = {
        'name': 'shor'
    };
    GM_setValue('jash', shor);
}}
return false;
}
**/

function finish(){
console.log(0);
var optionBtn=document.getElementsByClassName("bh-radio-label");
for(var i=0;i<optionBtn.length;i+=4)
{
	optionBtn[i].click();
    console.log(1);
}
var textAreaOption=document.getElementsByClassName("bh-txt-input__txtarea");
for(i=0;i<textAreaOption.length;i++)
{
    textAreaOption[i].value="对教授内容很满意,老师辛苦了!";
    console.log(2);
}
}