Pārlūkot izejas kodu

fix filter value

SyuanYu 2 gadi atpakaļ
vecāks
revīzija
f3ab7c6001

+ 1 - 1
backstage/collections/forms.py

@@ -15,7 +15,7 @@ class CollectionCreateForm(FlaskForm):
     bannerimgtext = StringField('封面圖片說明', validators=[DataRequired()])
     homeowner = StringField('屋主', validators=[DataRequired()])
     ownerimg = FileField('屋主照片', validators=[FileAllowed(['jpg', 'png', 'gif', 'webp'], 'Images only!')])
-    size = SelectField('坪數範圍', choices=['20坪以下', '20-35坪', '35-50坪', '50坪以上'],validators=[DataRequired()])
+    size = SelectField('坪數範圍', choices=['20坪以下', '20-35坪', '36-50坪', '51坪以上'],validators=[DataRequired()])
     housesize = StringField('坪數', validators=[DataRequired()])
     bednum = SelectField('格局', choices=['一房', '二房', '三房', '四房', '四房以上'],validators=[DataRequired()])
     roomcount = StringField('幾房幾廳?', validators=[DataRequired()])

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

@@ -1178,7 +1178,7 @@ function GenProductSection(mimg, specimg) {
   if ($("#swfPrice").val() != "")
     tmpstr = tmpstr.replaceAll(
       "##swfPrice##",
-      "<div class='me-3 my-2 d-flex'><div class='tw-15'>定價</div>" +
+      "<div class='me-3 my-2 d-flex'><div class='tw-15 fw-bold'>定價</div>" +
         "<div class='pdprice tw-85'>" +
         $("#swfPrice").val() +
         "</div></div>"
@@ -1187,7 +1187,7 @@ function GenProductSection(mimg, specimg) {
   if ($("#swfColor").val() != "")
     tmpstr = tmpstr.replaceAll(
       "##swfColor##",
-      "<div class='my-2 d-flex'><div class='tw-15'>顏色</div>" +
+      "<div class='my-2 d-flex'><div class='tw-15 fw-bold'>顏色</div>" +
         "<div class='pdcolor tw-85'>" +
         $("#swfColor").val() +
         "</div></div>"
@@ -1196,7 +1196,7 @@ function GenProductSection(mimg, specimg) {
   if ($("#swfSize").val() != "")
     tmpstr = tmpstr.replaceAll(
       "##swfSize##",
-      "<div class='my-2 d-flex'><div class='tw-15'>尺寸</div>" +
+      "<div class='my-2 d-flex'><div class='tw-15 fw-bold'>尺寸</div>" +
         "<div class='pdsize tw-85'>" +
         $("#swfSize").val() +
         "</div></div>"
@@ -1205,7 +1205,7 @@ function GenProductSection(mimg, specimg) {
   if ($("#swfMat").val() != "")
     tmpstr = tmpstr.replaceAll(
       "##swfMat##",
-      "<div class='my-2 d-flex'><div class='tw-15'>材質</div>" +
+      "<div class='my-2 d-flex'><div class='tw-15 fw-bold'>材質</div>" +
         "<div class='pmat tw-85'>" +
         $("#swfMat").val() +
         "</div></div>"
@@ -1214,7 +1214,7 @@ function GenProductSection(mimg, specimg) {
   if ($("#swfMemo").val() != "")
     tmpstr = tmpstr.replaceAll(
       "##swfMemo##",
-      "<div class='my-2 d-flex'><div class='tw-15'>備註</div> " +
+      "<div class='my-2 d-flex'><div class='tw-15 fw-bold'>備註</div> " +
         "<div class='pdmark tw-85'>" +
         $("#swfMemo").val() +
         "</div></div>"

+ 2 - 2
backstage/templates/collections.html

@@ -235,8 +235,8 @@
               <td><select id="csize">
                 <option value="20坪以下">20坪以下</option>
                 <option value="20-35坪">20-35坪</option>
-                <option value="35-50坪">35-50坪</option>
-                <option value="50坪以上">50坪以上</option>
+                <option value="36-50坪">36-50坪</option>
+                <option value="51坪以上">51坪以上</option>
               </select></td>
             </tr>
             </td>