import Service from "../common/service.js"; new Vue({ el: "#banner", data: { title: "产品中心", image: "", path_list: [ { key: "web_about", path: "/about-mobile.html" }, { key: "web_product", path: "/product-mobile.html" }, { key: "web_news", path: "/news-mobile.html" }, { key: "web_join", path: "/join-mobile.html" }, { key: "web_contact", path: "/contact-mobile.html" }, ], config: {}, current: {}, }, mounted() { this.getConfig(); }, methods: { lan_key(val) { return `${val}${localStorage.getItem("language") == "en" ? "_en" : ""}`; }, setTitle() { const path = this.path_list.find((item) => location.href.includes(item.path) ); if (path) { this.title = this.config[this.lan_key(path.key)]; this.image = Service.baseURL + this.config[path.key + "_image"]; } }, getConfig() { Service.get_site() .then((res) => { this.config = res; this.setTitle(); }) .catch((err) => { console.log(err); }); }, }, });