diff --git a/webht/third_party/pay/views/alipay_note_setting.php b/webht/third_party/pay/views/alipay_note_setting.php
index d3e7c8b6..f0b50117 100644
--- a/webht/third_party/pay/views/alipay_note_setting.php
+++ b/webht/third_party/pay/views/alipay_note_setting.php
@@ -34,10 +34,10 @@
0) { ?>
disabled="disabled"
-
+
>
@@ -67,7 +67,14 @@
原始数据 »
- "', $note->ALI_memo); ?>
+
+
ALI_memo, true); // var_dump($array);
+ $jsonPretty = json_encode($array, JSON_PRETTY_PRINT | JSON_UNESCAPED_UNICODE | JSON_UNESCAPED_SLASHES);
+ echo htmlspecialchars($jsonPretty);
+ ?>
+
+
diff --git a/webht/third_party/pay/views/payment_list.php b/webht/third_party/pay/views/payment_list.php
index 7f931c10..1ed6850b 100644
--- a/webht/third_party/pay/views/payment_list.php
+++ b/webht/third_party/pay/views/payment_list.php
@@ -414,7 +414,13 @@ jQuery.browser = {};
dateFormat: "Y-m-d",
defaultDate: "",
onChange: function (selectedDates, dateStr, instance) {
- window.location.href = '/webht.php/apps/pay/paymentservice/note_list?date=' + dateStr;
+ var currentParam = window.location.search ? window.location.search : '?_t=1';
+ if (currentParam.indexOf('date') > -1) {
+ currentParam = currentParam.replace(/date=[^&]*/, 'date=' + dateStr);
+ } else {
+ currentParam += '&date=' + dateStr;
+ }
+ window.location.href = '/webht.php/apps/pay/paymentservice/note_list' + currentParam;
}
});
})