Browse Source

关联主题

CzRger 6 months ago
parent
commit
8f9e11a4f0
2 changed files with 5 additions and 12 deletions
  1. 1 1
      src/views/manage/index/index.vue
  2. 4 11
      src/views/manage/index/theme.vue

+ 1 - 1
src/views/manage/index/index.vue

@@ -161,7 +161,7 @@ const onRelation = (row) => {
 }
 const onTheme = (row) => {
   state.theme.transfer = {
-    id: row.id
+    row: JSON.parse(JSON.stringify(row))
   }
   state.theme.show = true
 }

+ 4 - 11
src/views/manage/index/theme.vue

@@ -90,7 +90,7 @@ const onSubmit = () => {
     } as any).then(() => {
       state.loading = true
       const params = {
-        indexId: props.transfer.id,
+        indexId: props.transfer.row.id,
         themeId: state.form.themeId,
         themeField: JSON.stringify(state.textTable.data)
       }
@@ -132,7 +132,7 @@ const handleSelect = (obj) => {
 }
 const initText = () => {
   sysIndexFieldList(proxy.$util.formatGetParam({
-    indexId: props.transfer.id
+    indexId: props.transfer.row.id
   })).then(res => {
     if (res.code === 200) {
       state.textOptions = res.data
@@ -142,15 +142,8 @@ const initText = () => {
   })
 }
 const initDetail = () => {
-  state.loading = true
-  sysIndexGetThemeByIndex(props.transfer.id).then(res => {
-    if (res.code === 200) {
-      state.form = res.data || {}
-      state.loading = false
-    } else {
-      ElMessage.error(res.msg)
-    }
-  })
+  state.form = props.transfer.row
+  state.textTable.data = state.form.themeField ? JSON.parse(state.form.themeField) : []
 }
 watch(() => props.show, (n) => {
   if (n) {