移除一些eslint的报错
This commit is contained in:
parent
b434710c59
commit
3602b9865f
@ -508,7 +508,7 @@ export default {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
formatArea(row, column, cellValue, index) {
|
formatArea(row, column, cellValue, index) {
|
||||||
return cellValue ? cellValue : '不指定'
|
return cellValue || '不指定'
|
||||||
},
|
},
|
||||||
formPublished(row, column, cellValue, index) {
|
formPublished(row, column, cellValue, index) {
|
||||||
return cellValue === true ? '是' : '否'
|
return cellValue === true ? '是' : '否'
|
||||||
@ -521,7 +521,7 @@ export default {
|
|||||||
break
|
break
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return platform ? platform : '暂无'
|
return platform || '暂无'
|
||||||
},
|
},
|
||||||
delShare(row) {
|
delShare(row) {
|
||||||
this.$confirm('是否删除该分享图?', '提示', {
|
this.$confirm('是否删除该分享图?', '提示', {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user