Procházet zdrojové kódy

修复js部分代码

stoney před 1 týdnem
rodič
revize
a2735d4001
2 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. binární
      assets/~$report.docx
  2. 1 1
      prototype/js/app.js

binární
assets/~$report.docx


+ 1 - 1
prototype/js/app.js

@@ -549,7 +549,7 @@ new Vue({
     var self = this;
     window.addEventListener('resize', function() { if (self._charts) self._charts.forEach(function(c) { c.resize(); }); });
     // 加载PRD markdown
-    fetch('../prd/需求规格说明书.md').then(function(res) { return res.text(); }).then(function(md) {
+    fetch('../prd/prd.md').then(function(res) { return res.text(); }).then(function(md) {
       self.prdContent = marked.parse(md);
     }).catch(function() { self.prdContent = '<p>文档加载失败,请确保通过HTTP服务访问。</p>'; });
   }