|
@@ -410,7 +410,7 @@ export default {
|
|
|
if (i.length) {
|
|
|
i.forEach(i2 => {
|
|
|
if (
|
|
|
- i2.ttype == 2 &&
|
|
|
+ // i2.ttype == 2 &&
|
|
|
!_userList.find(i3 => i3.userid == i2.userid)
|
|
|
) {
|
|
|
_userList.push(i2);
|
|
@@ -1309,6 +1309,7 @@ ${_choiceText}
|
|
|
width: 100%;
|
|
|
height: 100%;
|
|
|
box-sizing: border-box;
|
|
|
+ overflow: auto;
|
|
|
}
|
|
|
.aiCopy {
|
|
|
position: absolute;
|
|
@@ -1444,9 +1445,10 @@ ${_choiceText}
|
|
|
|
|
|
.aiArea {
|
|
|
width: 100%;
|
|
|
- height: calc(100% - 280px);
|
|
|
+ max-height: calc(100% - 280px);
|
|
|
box-sizing: border-box;
|
|
|
padding: 10px;
|
|
|
+ overflow-x: hidden;
|
|
|
}
|
|
|
|
|
|
.aa_title {
|