Explorar o código

update categories tag

SyuanYu %!s(int64=2) %!d(string=hai) anos
pai
achega
9d2de15d05

+ 2 - 2
backstage/blogs/routes.py

@@ -290,7 +290,7 @@ draft: {}\n\
 type: "{}"\n\
 url: "{}"\n\
 image: "/img/title/{}"\n\
-categories: ["{}"]\n\
+categories: "{}"\n\
 col1: "{}"\n\
 col2: "{}"\n\
 introduction: "{}"\n\
@@ -321,7 +321,7 @@ title: "{}"\n\
 date: {}\n\
 draft: {}\n\
 type: "{}"\n\
-categories: ["{}"]\n\
+categories: "{}"\n\
 ---'''.format(request.args["title"],
               get_now_time(),
               'false',

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

@@ -689,7 +689,7 @@ function GetMdHeader(result = []) {
     $("#ctype").val() == "blog" ||
     $("#ctype").val() == "maincategories"
   ) {
-    rContent += 'categories: ["' + $("#ccategories").val() + '"]\n';
+    rContent += 'categories: "' + $("#ccategories").val() + '"\n';
     //rContent += 'caturl: "' + $('#ccaturl').val() + '"\n';
     //rContent += 'description: "' + $('#cdescription').val().replace(/\r?\n/g, '<br>') + '"\n';
     rContent +=
@@ -1092,7 +1092,7 @@ function GenProductSection(mimg, specimg) {
                           ##PREV-IMG##
                       </div>
                   </div>
-                  <div class="ms-2 fw-bold">
+                  <div class="ms-2 fw-bold w-100">
                       <h3 class="mt-4">##ctitle##</h3>
                       <p class="description mb-5"><b>##swfDesc##</b></p>
                       <div class="detail">

+ 1 - 1
backstage/static/js/yocopy.js

@@ -888,7 +888,7 @@ function GenProductSection(mimg, specimg) {
                             ##PREV-IMG##
                         </div>
                     </div>
-                    <div class="ms-2 fw-bold">
+                    <div class="ms-2 fw-bold w-100">
                         <h3 class="mt-4">##ctitle##</h3>
                         <p class="mb-5">##swfDesc##</p>
                             ##swfPrice##

+ 11 - 11
backstage/templates/solid_wood_furniture.html

@@ -52,7 +52,7 @@
             </tr>
         </tbody>
     </table>
-    
+
     <!-- 類別:<select id="newSwfDropdown"></select><br />
     名稱:<input id="newSwfName" type="text" /><br /> -->
 
@@ -73,9 +73,8 @@
 <script>GenSwfDD($('#newSwfDropdown')[0]);</script>
 <script>
     function newfur() {
-  
         //alert('/backstage/new_solid_wood_furniture?newSwfDropdown='+ $('#newSwfDropdown').val() +'&newSwfName='+$('#newSwfName').val());
-        axios.get('/backstage/new_solid_wood_furniture?newSwfDropdown=' + $('#newSwfDropdown').val() + '&newSwfName=' + $('#newSwfName').val()).then((data) => { console.log(data) });
+        axios.get('/backstage/new_solid_wood_furniture?newSwfDropdown=' + $('#newSwfDropdown').val() + '&newSwfName=' + $('#newSwfName').val()).then((data) => { console.log('data', data); });
     }
     function delfur(iurl) {
         //alert('/backstage/new_solid_wood_furniture?newSwfDropdown='+ $('#newSwfDropdown').val() +'&newSwfName='+$('#newSwfName').val());
@@ -113,18 +112,18 @@
                         </tr>
                         <tr>
                             <td>
-                              <h4>Meta 標題</h4>
+                                <h4>Meta 標題</h4>
                             </td>
                             <td><input class="form-control" id="cmetattl" type="text" />
                             </td>
-                          </tr>
-                          <tr>
+                        </tr>
+                        <tr>
                             <td>
-                              <h4>Meta 說明</h4>
+                                <h4>Meta 說明</h4>
                             </td>
                             <td><input class="form-control" id="cmetadsc" type="text" />
                             </td>
-                          </tr>
+                        </tr>
                         <tr>
                             <td>
                                 <h4>類別</h4>
@@ -136,7 +135,8 @@
                                 <h4>敘述</h4>
                             </td>
                             <td>
-                                <textarea class="form-control" rows="3" id="swfDesc" type="text" style="width: 100%;"></textarea>
+                                <textarea class="form-control" rows="3" id="swfDesc" type="text"
+                                    style="width: 100%;"></textarea>
                                 <div class="mt-1 text-danger">(建議字數:50 字內)</div>
                             </td>
                         </tr>
@@ -250,9 +250,9 @@
                 //alert(mdContent);
                 axios.post(contentApiUrl + editTarget, json = postData).then(({ data }) => {
                     alert('作品資料已儲存');
-                }).finally((data) => { 
+                }).finally((data) => {
                     // location.reload();
-                 });
+                });
             });
         }).catch((error) => {
             console.log('Saving failed: ', error)

+ 2 - 0
backstage/utils/routes.py

@@ -13,6 +13,8 @@ TYPE_URL_FOR = {'collection': 'collections.collection_list',
                 'blog': 'blogs.blog_list'}
 
 def checktype(articletype):
+    if articletype == 'blog':
+        return 'blog'
     return articletype
 
 def create_content(data, image_data):