CzRger 6 months ago
parent
commit
4a99a1dc70
1 changed files with 2 additions and 1 deletions
  1. 2 1
      src/views/web/list/index.vue

+ 2 - 1
src/views/web/list/index.vue

@@ -415,6 +415,7 @@ const toArchive = (item) => {
   let url = tableConfigCpt.value.themeUrl
   switch (String(tableConfigCpt.value.themeType)) {
     case '2': {
+      url += `?themeId=${tableConfigCpt.value.themeId}`
       if (tableConfigCpt.value.themeField) {
         let p = []
         JSON.parse(tableConfigCpt.value.themeField).forEach(v => {
@@ -425,7 +426,7 @@ const toArchive = (item) => {
           }
         })
         if (p.length > 0) {
-          url += `?${p.join('&')}`
+          url += `&${p.join('&')}`
         }
         console.log(url)
       }