@@ -195,6 +195,31 @@
overflow: hidden;
-webkit-box-orient: vertical;
}
+ .chat-user {
+ .user-msg-title {
+ .user-view-inline {
+ .user-view-name {
+ max-width: 100%;
+ white-space: nowrap;
+ overflow: hidden;
+ text-overflow: ellipsis;
+ }
+ .chat-message {
+ .manage-title {
+ max-width: 70%;
</style>
<style lang="scss" scoped>
@@ -529,6 +529,12 @@
this.refreshDetail();
},
+ '$route' (To) {
+ if (To.name == 'docs-edit') {
+ this.sid = To.params.sid;
+ },
+
docDrawerTab(act) {
switch (act) {
case "menu":
@@ -226,7 +226,9 @@
'$route' (To) {
- this.sid = To.params.sid;
+ if (To.name == 'docs-view') {
methods: {
@@ -652,6 +652,11 @@
this.projectLabel = [];
this.projectSimpleLabel = [];
this.getDetail();
+ if (To.name == 'project-panel') {
+ this.projectid = To.params.projectid;