Commit f0d6e1d3 by 宋毅

tj

parent 4813df0e
...@@ -73,7 +73,11 @@ class utilsTlBankSve extends AppServiceBase { ...@@ -73,7 +73,11 @@ class utilsTlBankSve extends AppServiceBase {
if ((!params[key]) || key == "sign" || key == "sign_type") { if ((!params[key]) || key == "sign" || key == "sign_type") {
continue; continue;
}; };
sPara.push([key, params[key]]); if (key === "subject" || key === "body") {
sPara.push([key, encodeURIComponent(params[key])]);
} else {
sPara.push([key, params[key]]);
}
} }
sPara = sPara.sort(); sPara = sPara.sort();
var prestr = ''; var prestr = '';
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment