-
{{ $L('加入会议') }}
+
+
{{ $L('加入会议') }}
+
{{ meetingDescs.join }}
@@ -618,7 +627,15 @@ export default {
const value = match[1];
this.aibotList.map(h => {
if (h.value == value) {
- h.tags = AIModelNames(data[key]).map(item => item.label);
+ const items = AIModelNames(data[key])
+ h.tags = items.map(item => item.label);
+ h.tag = data[key.slice(0, -1)];
+ items.some(item => {
+ if (item.value == h.tag) {
+ h.tag = item.label;
+ return true;
+ }
+ })
}
});
}
diff --git a/resources/assets/sass/pages/page-apply.scss b/resources/assets/sass/pages/page-apply.scss
index 721f46f6c..2abc0dfba 100644
--- a/resources/assets/sass/pages/page-apply.scss
+++ b/resources/assets/sass/pages/page-apply.scss
@@ -359,12 +359,39 @@
.modal-item-info {
flex: 1;
- h4 {
- font-size: 18px;
- color: #333;
- margin: 0 0 10px 0;
- line-height: 1.2;
- font-weight: 500;
+ .modal-item-name {
+ display: flex;
+ flex-wrap: wrap;
+ gap: 8px;
+ list-style-type: none;
+ margin-bottom: 10px;
+
+ h4 {
+ font-size: 18px;
+ color: #333;
+ line-height: 26px;
+ font-weight: 500;
+ word-break: break-all;
+ }
+
+ .modal-item-tag {
+ cursor: pointer;
+ display: flex;
+ align-items: center;
+ padding: 4px 12px;
+ line-height: 18px;
+ background: #f5f5f5;
+ border-radius: 12px;
+ font-size: 12px;
+ color: #666;
+ border: none;
+ margin: 0;
+
+ > em {
+ padding-left: 4px;
+ font-style: normal;
+ }
+ }
}
.modal-item-desc {
@@ -384,10 +411,12 @@
row-gap: 4px;
flex-direction: column;
margin-bottom: 12px;
+
> p {
display: flex;
flex-wrap: wrap;
word-break: break-all;
+
> span {
opacity: 0.8;
padding-right: 6px;
@@ -395,24 +424,6 @@
}
}
- .modal-item-tags {
- display: flex;
- flex-wrap: wrap;
- gap: 8px;
- list-style-type: none;
- margin-bottom: 12px;
-
- > li {
- padding: 4px 12px;
- background: #f5f5f5;
- border-radius: 12px;
- font-size: 12px;
- color: #666;
- border: none;
- margin: 0;
- }
- }
-
.modal-item-btns {
display: flex;
flex-wrap: wrap;
@@ -420,7 +431,6 @@
}
}
}
-
}
.ai-tabs {
@@ -468,7 +478,7 @@
}
@media (max-width: 500px) {
- padding: 8px 0;
+ padding: 0;
.ivu-modal-wrap-ul {
margin: 0;