Browse Source

210812 移除上傳圖檔檔名內"."
表格第一欄 width 25%
更新鈕按下後 disable 防呆

yukyo0821 3 years ago
parent
commit
be95f14d3f

+ 2 - 1
backstage/collections/routes.py

@@ -5,7 +5,7 @@ from backstage.collections.forms import CollectionCreateForm
 from backstage.utils import get_now_time
 from backstage.utils.routes import create_content, remove_content, get_trans_title_url_name
 from backstage.config import PORTAL_SERVER
-import json
+import os
 
 collections_app = Blueprint('collections', __name__)
 
@@ -38,6 +38,7 @@ def collection_list():
 @collections_app.route('/backstage/collection/create', methods=['POST'])
 def create():
     form = CollectionCreateForm()
+    form.image.data.filename = os.path.splitext(form.image.data.filename)[0].replace(".","") + os.path.splitext(form.image.data.filename)[1]
     eng_name = get_trans_title_url_name(form.title.data)
     front_matter = '''---
 title: "{}"\n\

+ 2 - 0
backstage/static/js/yo.js

@@ -176,6 +176,8 @@ function tableArrayToHtml(tableArray) {
         tr = document.createElement('tr');
         for (k = 0; k < tableArray[j].length; k++) {
             td = document.createElement('td');
+            if(k == 0)
+                td.style.width = "25%";
             td.innerHTML = tableArray[j][k];
             tr.appendChild(td);
         }

+ 4 - 3
backstage/templates/tables/editor_table.html

@@ -82,7 +82,7 @@
       </div>
 
       <div class="modal-footer">
-        <button type="button" class="btn btn-danger" onclick="updateHeader();">完成修改</button>
+        <button type="button" id="uptbtn" class="btn btn-danger" onclick="updateHeader();">完成修改</button>
       </div>
 
     </div>
@@ -151,6 +151,7 @@
     else {
       writeMd();
     } */
+    $("#uptbtn").attr('disabled', true);
     writeMd();
     // location.reload();
   }
@@ -164,7 +165,7 @@
     mdContent += 'url: "' + $('#curl').val() + '"\n';
     //mdContent += 'url: "' + $('#curl').val() + '"\n';
     mdContent += 'image: "' + $('#cimage').val() + '"\n';
-    mdContent += 'description: "' + $('#cdescription').val().replace(/\r?\n/g,'<br>') + '"\n';
+    mdContent += 'description: "' + $('#cdescription').val().replace(/\r?\n/g, '<br>') + '"\n';
     mdContent += 'weight: ' + ($('#cweight').val() == 'undefined' ? "" : $('#cweight').val()) + '\n';
     mdContent += 'tag: "' + ($('#ctag').val() == 'undefined' ? "" : $('#ctag').val()) + '"\n';
     mdContent += '---\n';
@@ -192,7 +193,7 @@
       //console.log(mdContent);
       axios.post(contentApiUrl + editTarget, json = postData).then(({ data }) => {
       });
-    }).finally(() => { 
+    }).finally(() => {
       alert('資料已更新'); // test
       location.reload();
     });