Commit 5172b0e8 authored by Administrator's avatar Administrator

Merge branch 'release' into 'jd_dev'

Release最新代码合并入jd_dev20241104

See merge request !35
parents 9c3819b5 9299c56b
...@@ -4,5 +4,6 @@ NODE_ENV = production ...@@ -4,5 +4,6 @@ NODE_ENV = production
ENV = 'staging' ENV = 'staging'
# base api # base api
VUE_APP_BASE_API = '/stage-api' VUE_APP_BASE_API = 'https://api.jd.qipx.top'
VUE_APP_HOME_API = 'https://api.jd.qipx.top'
...@@ -396,7 +396,7 @@ export default { ...@@ -396,7 +396,7 @@ export default {
var country = that.address.find(item=>item.id == that.order.consigneeVO.country)||'' var country = that.address.find(item=>item.id == that.order.consigneeVO.country)||''
if(country){ if(country){
if(that.$lang.locale=='zh'){ if(that.$i18n.locale=='zh'){
orderAdderss = country.titleZh orderAdderss = country.titleZh
}else{ }else{
orderAdderss = country.titleEn orderAdderss = country.titleEn
...@@ -404,7 +404,7 @@ export default { ...@@ -404,7 +404,7 @@ export default {
if(that.order.consigneeVO.province){ if(that.order.consigneeVO.province){
var province = country.children.find(item=>item.id == that.order.consigneeVO.province)||'' var province = country.children.find(item=>item.id == that.order.consigneeVO.province)||''
if(province){ if(province){
if(that.$lang.locale=='zh'){ if(that.$i18n.locale=='zh'){
orderAdderss += province.titleZh orderAdderss += province.titleZh
}else{ }else{
orderAdderss += province.titleEn orderAdderss += province.titleEn
...@@ -412,7 +412,7 @@ export default { ...@@ -412,7 +412,7 @@ export default {
if(that.order.consigneeVO.city){ if(that.order.consigneeVO.city){
var city = province.children.find(item=>item.id == that.order.consigneeVO.city)||'' var city = province.children.find(item=>item.id == that.order.consigneeVO.city)||''
if(city){ if(city){
if(that.$lang.locale=='zh'){ if(that.$i18n.locale=='zh'){
orderAdderss += city.titleZh orderAdderss += city.titleZh
}else{ }else{
orderAdderss += city.titleEn 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