askbot-dragon 88.0.20 → 88.0.22

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "askbot-dragon",
3
- "version": "88.0.20",
3
+ "version": "88.0.22",
4
4
  "scripts": {
5
5
  "serve": "vue-cli-service serve",
6
6
  "build": "vue-cli-service build",
@@ -118,6 +118,7 @@
118
118
  {{ docSource[item.source] }}
119
119
  </div>
120
120
  <div class="libang_floder" @click.stop="clickFloder(item)">
121
+ <i class="iconfont guoran-tongyichicun-wenjianjia-zhankaizhuangtai--folderOpen"></i>
121
122
  {{ item.folderName }}
122
123
  </div>
123
124
  </div>
@@ -144,8 +145,8 @@
144
145
  </template>
145
146
  <template v-if="msg.content.type == 0">
146
147
  <div v-for="(item, itemIndex) in msg.content.list" :key="itemIndex"
147
- class="libang_list_cell_recognition">
148
- <div class="libang_list_cell_left" @click="lookAttach(item.url, item, $event)">
148
+ class="libang_list_cell_recognition" @click="lookAttach(item.url, item, $event)">
149
+ <div class="libang_list_cell_left" >
149
150
  <div class="libang_source_name" >
150
151
  <img class="libang_title_icon" height="18px" width="18px" :src="getIconSrc(item)" alt srcset />
151
152
  <span class="libang_title_from">{{ item.from }}</span>&nbsp;-&nbsp;
@@ -154,10 +155,11 @@
154
155
  </div>
155
156
  </div>
156
157
  <div class="libang_source_floder" @click.stop="clickFloder(item)">
158
+ <i class="iconfont guoran-tongyichicun-wenjianjia-zhankaizhuangtai--folderOpen"></i>
157
159
  {{ item.folderName }}
158
160
  </div>
159
161
  </div>
160
- <i class="iconfont guoran-right"></i>
162
+ <i class="iconfont guoran-right" @click="lookAttach(item.url, item, $event)"></i>
161
163
  </div>
162
164
  </template>
163
165
  <div class="ad-loadmore" v-if="loadMoreFlag" @click="lazyLoadKnowledegList">查看更多</div>
@@ -933,12 +935,16 @@ export default {
933
935
  }
934
936
  .libang_floder {
935
937
  width:calc(100% - 90px);
936
- margin-left: 10px;
938
+ // margin-left: 10px;
937
939
  overflow: hidden;
938
940
  text-overflow: ellipsis;
939
941
  white-space: nowrap;
940
942
  color: #366aff;
941
943
  cursor: pointer;
944
+ text-align: left;
945
+ i {
946
+ margin-left: 8px;
947
+ }
942
948
  }
943
949
  }
944
950
  .libang_content_text {
@@ -1044,13 +1050,15 @@ export default {
1044
1050
  }
1045
1051
  .libang_source_floder {
1046
1052
  max-width: calc(226px - 24px);
1047
- margin-left: 24px;
1048
1053
  text-align: left;
1049
1054
  color: #366aff;
1050
1055
  overflow: hidden;
1051
1056
  text-overflow: ellipsis;
1052
1057
  white-space: nowrap;
1053
1058
  cursor: pointer;
1059
+ .iconfont {
1060
+ margin: 0 8px;
1061
+ }
1054
1062
  }
1055
1063
  }
1056
1064
  i {
@@ -31,7 +31,7 @@
31
31
  </div>
32
32
  <div class="header_title">
33
33
  <div class="header_close">
34
- <span>
34
+ <span class="title_left">
35
35
  {{ title ? title : "查看详情" }}
36
36
  </span>
37
37
  <section @click="close">
@@ -48,7 +48,7 @@
48
48
  <div class="drawer-header" :class="isLiBang && folderName ? 'libang_head' : ''" v-else>
49
49
  <div class="header_title">
50
50
  <div :class="isLiBang && folderName ? 'header_close' : 'header_top'">
51
- <span>
51
+ <span class="title_left">
52
52
  {{ title ? title : "查看详情" }}
53
53
  </span>
54
54
  <div class="header-btn">
@@ -672,6 +672,12 @@ justify-content: space-between;
672
672
  align-items: center;
673
673
  justify-content: space-between;
674
674
  line-height: 26px;
675
+ .title_left {
676
+ white-space: nowrap; /* 确保文本不会换行 */
677
+ overflow: hidden; /* 隐藏超出容器的文本 */
678
+ text-overflow: ellipsis; /* 当文本超出容器时显示省略号 */
679
+ margin-right: 8px;
680
+ }
675
681
  }
676
682
  .header_floder {
677
683
  display: flex;