提交 113c73bc 作者: wk

轮播图缺省

父级 bbe9cfe5
...@@ -129,11 +129,7 @@ ...@@ -129,11 +129,7 @@
data() { data() {
return { return {
title: '欢迎您访问一点通', title: '欢迎您访问一点通',
banners: [{ banners: [],
"coverImg": "../../static/banner.png"
}, {
"coverImg": "https://img.redocn.com/sheying/20150804/gongdi_4770950.jpg"
}],
statusBarHeight: 20, statusBarHeight: 20,
isCommonSel: true, isCommonSel: true,
isRecentlySel: false, isRecentlySel: false,
...@@ -361,6 +357,19 @@ ...@@ -361,6 +357,19 @@
if (result.code == 0) { if (result.code == 0) {
if (result.data.list.length > 0) { if (result.data.list.length > 0) {
this.banners = result.data.list this.banners = result.data.list
} else {
this.banners = []
if (this.role == 'VISITOR') {
this.banners.push({
"coverImg": "../../static/banner-authority.png"
})
} else {
this.banners.push({
"coverImg": "../../static/banner-content.png"
})
}
} }
} else { } else {
this.$toast.showToast(result.msg) this.$toast.showToast(result.msg)
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
Please register or to comment