1. 首页分组名称修改英文昵称过长时的显示bug
2. 更新安全问题添加未获取到安全问题的引导弹窗
This commit is contained in:
parent
529626818b
commit
b6620dd4ad
@ -605,6 +605,7 @@ page {
|
||||
|
||||
.group-name-text {
|
||||
padding: 0 32rpx;
|
||||
word-break: break-all;
|
||||
}
|
||||
|
||||
.group-name-line {
|
||||
|
||||
@ -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
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user