Commit d43ff937 authored by 华国豪's avatar 华国豪 🙄

no message

parent a0568086
......@@ -1039,6 +1039,11 @@ export default {
res => {
if (res.data.resultCode === 1) {
let data = res.data.data.prods,list1 = [];
data.map((x, index)=>{
if (x.countries[0].name.indexOf('台湾') !== -1 || x.countries[0].name.indexOf('台灣') !== -1 || x.countries[0].name.indexOf('香港') !== -1 || x.countries[0].name.indexOf('澳門') !== -1 || x.countries[0].name.indexOf('澳门') !== -1){
x.countries[0].name = `中国-${x.countries[0].name}`
}
})
this.list1 = data;
} else {
this.Error(res.data.message);
......
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