index.ejs 1.22 KB
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
      <title>MES Global Equipment Operation Platform</title>
      <script>
        if (!String.prototype.padStart) {
          String.prototype.padStart = function padStart(targetLength, padString) {
            targetLength = targetLength >> 0; //floor if number or convert non-number to 0;
            padString = String((typeof padString !== 'undefined' ? padString : ' '));
            if (this.length > targetLength) {
              return String(this);
            }
            else {
              targetLength = targetLength - this.length;
              if (targetLength > padString.length) {
                padString += padString.repeat(targetLength / padString.length); //append to original to ensure we are longer than needed
              }
              return padString.slice(0, targetLength) + String(this);
            }
          };
        }
      </script>
</head>
<body>
<div id="root"></div>
<!--<script src="https://cdn.bootcss.com/vConsole/3.3.4/vconsole.min.js"></script>-->
<!--<script>-->
<!--  // 初始化-->
<!--  var vConsole = new VConsole();-->
<!--  </script>-->
</body>
</html>