提交 f2429b35 作者: 吴佳伟

fix: 修改农机活动发布时地区一栏显示'[]'

上级 c630a5c1
...@@ -99,7 +99,7 @@ ...@@ -99,7 +99,7 @@
function getScope(scope: any) { function getScope(scope: any) {
if (!scope || !pageData.options.address) { if (!scope || !pageData.options.address) {
return [] return ''
} }
const values = scope.split(',') const values = scope.split(',')
...@@ -126,7 +126,7 @@ ...@@ -126,7 +126,7 @@
labels.push(text) labels.push(text)
} }
return labels.join(' / ') return labels ? labels.join(' / ') : ''
} }
function getDetails(id) { function getDetails(id) {
......
...@@ -86,7 +86,7 @@ ...@@ -86,7 +86,7 @@
function getScope(scope: any) { function getScope(scope: any) {
if (!scope || !pageData.options.address) { if (!scope || !pageData.options.address) {
return [] return ''
} }
const values = scope.split(',') const values = scope.split(',')
...@@ -113,7 +113,7 @@ ...@@ -113,7 +113,7 @@
labels.push(text) labels.push(text)
} }
return labels.join(' / ') return labels ? labels.join(' / ') : ''
} }
function getDetails(id) { function getDetails(id) {
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论