diff --git a/pages/home/home.vue b/pages/home/home.vue index 3900ae7..c5eef4d 100644 --- a/pages/home/home.vue +++ b/pages/home/home.vue @@ -605,6 +605,7 @@ page { .group-name-text { padding: 0 32rpx; + word-break: break-all; } .group-name-line { diff --git a/pages/updateSafeQuestion/updateSafeQuestion.vue b/pages/updateSafeQuestion/updateSafeQuestion.vue index 598b6f1..c4fb2a0 100644 --- a/pages/updateSafeQuestion/updateSafeQuestion.vue +++ b/pages/updateSafeQuestion/updateSafeQuestion.vue @@ -151,6 +151,18 @@ export default { this.show = true }, async getQuestionList() { + const netWork = await this.getNetworkType() + if(!netWork) { + uni.showModal({ + title: '提示', + content: '未获取到问题列表,请退出重试', + showCancel: false, + success: () => { + uni.navigateBack() + } + }) + return + } const { code, data, message } = await getQuestionListRequest() if(code === 0) { this.questionList = data