askbot-dragon 88.0.41 → 88.0.43
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
|
@@ -117,10 +117,10 @@
|
|
|
117
117
|
</div>
|
|
118
118
|
<div class="libang_updateTime">
|
|
119
119
|
<div class="libang_updataTime_left">
|
|
120
|
-
<div v-show="docSource[item.source]" class="upload-source">
|
|
120
|
+
<div v-show="docSource[item.source]" v-if="false" class="upload-source">
|
|
121
121
|
{{ docSource[item.source] }}
|
|
122
122
|
</div>
|
|
123
|
-
<div class="libang_floder" @click.stop="clickFloder(item)">
|
|
123
|
+
<div class="libang_floder" v-if="false" @click.stop="clickFloder(item)">
|
|
124
124
|
<i class="iconfont guoran-tongyichicun-wenjianjia-zhankaizhuangtai--folderOpen"></i>
|
|
125
125
|
{{ item.folderName }}
|
|
126
126
|
</div>
|
|
@@ -153,11 +153,11 @@
|
|
|
153
153
|
<div class="libang_source_name" >
|
|
154
154
|
<img class="libang_title_icon" height="18px" width="18px" :src="getIconSrc(item)" alt srcset />
|
|
155
155
|
<span class="libang_title_from">{{ item.from }}</span>
|
|
156
|
-
<div v-show="docSource[item.source]" class="upload_source">
|
|
156
|
+
<div v-show="docSource[item.source]" v-if="false" class="upload_source">
|
|
157
157
|
-{{ docSource[item.source] }}
|
|
158
158
|
</div>
|
|
159
159
|
</div>
|
|
160
|
-
<div class="libang_source_floder" @click.stop="clickFloder(item)">
|
|
160
|
+
<div class="libang_source_floder" v-if="false" @click.stop="clickFloder(item)">
|
|
161
161
|
<i class="iconfont guoran-tongyichicun-wenjianjia-zhankaizhuangtai--folderOpen"></i>
|
|
162
162
|
{{ item.folderName }}
|
|
163
163
|
</div>
|
|
@@ -627,6 +627,9 @@ export default {
|
|
|
627
627
|
display: flex;
|
|
628
628
|
justify-content: flex-start;
|
|
629
629
|
}
|
|
630
|
+
.upload-source {
|
|
631
|
+
// flex: none;
|
|
632
|
+
}
|
|
630
633
|
}
|
|
631
634
|
|
|
632
635
|
.alc-box-introduction {
|
|
@@ -796,6 +799,7 @@ export default {
|
|
|
796
799
|
|
|
797
800
|
.upload-source {
|
|
798
801
|
margin-right: 5px;
|
|
802
|
+
flex: none;
|
|
799
803
|
}
|
|
800
804
|
|
|
801
805
|
i {
|
|
@@ -822,7 +826,7 @@ export default {
|
|
|
822
826
|
.libang_list_cell {
|
|
823
827
|
border-top: solid 1px #eeeeee;
|
|
824
828
|
padding: 10px 0 10px;
|
|
825
|
-
|
|
829
|
+
font-size: 12px;
|
|
826
830
|
.libang_title {
|
|
827
831
|
display: flex;
|
|
828
832
|
flex-wrap: wrap;
|
|
@@ -1031,7 +1035,7 @@ export default {
|
|
|
1031
1035
|
margin-bottom: 5px;
|
|
1032
1036
|
border-radius: 5px;
|
|
1033
1037
|
cursor: pointer;
|
|
1034
|
-
font-size:
|
|
1038
|
+
font-size: 12px;
|
|
1035
1039
|
|
|
1036
1040
|
.libang_list_cell_left {
|
|
1037
1041
|
margin-right: 5px;
|
|
@@ -1056,6 +1060,9 @@ export default {
|
|
|
1056
1060
|
white-space: nowrap;
|
|
1057
1061
|
line-height: 20px;
|
|
1058
1062
|
}
|
|
1063
|
+
.upload_source {
|
|
1064
|
+
flex: none;
|
|
1065
|
+
}
|
|
1059
1066
|
}
|
|
1060
1067
|
|
|
1061
1068
|
.libang_source_floder {
|
|
@@ -1068,7 +1075,8 @@ export default {
|
|
|
1068
1075
|
cursor: pointer;
|
|
1069
1076
|
|
|
1070
1077
|
.iconfont {
|
|
1071
|
-
margin: 0
|
|
1078
|
+
margin: 0 5px;
|
|
1079
|
+
font-size: 14px
|
|
1072
1080
|
}
|
|
1073
1081
|
}
|
|
1074
1082
|
}
|
|
@@ -68,7 +68,7 @@
|
|
|
68
68
|
import TextMessage from '@/components/message/TextMessage'
|
|
69
69
|
import FormTemplate from "@/components/formTemplate";
|
|
70
70
|
|
|
71
|
-
import FormTemplate from "@/components/formTemplate";
|
|
71
|
+
// import FormTemplate from "@/components/formTemplate";
|
|
72
72
|
/* import TextMessage from "@/components/message/TextMessage";*/
|
|
73
73
|
|
|
74
74
|
// import FormTemplate from '@/components/formTemplate'
|