table超出隐藏+console

This commit is contained in:
shijingjing
2022-09-20 09:23:42 +08:00
parent 420455902f
commit 0e6ec0a31d
3 changed files with 31 additions and 8 deletions

View File

@@ -183,14 +183,14 @@ export default {
}) })
data = [ ...imgs, ...videos, ...files, ...links, ...miniapps ] data = [ ...imgs, ...videos, ...files, ...links, ...miniapps ]
this.shareToExternalChat({ text: text, attachments: data }).then((res) =>{ this.shareToExternalChat({ text: text, attachments: data }).then((res) =>{
// err_msg: "shareToExternalChat:ok" console.log(res)
if (res.err_msg == "shareToExternalChat:ok") { // if (res.err_msg == "shareToExternalChat:ok") {
this.status = 'ok' // this.status = 'ok'
this.nextCallback() // this.nextCallback()
} else { // } else {
this.status = 'fail' // this.status = 'fail'
this.nextCallback() // this.nextCallback()
} // }
}) })
}, },
nextCallback() { nextCallback() {

View File

@@ -499,6 +499,18 @@ export default {
background: #eeef !important; background: #eeef !important;
} }
} }
::v-deep .AiTable .u-table .u-tr .u-td p{
width: 100%;
word-break: keep-all;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
::v-deep .AiTable .u-table .u-tr .u-td {
width: 30%;
}
} }
} }
} }

View File

@@ -510,6 +510,17 @@ export default {
background: #eeef !important; background: #eeef !important;
} }
} }
::v-deep .AiTable .u-table .u-tr .u-td p{
width: 100%;
word-break: keep-all;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
::v-deep .AiTable .u-table .u-tr .u-td {
width: 30%;
}
} }
} }
} }