调整移动端将bar放在下方

This commit is contained in:
ivan deng
2023-05-25 18:49:24 +08:00
parent 199025663a
commit 3b34c2e3f9
9 changed files with 129 additions and 35 deletions

View File

@@ -1,13 +0,0 @@
/** @odoo-module **/
import { WebClient } from "@web/webclient/webclient";
import { patch } from "@web/core/utils/patch";
import { session } from "@web/session";
patch(WebClient.prototype, "app_odoo_customize.WebClient", {
setup() {
this._super.apply(this, arguments);
const app_system_name = session.app_system_name || 'odooApp';
this.title.setParts({ zopenerp: app_system_name }); // zopenerp is easy to grep
}
});