Commit 9299c56b authored by 332784038@qq.com's avatar 332784038@qq.com

订单详情bug修复

parent 59f88e4a
......@@ -396,7 +396,7 @@ export default {
var country = that.address.find(item=>item.id == that.order.consigneeVO.country)||''
if(country){
if(that.$lang.locale=='zh'){
if(that.$i18n.locale=='zh'){
orderAdderss = country.titleZh
}else{
orderAdderss = country.titleEn
......@@ -404,7 +404,7 @@ export default {
if(that.order.consigneeVO.province){
var province = country.children.find(item=>item.id == that.order.consigneeVO.province)||''
if(province){
if(that.$lang.locale=='zh'){
if(that.$i18n.locale=='zh'){
orderAdderss += province.titleZh
}else{
orderAdderss += province.titleEn
......@@ -412,7 +412,7 @@ export default {
if(that.order.consigneeVO.city){
var city = province.children.find(item=>item.id == that.order.consigneeVO.city)||''
if(city){
if(that.$lang.locale=='zh'){
if(that.$i18n.locale=='zh'){
orderAdderss += city.titleZh
}else{
orderAdderss += city.titleEn
......
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