diff --git a/wwwroot/discount_setting/index.ui b/wwwroot/discount_setting/index.ui index c81bfae..e99e22b 100644 --- a/wwwroot/discount_setting/index.ui +++ b/wwwroot/discount_setting/index.ui @@ -11,7 +11,7 @@ { "widgettype": "Text", "options": { - "text": "产品折扣设置 - {{info.name or ''}}{% if info.customer %} ({{info.customer}}){% endif %}", + "text": "产品折扣设置 - {{json.dumps(info.name, ensure_ascii=False) if info.name else ''}}", "fontSize": "16px", "fontWeight": "600", "color": "#F1F5F9", @@ -59,16 +59,16 @@ "width": "100%" }, "subwidgets": [ - {"widgettype": "Text", "options": {"text": "{{p.category_name or ''}}", "width": "20%", "padding": "0 8px", "fontSize": "12px", "color": "#E2E8F0"}}, - {"widgettype": "Text", "options": {"text": "{{p.product_name or ''}}", "width": "28%", "padding": "0 8px", "fontSize": "12px", "color": "#F1F5F9"}}, - {"widgettype": "Text", "options": {"text": "{{p.product_code or ''}}", "width": "18%", "padding": "0 8px", "fontSize": "12px", "color": "#E2E8F0"}}, + {"widgettype": "Text", "options": {"text": {{json.dumps(p.category_name or '')}}, "width": "20%", "padding": "0 8px", "fontSize": "12px", "color": "#E2E8F0"}}, + {"widgettype": "Text", "options": {"text": {{json.dumps(p.product_name or '')}}, "width": "28%", "padding": "0 8px", "fontSize": "12px", "color": "#F1F5F9"}}, + {"widgettype": "Text", "options": {"text": {{json.dumps(p.product_code or '')}}, "width": "18%", "padding": "0 8px", "fontSize": "12px", "color": "#E2E8F0"}}, { "widgettype": "UiFloat", "options": { "width": "14%", "padding": "0 8px", "name": "discount", - "value": "{{p.discount or '1.0'}}", + "value": {{json.dumps(p.discount or '1.0')}}, "placeholder": "0~1", "dec_len": 2, "fontSize": "12px" @@ -83,16 +83,16 @@ "options": { "url": "{{entire_url('./save_discount.dspy')}}", "params": { - "discountid": "{{params_kw.discountid}}", - "old_discount": "{{p.discount or '1.0'}}", - "productid": "{{p.productid}}", - "detail_id": "{{p.detail_id or ''}}" + "discountid": {{json.dumps(params_kw.discountid)}}, + "old_discount": {{json.dumps(p.discount or '1.0')}}, + "productid": {{json.dumps(p.productid)}}, + "detail_id": {{json.dumps(p.detail_id or '')}} } } } ] }, - {"widgettype": "Text", "options": {"text": "{% if p.in_plan == 1 %}✓方案内{% endif %}", "width": "16%", "padding": "0 8px", "fontSize": "11px", "color": "#34D399"}} + {"widgettype": "Text", "options": {"text": {% if p.in_plan == '1' %}"✓方案内"{% else %}""{% endif %}, "width": "16%", "padding": "0 8px", "fontSize": "11px", "color": "#34D399"}} ] }{% if not loop.last %},{% endif %} {% endfor %}