af-mobile-client-vue3 1.3.82 → 1.3.83
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
|
@@ -930,7 +930,7 @@ function handleCheckboxChange(item: any, checked: boolean) {
|
|
|
930
930
|
>
|
|
931
931
|
<div class="tag-content">
|
|
932
932
|
<VanIcon v-if="column.tagIcon" :name="column.tagIcon" class="tag-icon" />
|
|
933
|
-
<span v-if="column.showLabel === undefined || column.showLabel" class="tag-title">{{ `${column.title}
|
|
933
|
+
<span v-if="column.showLabel === undefined || column.showLabel" class="tag-title">{{ `${column.title}:` }}</span>
|
|
934
934
|
<XBadge
|
|
935
935
|
:dict-name="column.dictName"
|
|
936
936
|
:dict-value="item[column.dataIndex]"
|
|
@@ -1176,16 +1176,28 @@ function handleCheckboxChange(item: any, checked: boolean) {
|
|
|
1176
1176
|
width: auto;
|
|
1177
1177
|
font-size: var(--van-font-size-md);
|
|
1178
1178
|
margin: 4px 4px;
|
|
1179
|
+
flex: 0 0 auto;
|
|
1180
|
+
min-width: 0;
|
|
1181
|
+
max-width: 100%;
|
|
1179
1182
|
:deep(.van-tag) {
|
|
1183
|
+
max-width: 100%;
|
|
1180
1184
|
width: fit-content;
|
|
1181
|
-
display: inline-
|
|
1182
|
-
align
|
|
1185
|
+
display: inline-block;
|
|
1186
|
+
vertical-align: middle;
|
|
1187
|
+
white-space: normal;
|
|
1188
|
+
overflow-wrap: anywhere;
|
|
1189
|
+
word-break: break-word;
|
|
1183
1190
|
padding: 2px 8px;
|
|
1184
1191
|
border-radius: 4px;
|
|
1192
|
+
min-width: 0;
|
|
1185
1193
|
}
|
|
1186
1194
|
.tag-content {
|
|
1187
|
-
display:
|
|
1188
|
-
|
|
1195
|
+
display: inline;
|
|
1196
|
+
white-space: normal;
|
|
1197
|
+
overflow-wrap: anywhere;
|
|
1198
|
+
word-break: break-word;
|
|
1199
|
+
max-width: 100%;
|
|
1200
|
+
min-width: 0;
|
|
1189
1201
|
}
|
|
1190
1202
|
.tag-icon {
|
|
1191
1203
|
margin-right: 4px;
|
|
@@ -1196,6 +1208,10 @@ function handleCheckboxChange(item: any, checked: boolean) {
|
|
|
1196
1208
|
.tag-title {
|
|
1197
1209
|
font-weight: normal;
|
|
1198
1210
|
white-space: nowrap;
|
|
1211
|
+
margin-right: 4px;
|
|
1212
|
+
}
|
|
1213
|
+
.tag-title::after {
|
|
1214
|
+
content: '\00a0'; /* non-breaking space */
|
|
1199
1215
|
}
|
|
1200
1216
|
}
|
|
1201
1217
|
}
|