From 50566ed57613199f83438ef2c0b42dd15cb38406 Mon Sep 17 00:00:00 2001 From: yumoqing Date: Mon, 29 Jun 2026 17:31:19 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20payment=5Flog.json=20JSON=20=E8=AF=AD?= =?UTF-8?q?=E6=B3=95=E9=94=99=E8=AF=AF=E5=AF=BC=E8=87=B4=20xls2ui=20?= =?UTF-8?q?=E5=B4=A9=E6=BA=83?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 两处修复: 1. logined_userorgid 从 browserfields 内移到 params 层级 2. binds[0] 缺少开头 { 导致 JSON 解析失败 (line 25 column 9) --- json/payment_log.json | 32 +++++++++++++++++--------------- 1 file changed, 17 insertions(+), 15 deletions(-) diff --git a/json/payment_log.json b/json/payment_log.json index 776d526..a4a4f2c 100644 --- a/json/payment_log.json +++ b/json/payment_log.json @@ -3,9 +3,9 @@ "title": "充值记录", "params": { "sortby": "init_timestamp desc", + "logined_userorgid": "customerid", "browserfields": { "exclouded": ["id"], - "logined_userorgid":"customerid", "alters": { } }, @@ -22,23 +22,25 @@ ] }, "binds":[ - "wid":"self", - "event":"refund", - "actiontype":"urlwidget", - "target":"PopupWindow", - "popup_options":{ + { + "wid":"self", + "event":"refund", + "actiontype":"urlwidget", + "target":"PopupWindow", + "popup_options":{ {% if params_kw._is_mobile %} - "width":"100%", - "height":"90%", + "width":"100%", + "height":"90%", {% else %} - "width": "40%", - "height":"80%", + "width": "40%", + "height":"80%", {% endif %} - "archor": "cc" - }, - "options":{ - "url":"{{entire_url('../refund.ui')}}", - "params": { + "archor": "cc" + }, + "options":{ + "url":"{{entire_url('../refund.ui')}}", + "params": { + } } } ]