Commit bffca079 authored by 李尚科's avatar 李尚科

fix

parent 3cf615f3
Pipeline #7808 passed with stage
in 24 seconds
......@@ -116,7 +116,7 @@ class OptionService extends Service {
city_code = city_code ? parseInt(city_code) : 330100;
for (let i in developers) {
const developer = developers[i];
if (city_code === 330100 && developer.id === 2) {
if (city_code === 330100 && [2,4,5].includes(developer.id)) {
ret.push({
id: developer.id,
name: developer.name,
......@@ -124,7 +124,7 @@ class OptionService extends Service {
value: developer.id,
});
}
if (city_code === 500000 && developer.id === 1) {
if (city_code === 500000 && [1,3].includes(developer.id)) {
ret.push({
id: developer.id,
name: developer.name,
......
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