private cloud update 2020-06-14

1. completed i18n for private cloud (foreground and background)
2. fixed issues
This commit is contained in:
strawmanbobi
2020-06-14 11:56:18 +08:00
parent 7fc902a540
commit f94a89faef
28 changed files with 899 additions and 1227 deletions

View File

@@ -11,7 +11,7 @@
* return : Redirect to the certain URL
*/
exports.navToURL = function(req, res) {
var bodyParam = req.body;
var page = bodyParam.page;
let bodyParam = req.body;
let page = bodyParam.page;
res.redirect("/" + page);
};