1. 首页分组名称修改英文昵称过长时的显示bug

2. 更新安全问题添加未获取到安全问题的引导弹窗
This commit is contained in:
范鹏 2024-09-13 13:37:57 +08:00
parent 529626818b
commit b6620dd4ad
2 changed files with 13 additions and 0 deletions

View File

@ -605,6 +605,7 @@ page {
.group-name-text {
padding: 0 32rpx;
word-break: break-all;
}
.group-name-line {

View File

@ -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