st-comp 0.0.242 → 0.0.243
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/es/VarietySearch.cjs +1 -1
- package/es/VarietySearch.js +5 -5
- package/es/VarietyTextCopy.cjs +3 -3
- package/es/VarietyTextCopy.js +4 -4
- package/es/style.css +1 -1
- package/lib/bundle.js +1 -1
- package/lib/bundle.umd.cjs +1 -1
- package/lib/{index-0c373441.js → index-f513d22c.js} +6 -6
- package/lib/{python-4e746381.js → python-8c7ede72.js} +1 -1
- package/lib/style.css +1 -1
- package/package.json +1 -1
- package/packages/VarietySearch/components/AddTag/index.vue +4 -4
package/package.json
CHANGED
|
@@ -197,7 +197,7 @@ const getTagList = async () => {
|
|
|
197
197
|
// 个人标签
|
|
198
198
|
const res = await request.post('/alarm/deliversign/findTagsByUserId', { tagName: searchValue.value })
|
|
199
199
|
tagList.value = []
|
|
200
|
-
tagMap.value =
|
|
200
|
+
tagMap.value = {
|
|
201
201
|
...tagMap.value,
|
|
202
202
|
...res.body.reduce((r, i) => {
|
|
203
203
|
return {
|
|
@@ -205,7 +205,7 @@ const getTagList = async () => {
|
|
|
205
205
|
[i.id]: i.tagName
|
|
206
206
|
}
|
|
207
207
|
}, {})
|
|
208
|
-
|
|
208
|
+
}
|
|
209
209
|
nextTick(() => {
|
|
210
210
|
tagList.value = res.body?.map(item => ({
|
|
211
211
|
name: item.tagName,
|
|
@@ -216,7 +216,7 @@ const getTagList = async () => {
|
|
|
216
216
|
// 系统标签
|
|
217
217
|
const res = await request.post('/alarm/deliversign/findSystemTagsByTagName', { tagName: searchValue.value })
|
|
218
218
|
tagList.value = []
|
|
219
|
-
tagMap.value =
|
|
219
|
+
tagMap.value = {
|
|
220
220
|
...tagMap.value,
|
|
221
221
|
...res.body.reduce((r, i) => {
|
|
222
222
|
return {
|
|
@@ -224,7 +224,7 @@ const getTagList = async () => {
|
|
|
224
224
|
[i.id]: i.tagName
|
|
225
225
|
}
|
|
226
226
|
}, {})
|
|
227
|
-
|
|
227
|
+
}
|
|
228
228
|
nextTick(() => {
|
|
229
229
|
tagList.value = res.body?.map(item => ({
|
|
230
230
|
name: item.tagName,
|