Set ERP_CODE_VERSION Current Time

Set ERP_CODE_VERSION Current Time; like: 202101281552

目前為 2021-01-28 提交的版本,檢視 最新版本

// ==UserScript==
// @name         Set ERP_CODE_VERSION Current Time
// @namespace    http://172.31.0.64:8080/*
// @version      1.1
// @description  Set ERP_CODE_VERSION Current Time; like: 202101281552
// @author       You
// @match        http://172.31.0.64:8080/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    Date.prototype.Format = function (fmt) {
        var o = {
            "M+": this.getMonth() + 1, //月份
            "d+": this.getDate(), //日
            "h+": this.getHours(), //小时
            "m+": this.getMinutes(), //分
            "s+": this.getSeconds(), //秒
            "q+": Math.floor((this.getMonth() + 3) / 3), //季度
            "S": this.getMilliseconds() //毫秒
        };
        if (/(y+)/.test(fmt)) fmt = fmt.replace(RegExp.$1, (this.getFullYear() + "").substr(4 - RegExp.$1.length));
        for (var k in o) if (new RegExp("(" + k + ")").test(fmt)) fmt = fmt.replace(RegExp.$1, (RegExp.$1.length == 1) ? (o[k]) : (("00" + o[k]).substr(("" + o[k]).length)));
        return fmt;
    }

    var now = new Date().Format("yyyyMMddhhmm");

    console.log(now);

    var S = "#main-panel > form > table > tbody:nth-child(1) > tr:nth-child(1) > td.setting-main > div > input.setting-input"
    document.querySelector(S).setAttribute('value', now);

    // Your code here...
})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址