NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name GTMAP 国图考勤 // @namespace Violentmonkey Scripts // @match http://oa.gtis.com.cn/platform/index.action // @grant none // @version 1.0 // @author ZvonimirSun // @license MIT // @description 2022/8/18 17:01:33 // ==/UserScript== $(document).ready(() => { setTimeout(() => { const divs = $('.x-tree-node') let btn; $.each(divs, (i, div) => { const tmpBtn = $(div).find('.x-tree-node-anchor')[0] if (div.innerText === "我的考勤") { btn = $(div); } }) if (btn) { btn.click(() => { setTimeout(() => { const table = $('#frame_1FB53B2CAA284CE09956B36F5D1EF868').contents().find('#frameMain').contents().find('#viewframe').contents().find('#table1') const inputs = table.find('td > input') inputs.removeAttr('readonly'); }, 1000) }) } }, 500) })