13707 有闲空间标点信息 安全措施不显示

2024年1月19日V01.00.51
liujun 2024-01-18 15:56:12 +08:00
parent dda1af7787
commit fdc8c7f346
1 changed files with 8 additions and 0 deletions

View File

@ -264,7 +264,15 @@ export default {
this.pd.CONFIRM_USER_MEASURES = this.pd.OTHER_PROTECTIVE_MEASURES.split(';_;')[0]
this.pd.APPROVE_USER_MEASURES = this.pd.OTHER_PROTECTIVE_MEASURES.split(';_;')[1]
}).catch((e) => {
console.log(e)
})
},
findCharIndex(str, char, num) {
let index = str.indexOf(char)
for (let i = 0; i < num - 1; i++) {
index = str.indexOf(char, index + 1)
}
return index
}
}
}