parent
a842d2fd71
commit
72018e754b
20
App.vue
20
App.vue
|
|
@ -2562,6 +2562,26 @@
|
|||
page_event_onshow_handle() {
|
||||
// 设置底部菜单
|
||||
this.set_tabbar();
|
||||
// 获取当前页面路径
|
||||
var url = this.current_page(false);
|
||||
var keyList = url.split('/');
|
||||
var new_key = '';
|
||||
keyList.forEach((item, index) => {
|
||||
// new_key += item;
|
||||
if (keyList.length > index + 1) {
|
||||
if (index == 0) {
|
||||
new_key += item + '.';
|
||||
} else {
|
||||
new_key += item + '-';
|
||||
}
|
||||
} else {
|
||||
new_key += item;
|
||||
}
|
||||
});
|
||||
console.log(new_key);
|
||||
uni.setNavigationBarTitle({
|
||||
title: i18n.t(new_key),
|
||||
});
|
||||
},
|
||||
},
|
||||
|
||||
|
|
|
|||
File diff suppressed because it is too large
Load Diff
|
|
@ -1540,5 +1540,11 @@
|
|||
"nu5058": "不支持地理位置選擇!",
|
||||
"4v6q86": "未選擇位置"
|
||||
}
|
||||
},
|
||||
"pages": {
|
||||
"index-index": "ShopXO",
|
||||
"goods-category-goods-category": "商品分類",
|
||||
"cart-cart": "購物車",
|
||||
"user-user": "用戶中心"
|
||||
}
|
||||
}
|
||||
3118
lang/en.json
3118
lang/en.json
File diff suppressed because it is too large
Load Diff
|
|
@ -10,13 +10,13 @@ let i18nConfig = {
|
|||
locale: uni.getLocale(),
|
||||
silentTranslationWarn: true,
|
||||
messages: {
|
||||
"zh-Hans": zhHans,
|
||||
"zh-Hans": zhHans,
|
||||
"zh-Hant": zhHant,
|
||||
en,
|
||||
"es": spa
|
||||
"en": en,
|
||||
"es": spa
|
||||
}
|
||||
}
|
||||
Vue.use(VueI18n)
|
||||
const i18n = new VueI18n(i18nConfig)
|
||||
|
||||
Vue.prototype._i18n = i18n
|
||||
export default i18n
|
||||
|
|
|
|||
|
|
@ -1540,5 +1540,11 @@
|
|||
"nu5058": "¡¡ no se admite la selección de ubicación geográfica!",
|
||||
"4v6q86": "No se ha seleccionado la ubicación"
|
||||
}
|
||||
},
|
||||
"pages": {
|
||||
"index-index": "Shopxo",
|
||||
"goods-category-goods-category": "Clasificación de mercancías",
|
||||
"cart-cart": "Carrito de compras",
|
||||
"user-user": "Centro de usuarios"
|
||||
}
|
||||
}
|
||||
|
|
@ -43,6 +43,12 @@
|
|||
"sub_error_retry_tips": "提交失败,请重试!",
|
||||
"not_more_list_data_tips": "无更多列表数据"
|
||||
},
|
||||
"pages": {
|
||||
"index-index": "ShopXO",
|
||||
"goods-category-goods-category": "商品分类",
|
||||
"cart-cart": "购物车",
|
||||
"user-user": "用户中心"
|
||||
},
|
||||
"login": {
|
||||
"login": {
|
||||
"725312": "账号密码登录",
|
||||
|
|
|
|||
Loading…
Reference in New Issue