CzRger преди 6 месеца
родител
ревизия
d7d2c18ed1

+ 5 - 0
src/api/modules/manage/theme.ts

@@ -80,4 +80,9 @@ export const sysThemeIndexMainConfig = (params: any) => handle({
 export const sysThemeIndexDelete = (id: any) => handle({
 export const sysThemeIndexDelete = (id: any) => handle({
   url: `/${suffix}/sysThemeIndex/delete/${id}`,
   url: `/${suffix}/sysThemeIndex/delete/${id}`,
   method: 'get',
   method: 'get',
+})
+// 获取当前主题
+export const sysThemeGetThemeByThemeType = () => handle({
+  url: `/${suffix}/sysTheme/getThemeByThemeType/1`,
+  method: 'get',
 })
 })

+ 5 - 7
src/components/cus/cus-form-link/upload.vue

@@ -291,15 +291,13 @@ export default defineComponent({
         const formData = new FormData();
         const formData = new FormData();
         formData.append("file", options.file);
         formData.append("file", options.file);
         frontUploadFile(formData).then(res => {
         frontUploadFile(formData).then(res => {
-          if (res?.code === 200) {
-            state.paramVal = [...state.paramVal, {
-              [props.urlKey]: res.data.path,
-              [props.nameKey]: res.data.filename.replace(/,/g, '_')
-            }]
-          }
+          state.paramVal = [...state.paramVal, {
+            [props.urlKey]: res.data.path,
+            [props.nameKey]: res.data.filename.replace(/,/g, '_')
+          }]
           state.loading = false
           state.loading = false
         }).catch(() => {
         }).catch(() => {
-          state.loading = false
+          // state.loading = false
         })
         })
       }
       }
     }
     }

+ 2 - 0
src/router/index.ts

@@ -9,6 +9,7 @@ import {useAppStore, useThemeStore} from "@/stores";
 import {toLogin} from "@/utils/permissions";
 import {toLogin} from "@/utils/permissions";
 import initRootVar from "@/style/initRootVar";
 import initRootVar from "@/style/initRootVar";
 import {getCurrentUser} from "@/api/modules/manage/user";
 import {getCurrentUser} from "@/api/modules/manage/user";
+import {sysThemeGetThemeByThemeType} from "@/api/modules/manage/theme";
 
 
 
 
 const routes = [
 const routes = [
@@ -58,6 +59,7 @@ export const initMainRouter = async () => {
         })
         })
         await Promise.all([
         await Promise.all([
             getCurrentUser(),
             getCurrentUser(),
+            sysThemeGetThemeByThemeType(),
         ]).then(async ([user, theme]) => {
         ]).then(async ([user, theme]) => {
             userInfo = user.data
             userInfo = user.data
             userInfo.isAdmin = true
             userInfo.isAdmin = true

+ 6 - 12
src/views/global/login/index.vue

@@ -83,11 +83,9 @@ const onLogin = () => {
   ref_form.value.submit().then(() => {
   ref_form.value.submit().then(() => {
     state.loadingLogin = true
     state.loadingLogin = true
     login(state.form).then(res => {
     login(state.form).then(res => {
-      if (res.code === 200) {
-        AppStore.setToken(res.data)
-      } else {
-        ElMessage.error(res.msg)
-      }
+      AppStore.setToken(res.data)
+      state.loadingLogin = false
+    }).catch(() => {
       state.loadingLogin = false
       state.loadingLogin = false
     })
     })
   }).catch((e) => {
   }).catch((e) => {
@@ -101,13 +99,9 @@ const onLogin = () => {
 const getCode = () =>{
 const getCode = () =>{
   state.loadingCode = true
   state.loadingCode = true
   captcha().then(res => {
   captcha().then(res => {
-    if (res.code === 200) {
-      state.codeBase64 = res.data.captcherImg
-      state.form.userKey = res.data.userKey
-      state.loadingCode = false
-    } else {
-      ElMessage.error(res.msg)
-    }
+    state.codeBase64 = res.data.captcherImg
+    state.form.userKey = res.data.userKey
+    state.loadingCode = false
   })
   })
 }
 }
 onMounted(() => {
 onMounted(() => {

+ 7 - 13
src/views/manage/index/detail.vue

@@ -158,13 +158,11 @@ const onSubmit = () => {
     } as any).then(() => {
     } as any).then(() => {
       state.loading = true
       state.loading = true
       sysIndexSaveOrUpdate(state.form).then(res => {
       sysIndexSaveOrUpdate(state.form).then(res => {
-        if (res.code === 200) {
-          ElMessage.success(props.transfer.mode === 'add' ? '新增成功!' : '编辑成功!')
-          emit('update:show', false)
-          emit('refresh')
-        } else {
-          ElMessage.error(res.msg)
-        }
+        ElMessage.success(props.transfer.mode === 'add' ? '新增成功!' : '编辑成功!')
+        emit('update:show', false)
+        emit('refresh')
+        state.loading = false
+      }).catch(() => {
         state.loading = false
         state.loading = false
       })
       })
     }).catch(() => {})
     }).catch(() => {})
@@ -179,12 +177,8 @@ const onSubmit = () => {
 const initDetail = () => {
 const initDetail = () => {
   state.loading = true
   state.loading = true
   sysIndexGetDetail(props.transfer.id).then(res => {
   sysIndexGetDetail(props.transfer.id).then(res => {
-    if (res.code === 200) {
-      state.form = res.data
-      state.loading = false
-    } else {
-      ElMessage.error(res.msg)
-    }
+    state.form = res.data
+    state.loading = false
   })
   })
 }
 }
 watch(() => props.show, (n) => {
 watch(() => props.show, (n) => {

+ 6 - 14
src/views/manage/index/index.vue

@@ -132,13 +132,9 @@ const onPage = (pageNum, pageSize) => {
   }
   }
   state.query.loading = true
   state.query.loading = true
   sysIndexFindIndexByPage(proxy.$util.formatGetParam(params)).then(res => {
   sysIndexFindIndexByPage(proxy.$util.formatGetParam(params)).then(res => {
-    if (res.code === 200) {
-      state.query.result.total = res.data.totalElements
-      state.query.result.data = res.data.content
-      state.query.loading = false
-    } else {
-      ElMessage.error(res.msg)
-    }
+    state.query.result.total = res.data.totalElements
+    state.query.result.data = res.data.content
+    state.query.loading = false
   })
   })
 }
 }
 const onSearch = () => {
 const onSearch = () => {
@@ -193,13 +189,9 @@ const onDel = (row) => {
   } as any).then(() => {
   } as any).then(() => {
     state.query.loading = true
     state.query.loading = true
     sysIndexDeleteIndexById(row.id).then(res => {
     sysIndexDeleteIndexById(row.id).then(res => {
-      if (res.code === 200) {
-        ElMessage.success('删除成功!')
-        state.query.loading = false
-        onSearch()
-      } else {
-        ElMessage.error(res.msg)
-      }
+      ElMessage.success('删除成功!')
+      state.query.loading = false
+      onSearch()
     })
     })
   }).catch(() => {})
   }).catch(() => {})
 }
 }

+ 14 - 28
src/views/manage/index/relation.vue

@@ -98,11 +98,7 @@ const tagTreeMapCpt = computed(() => {
 })
 })
 const initTree = () => {
 const initTree = () => {
   sysLabelGetAllSysLabels().then(res => {
   sysLabelGetAllSysLabels().then(res => {
-    if (res.code === 200) {
-      state.tagTree = res.data
-    } else {
-      ElMessage.error(res.msg)
-    }
+    state.tagTree = res.data
   })
   })
 }
 }
 const handleSelect = (val) => {
 const handleSelect = (val) => {
@@ -116,27 +112,21 @@ const handleSelect = (val) => {
       indexId: props.transfer.id,
       indexId: props.transfer.id,
       typeId: val
       typeId: val
     }).then(res => {
     }).then(res => {
-      if (res.code === 200) {
-        ElMessage.success('添加成功!')
-        emit('refresh')
-        state.loading = false
-        state.tagValue = ''
-        initRelation()
-      } else {
-        ElMessage.error(res.msg)
-      }
+      ElMessage.success('添加成功!')
+      emit('refresh')
+      state.loading = false
+      state.tagValue = ''
+      initRelation()
+    }).catch(() => {
+      state.loading = false
     })
     })
   }).catch(() => {})
   }).catch(() => {})
 }
 }
 const initRelation = () => {
 const initRelation = () => {
   state.query.loading = true
   state.query.loading = true
   sysIndexFindAllByIndexId(props.transfer.id).then(res => {
   sysIndexFindAllByIndexId(props.transfer.id).then(res => {
-    if (res.code === 200) {
-      state.query.result.data = res.data
-      state.query.loading = false
-    } else {
-      ElMessage.error(res.msg)
-    }
+    state.query.result.data = res.data
+    state.query.loading = false
   })
   })
 }
 }
 const onDel = (row) => {
 const onDel = (row) => {
@@ -147,14 +137,10 @@ const onDel = (row) => {
   } as any).then(() => {
   } as any).then(() => {
     state.loading = true
     state.loading = true
     sysIndexDeleteByLinkId(row.id).then(res => {
     sysIndexDeleteByLinkId(row.id).then(res => {
-      if (res.code === 200) {
-        ElMessage.success('删除成功!')
-        emit('refresh')
-        state.loading = false
-        initRelation()
-      } else {
-        ElMessage.error(res.msg)
-      }
+      ElMessage.success('删除成功!')
+      emit('refresh')
+      state.loading = false
+      initRelation()
     })
     })
   }).catch(() => {})
   }).catch(() => {})
 }
 }

+ 5 - 7
src/views/manage/index/text-detail.vue

@@ -172,13 +172,11 @@ const onSubmit = () => {
           state.form.fieldAnalyzer = JSON.stringify(state.textTable.data)
           state.form.fieldAnalyzer = JSON.stringify(state.textTable.data)
         }
         }
         sysIndexFieldSaveOrUpdate(state.form).then(res => {
         sysIndexFieldSaveOrUpdate(state.form).then(res => {
-          if (res.code === 200) {
-            ElMessage.success(props.transfer.mode === 'add' ? '新增成功!' : '编辑成功!')
-            emit('update:show', false)
-            emit('refresh')
-          } else {
-            ElMessage.error(res.msg)
-          }
+          ElMessage.success(props.transfer.mode === 'add' ? '新增成功!' : '编辑成功!')
+          emit('update:show', false)
+          emit('refresh')
+          state.loading = false
+        }).catch(() => {
           state.loading = false
           state.loading = false
         })
         })
       }).catch(() => {})
       }).catch(() => {})

+ 7 - 13
src/views/manage/index/text.vue

@@ -85,12 +85,10 @@ const initText = () => {
   sysIndexFieldList(proxy.$util.formatGetParam({
   sysIndexFieldList(proxy.$util.formatGetParam({
     indexId: props.transfer.id
     indexId: props.transfer.id
   })).then(res => {
   })).then(res => {
-    if (res.code === 200) {
-      state.query.result.data = res.data
-      state.query.loading = false
-    } else {
-      ElMessage.error(res.msg)
-    }
+    state.query.result.data = res.data
+    state.query.loading = false
+  }).catch(() => {
+    state.loading = false
   })
   })
 }
 }
 const onAdd = () => {
 const onAdd = () => {
@@ -117,13 +115,9 @@ const onDel = (row) => {
   } as any).then(() => {
   } as any).then(() => {
     state.query.loading = true
     state.query.loading = true
     sysIndexFieldDeleteById(row.id).then(res => {
     sysIndexFieldDeleteById(row.id).then(res => {
-      if (res.code === 200) {
-        ElMessage.success('删除成功!')
-        state.query.loading = false
-        initText()
-      } else {
-        ElMessage.error(res.msg)
-      }
+      ElMessage.success('删除成功!')
+      state.query.loading = false
+      initText()
     })
     })
   }).catch(() => {})
   }).catch(() => {})
 }
 }

+ 7 - 17
src/views/manage/index/theme.vue

@@ -95,13 +95,11 @@ const onSubmit = () => {
         themeField: state.textTable.data.length > 0 ? JSON.stringify(state.textTable.data) : ''
         themeField: state.textTable.data.length > 0 ? JSON.stringify(state.textTable.data) : ''
       }
       }
       sysIndexSaveThemeInfo(params).then(res => {
       sysIndexSaveThemeInfo(params).then(res => {
-        if (res.code === 200) {
-          ElMessage.success('保存成功!')
-          emit('update:show', false)
-          emit('refresh')
-        } else {
-          ElMessage.error(res.msg)
-        }
+        ElMessage.success('保存成功!')
+        emit('update:show', false)
+        emit('refresh')
+        state.loading = false
+      }).catch(() => {
         state.loading = false
         state.loading = false
       })
       })
     }).catch(() => {})
     }).catch(() => {})
@@ -115,11 +113,7 @@ const onSubmit = () => {
 }
 }
 const initTheme = () => {
 const initTheme = () => {
   sysThemeGetPageTheme('page=1&size=1000&themeType=2&themeState=1').then(res => {
   sysThemeGetPageTheme('page=1&size=1000&themeType=2&themeState=1').then(res => {
-    if (res.code === 200) {
-      state.themeOptions = res.data.content
-    } else {
-      ElMessage.error(res.msg)
-    }
+    state.themeOptions = res.data.content
   })
   })
 }
 }
 const handleSelect = (obj) => {
 const handleSelect = (obj) => {
@@ -134,11 +128,7 @@ const initText = () => {
   sysIndexFieldList(proxy.$util.formatGetParam({
   sysIndexFieldList(proxy.$util.formatGetParam({
     indexId: props.transfer.row.id
     indexId: props.transfer.row.id
   })).then(res => {
   })).then(res => {
-    if (res.code === 200) {
-      state.textOptions = res.data
-    } else {
-      ElMessage.error(res.msg)
-    }
+    state.textOptions = res.data
   })
   })
 }
 }
 const initDetail = () => {
 const initDetail = () => {

+ 15 - 21
src/views/manage/system/dict/detail.vue

@@ -88,37 +88,31 @@ const onSubmit = () => {
       switch (props.transfer.mode) {
       switch (props.transfer.mode) {
         case 'parent': {
         case 'parent': {
           dictAdd(state.form).then(res => {
           dictAdd(state.form).then(res => {
-            if (res.code === 200) {
-              ElMessage.success('新增成功!')
-              emit('update:show', false)
-              emit('refresh', true)
-            } else {
-              ElMessage.error(res.msg)
-            }
+            ElMessage.success('新增成功!')
+            emit('update:show', false)
+            emit('refresh', true)
+            state.loading = false
+          }).catch(() => {
             state.loading = false
             state.loading = false
           })
           })
         } break
         } break
         case 'add': {
         case 'add': {
           dictAdd(state.form).then(res => {
           dictAdd(state.form).then(res => {
-            if (res.code === 200) {
-              ElMessage.success('新增成功!')
-              emit('update:show', false)
-              emit('refresh')
-            } else {
-              ElMessage.error(res.msg)
-            }
+            ElMessage.success('新增成功!')
+            emit('update:show', false)
+            emit('refresh')
+            state.loading = false
+          }).catch(() => {
             state.loading = false
             state.loading = false
           })
           })
         } break
         } break
         case 'edit': {
         case 'edit': {
           dictEdit(state.form).then(res => {
           dictEdit(state.form).then(res => {
-            if (res.code === 200) {
-              ElMessage.success('编辑成功!')
-              emit('update:show', false)
-              emit('refresh')
-            } else {
-              ElMessage.error(res.msg)
-            }
+            ElMessage.success('编辑成功!')
+            emit('update:show', false)
+            emit('refresh')
+            state.loading = false
+          }).catch(() => {
             state.loading = false
             state.loading = false
           })
           })
         } break
         } break

+ 8 - 24
src/views/manage/system/dict/index.vue

@@ -98,15 +98,11 @@ const ref_tree = ref()
 const initTree = () => {
 const initTree = () => {
   state.tree.loading = true
   state.tree.loading = true
   dictList().then(res => {
   dictList().then(res => {
-    if (res.code === 200) {
-      state.tree.options = res.data.filter(v => v.parentId == 0).map(v => {
-        v.showText = `${v.dictLabel}(${v.dictValue})`
-        return v
-      })
-      state.tree.loading = false
-    } else {
-      ElMessage.error(res.msg)
-    }
+    state.tree.options = res.data.filter(v => v.parentId == 0).map(v => {
+      v.showText = `${v.dictLabel}(${v.dictValue})`
+      return v
+    })
+    state.tree.loading = false
   })
   })
 }
 }
 const onAddParent = () => {
 const onAddParent = () => {
@@ -137,11 +133,7 @@ const onDelParent = () => {
       type: "warning",
       type: "warning",
     } as any).then(() => {
     } as any).then(() => {
       dictDel(state.tree.value.id).then(res => {
       dictDel(state.tree.value.id).then(res => {
-        if (res.code === 200) {
-          ElMessage.success('删除成功!')
-        } else {
-          ElMessage.error(res.msg)
-        }
+        ElMessage.success('删除成功!')
         initTree()
         initTree()
       })
       })
     }).catch(() => {})
     }).catch(() => {})
@@ -156,11 +148,7 @@ const onDel = (row) => {
     type: "warning",
     type: "warning",
   } as any).then(() => {
   } as any).then(() => {
     dictDel(row.id).then(res => {
     dictDel(row.id).then(res => {
-      if (res.code === 200) {
-        ElMessage.success('删除成功!')
-      } else {
-        ElMessage.error(res.msg)
-      }
+      ElMessage.success('删除成功!')
       initDictList()
       initDictList()
     })
     })
   }).catch(() => {})
   }).catch(() => {})
@@ -202,11 +190,7 @@ const initDictList = () => {
 const onChangeDictState = (row) => {
 const onChangeDictState = (row) => {
   const p = JSON.parse(JSON.stringify(row))
   const p = JSON.parse(JSON.stringify(row))
   dictEdit(p).then(res => {
   dictEdit(p).then(res => {
-    if (res.code === 200) {
-      ElMessage.success('修改成功!')
-    } else {
-      ElMessage.error(res.msg)
-    }
+    ElMessage.success('修改成功!')
     initDictList()
     initDictList()
   })
   })
 }
 }

+ 12 - 20
src/views/manage/system/role/detail.vue

@@ -67,24 +67,20 @@ const onSubmit = () => {
       state.loading = true
       state.loading = true
       if (props.transfer.mode === 'add') {
       if (props.transfer.mode === 'add') {
         rolesCreate(state.form).then(res => {
         rolesCreate(state.form).then(res => {
-          if (res.code === 200) {
-            ElMessage.success('新增成功')
-            emit('update:show', false)
-            emit('refresh')
-          } else {
-            ElMessage.error(res.msg)
-          }
+          ElMessage.success('新增成功')
+          emit('update:show', false)
+          emit('refresh')
+          state.loading = false
+        }).catch(() => {
           state.loading = false
           state.loading = false
         })
         })
       } else if (props.transfer.mode === 'edit') {
       } else if (props.transfer.mode === 'edit') {
         rolesUpdate(state.form).then(res => {
         rolesUpdate(state.form).then(res => {
-          if (res.code === 200) {
-            ElMessage.success('编辑成功')
-            emit('update:show', false)
-            emit('refresh')
-          } else {
-            ElMessage.error(res.msg)
-          }
+          ElMessage.success('编辑成功')
+          emit('update:show', false)
+          emit('refresh')
+          state.loading = false
+        }).catch(() => {
           state.loading = false
           state.loading = false
         })
         })
       }
       }
@@ -100,12 +96,8 @@ const onSubmit = () => {
 const initDetail = () => {
 const initDetail = () => {
   state.loading = true
   state.loading = true
   rolesGetRoleById(props.transfer.id).then(res => {
   rolesGetRoleById(props.transfer.id).then(res => {
-    if (res.code === 200) {
-      state.form = res.data
-      state.loading = false
-    } else {
-      ElMessage.error(res.msg)
-    }
+    state.form = res.data
+    state.loading = false
   })
   })
 }
 }
 watch(() => props.show, (n) => {
 watch(() => props.show, (n) => {

+ 4 - 12
src/views/manage/system/role/index.vue

@@ -104,13 +104,9 @@ const onPage = (pageNum, pageSize) => {
   }
   }
   state.query.loading = true
   state.query.loading = true
   rolesGetByPage(proxy.$util.formatGetParam(params)).then(res => {
   rolesGetByPage(proxy.$util.formatGetParam(params)).then(res => {
-    if (res.code === 200) {
-      state.query.result.total = res.data.totalElements
-      state.query.result.data = res.data.content
-      state.query.loading = false
-    } else {
-      ElMessage.error(res.msg)
-    }
+    state.query.result.total = res.data.totalElements
+    state.query.result.data = res.data.content
+    state.query.loading = false
   })
   })
 }
 }
 const onSearch = () => {
 const onSearch = () => {
@@ -152,11 +148,7 @@ const onDel = (row) => {
   } as any).then(() => {
   } as any).then(() => {
     state.loading = true
     state.loading = true
     rolesDelete(row.id).then(res => {
     rolesDelete(row.id).then(res => {
-      if (res.code === 200) {
-        ElMessage.success('删除成功!')
-      } else {
-        ElMessage.error(res.msg)
-      }
+      ElMessage.success('删除成功!')
       onSearch()
       onSearch()
     })
     })
   }).catch(() => {})
   }).catch(() => {})

+ 12 - 20
src/views/manage/system/user/detail.vue

@@ -73,24 +73,20 @@ const onSubmit = () => {
       state.loading = true
       state.loading = true
       if (props.transfer.mode === 'add') {
       if (props.transfer.mode === 'add') {
         usersRegister(state.form).then(res => {
         usersRegister(state.form).then(res => {
-          if (res.code === 200) {
-            ElMessage.success('新增成功')
-            emit('update:show', false)
-            emit('refresh')
-          } else {
-            ElMessage.error(res.msg)
-          }
+          ElMessage.success('新增成功')
+          emit('update:show', false)
+          emit('refresh')
+          state.loading = false
+        }).catch(() => {
           state.loading = false
           state.loading = false
         })
         })
       } else if (props.transfer.mode === 'edit') {
       } else if (props.transfer.mode === 'edit') {
         usersUpdate(state.form).then(res => {
         usersUpdate(state.form).then(res => {
-          if (res.code === 200) {
-            ElMessage.success('编辑成功')
-            emit('update:show', false)
-            emit('refresh')
-          } else {
-            ElMessage.error(res.msg)
-          }
+          ElMessage.success('编辑成功')
+          emit('update:show', false)
+          emit('refresh')
+          state.loading = false
+        }).catch(() => {
           state.loading = false
           state.loading = false
         })
         })
       }
       }
@@ -106,12 +102,8 @@ const onSubmit = () => {
 const initDetail = () => {
 const initDetail = () => {
   state.loading = true
   state.loading = true
   usersGetUserById(props.transfer.id).then(res => {
   usersGetUserById(props.transfer.id).then(res => {
-    if (res.code === 200) {
-      state.form = res.data
-      state.loading = false
-    } else {
-      ElMessage.error(res.msg)
-    }
+    state.form = res.data
+    state.loading = false
   })
   })
 }
 }
 watch(() => props.show, (n) => {
 watch(() => props.show, (n) => {

+ 4 - 12
src/views/manage/system/user/index.vue

@@ -117,13 +117,9 @@ const onPage = (pageNum, pageSize) => {
   }
   }
   state.query.loading = true
   state.query.loading = true
   usersGetPageUser(proxy.$util.formatGetParam(params)).then(res => {
   usersGetPageUser(proxy.$util.formatGetParam(params)).then(res => {
-    if (res.code === 200) {
-      state.query.result.total = res.data.totalElements
-      state.query.result.data = res.data.content
-      state.query.loading = false
-    } else {
-      ElMessage.error(res.msg)
-    }
+    state.query.result.total = res.data.totalElements
+    state.query.result.data = res.data.content
+    state.query.loading = false
   })
   })
 }
 }
 const onSearch = () => {
 const onSearch = () => {
@@ -171,11 +167,7 @@ const onDel = (row) => {
   } as any).then(() => {
   } as any).then(() => {
     state.loading = true
     state.loading = true
     usersDeleteUser(row.id).then(res => {
     usersDeleteUser(row.id).then(res => {
-      if (res.code === 200) {
-        ElMessage.success('删除成功!')
-      } else {
-        ElMessage.error(res.msg)
-      }
+      ElMessage.success('删除成功!')
       onSearch()
       onSearch()
     })
     })
   }).catch(() => {})
   }).catch(() => {})

+ 4 - 6
src/views/manage/system/user/password.vue

@@ -71,12 +71,10 @@ const onSubmit = () => {
         id: props.transfer.id,
         id: props.transfer.id,
         password: state.form.password
         password: state.form.password
       }).then(res => {
       }).then(res => {
-        if (res.code === 200) {
-          ElMessage.success('修改成功!')
-          emit('update:show', false)
-        } else {
-          ElMessage.error(res.msg)
-        }
+        ElMessage.success('修改成功!')
+        emit('update:show', false)
+        state.loading = false
+      }).catch(() => {
         state.loading = false
         state.loading = false
       })
       })
     }).catch(() => {})
     }).catch(() => {})

+ 5 - 7
src/views/manage/system/user/role.vue

@@ -75,13 +75,11 @@ const onSubmit = () => {
       userId: props.transfer.id,
       userId: props.transfer.id,
       roleIds: state.query.selected.map(v => v.id)
       roleIds: state.query.selected.map(v => v.id)
     }).then(res => {
     }).then(res => {
-      if (res.code === 200) {
-        ElMessage.success(props.transfer.mode === 'add' ? '新增成功!' : '编辑成功!')
-        emit('update:show', false)
-        emit('refresh')
-      } else {
-        ElMessage.error(res.msg)
-      }
+      ElMessage.success(props.transfer.mode === 'add' ? '新增成功!' : '编辑成功!')
+      emit('update:show', false)
+      emit('refresh')
+      state.loading = false
+    }).catch(() => {
       state.loading = false
       state.loading = false
     })
     })
   }).catch(() => {})
   }).catch(() => {})

+ 14 - 22
src/views/manage/theme/detail.vue

@@ -114,24 +114,20 @@ const onSubmit = () => {
       }
       }
       if (props.transfer.mode === 'add') {
       if (props.transfer.mode === 'add') {
         sysThemeAdd(params).then(res => {
         sysThemeAdd(params).then(res => {
-          if (res.code === 200) {
-            ElMessage.success('新增成功!')
-            emit('update:show', false)
-            emit('refresh')
-          } else {
-            ElMessage.error(res.msg)
-          }
+          ElMessage.success('新增成功!')
+          emit('update:show', false)
+          emit('refresh')
+          state.loading = false
+        }).catch(() => {
           state.loading = false
           state.loading = false
         })
         })
       } else if (props.transfer.mode === 'edit') {
       } else if (props.transfer.mode === 'edit') {
         sysThemeUpdate(params).then(res => {
         sysThemeUpdate(params).then(res => {
-          if (res.code === 200) {
-            ElMessage.success('编辑成功!')
-            emit('update:show', false)
-            emit('refresh')
-          } else {
-            ElMessage.error(res.msg)
-          }
+          ElMessage.success('编辑成功!')
+          emit('update:show', false)
+          emit('refresh')
+          state.loading = false
+        }).catch(() => {
           state.loading = false
           state.loading = false
         })
         })
       }
       }
@@ -147,15 +143,11 @@ const onSubmit = () => {
 const initDetail = () => {
 const initDetail = () => {
   state.loading = true
   state.loading = true
   sysThemeFind(props.transfer.id).then(res => {
   sysThemeFind(props.transfer.id).then(res => {
-    if (res.code === 200) {
-      state.form = res.data
-      if (state.form.themeType == '2') {
-        state.form.themeParam = state.form.themeParam.split(',')
-      }
-      state.loading = false
-    } else {
-      ElMessage.error(res.msg)
+    state.form = res.data
+    if (state.form.themeType == '2') {
+      state.form.themeParam = state.form.themeParam.split(',')
     }
     }
+    state.loading = false
   })
   })
 }
 }
 watch(() => props.show, (n) => {
 watch(() => props.show, (n) => {

+ 6 - 14
src/views/manage/theme/index.vue

@@ -130,13 +130,9 @@ const onPage = (pageNum, pageSize) => {
   }
   }
   state.query.loading = true
   state.query.loading = true
   sysThemeGetPageTheme(proxy.$util.formatGetParam(params)).then(res => {
   sysThemeGetPageTheme(proxy.$util.formatGetParam(params)).then(res => {
-    if (res.code === 200) {
-      state.query.result.total = res.data.totalElements
-      state.query.result.data = res.data.content
-      state.query.loading = false
-    } else {
-      ElMessage.error(res.msg)
-    }
+    state.query.result.total = res.data.totalElements
+    state.query.result.data = res.data.content
+    state.query.loading = false
   })
   })
 }
 }
 const onSearch = () => {
 const onSearch = () => {
@@ -184,13 +180,9 @@ const onDel = (row) => {
   } as any).then(() => {
   } as any).then(() => {
     state.query.loading = true
     state.query.loading = true
     sysThemeDelete(row.themeId).then(res => {
     sysThemeDelete(row.themeId).then(res => {
-      if (res.code === 200) {
-        ElMessage.success('删除成功!')
-        state.query.loading = false
-        onSearch()
-      } else {
-        ElMessage.error(res.msg)
-      }
+      ElMessage.success('删除成功!')
+      state.query.loading = false
+      onSearch()
     })
     })
   }).catch(() => {})
   }).catch(() => {})
 }
 }

+ 11 - 21
src/views/manage/theme/relation-column.vue

@@ -73,14 +73,10 @@ const initText = () => {
   sysIndexFieldList(proxy.$util.formatGetParam({
   sysIndexFieldList(proxy.$util.formatGetParam({
     indexId: props.transfer.indexId
     indexId: props.transfer.indexId
   })).then(res => {
   })).then(res => {
-    if (res.code === 200) {
-      state.query.result.data = res.data
-      state.query.result.defaultShowIds = state.query.result.data.filter(v => v.searchShow == 1).map(v => v.id)
-      state.query.loading = false
-      initRelation()
-    } else {
-      ElMessage.error(res.msg)
-    }
+    state.query.result.data = res.data
+    state.query.result.defaultShowIds = state.query.result.data.filter(v => v.searchShow == 1).map(v => v.id)
+    state.query.loading = false
+    initRelation()
   })
   })
 }
 }
 const initRelation = () => {
 const initRelation = () => {
@@ -89,14 +85,10 @@ const initRelation = () => {
     themeId: props.transfer.themeId,
     themeId: props.transfer.themeId,
     indexId: props.transfer.indexId,
     indexId: props.transfer.indexId,
   })).then(res => {
   })).then(res => {
-    if (res.code === 200) {
-      state.query.result.data.forEach(v => {
-        v.searchShow = res.data.some(s => s.fieldId == v.id) ? '1' : '0'
-      })
-      state.query.loading = false
-    } else {
-      ElMessage.error(res.msg)
-    }
+    state.query.result.data.forEach(v => {
+      v.searchShow = res.data.some(s => s.fieldId == v.id) ? '1' : '0'
+    })
+    state.query.loading = false
   })
   })
 }
 }
 const onReset = () => {
 const onReset = () => {
@@ -118,11 +110,9 @@ const onSubmit = () => {
     }))
     }))
     state.loading = true
     state.loading = true
     sysThemeIndexSaveIndexFields(arr).then(res => {
     sysThemeIndexSaveIndexFields(arr).then(res => {
-      if (res.code === 200) {
-        ElMessage.success('保存成功!')
-      } else {
-        ElMessage.error(res.msg)
-      }
+      ElMessage.success('保存成功!')
+      state.loading = false
+    }).catch(() => {
       state.loading = false
       state.loading = false
     })
     })
   }).catch(() => {})
   }).catch(() => {})

+ 15 - 27
src/views/manage/theme/relation-detail.vue

@@ -219,24 +219,20 @@ const onSubmit = () => {
         params.themeId = props.transfer.themeId
         params.themeId = props.transfer.themeId
         params.indexId = props.transfer.indexId
         params.indexId = props.transfer.indexId
         sysThemeIndexAdd(params).then(res => {
         sysThemeIndexAdd(params).then(res => {
-          if (res.code === 200) {
-            ElMessage.success('新增成功!')
-            emit('update:show', false)
-            emit('refresh')
-          } else {
-            ElMessage.error(res.msg)
-          }
+          ElMessage.success('新增成功!')
+          emit('update:show', false)
+          emit('refresh')
+          state.loading = false
+        }).catch(() => {
           state.loading = false
           state.loading = false
         })
         })
       } else if (props.transfer.mode === 'edit') {
       } else if (props.transfer.mode === 'edit') {
         sysThemeIndexUpdate(params).then(res => {
         sysThemeIndexUpdate(params).then(res => {
-          if (res.code === 200) {
-            ElMessage.success('编辑成功!')
-            emit('update:show', false)
-            emit('refresh')
-          } else {
-            ElMessage.error(res.msg)
-          }
+          ElMessage.success('编辑成功!')
+          emit('update:show', false)
+          emit('refresh')
+          state.loading = false
+        }).catch(() => {
           state.loading = false
           state.loading = false
         })
         })
       }
       }
@@ -252,14 +248,10 @@ const onSubmit = () => {
 const initDetail = () => {
 const initDetail = () => {
   state.loading = true
   state.loading = true
   sysThemeIndexFindById(props.transfer.id).then(res => {
   sysThemeIndexFindById(props.transfer.id).then(res => {
-    if (res.code === 200) {
-      state.form = res.data
-      state.conditionTable.data = state.form.indexCondition ? JSON.parse(state.form.indexCondition) : []
-      state.sortTable.data = state.form.indexOrder ? JSON.parse(state.form.indexOrder) : []
-      initText(state.form.indexId)
-    } else {
-      ElMessage.error(res.msg)
-    }
+    state.form = res.data
+    state.conditionTable.data = state.form.indexCondition ? JSON.parse(state.form.indexCondition) : []
+    state.sortTable.data = state.form.indexOrder ? JSON.parse(state.form.indexOrder) : []
+    initText(state.form.indexId)
     state.loading = false
     state.loading = false
   })
   })
 }
 }
@@ -267,11 +259,7 @@ const initText = (id) => {
   sysIndexFieldList(proxy.$util.formatGetParam({
   sysIndexFieldList(proxy.$util.formatGetParam({
     indexId: id
     indexId: id
   })).then(res => {
   })).then(res => {
-    if (res.code === 200) {
-      state.textOptions = res.data
-    } else {
-      ElMessage.error(res.msg)
-    }
+    state.textOptions = res.data
     state.loading = false
     state.loading = false
   })
   })
 }
 }

+ 8 - 16
src/views/manage/theme/relation-main.vue

@@ -98,13 +98,9 @@ const onSubmit = () => {
         id: props.transfer.id,
         id: props.transfer.id,
         indexStyle: JSON.stringify(params)
         indexStyle: JSON.stringify(params)
       }).then(res => {
       }).then(res => {
-        if (res.code === 200) {
-          ElMessage.success('配置成功!')
-          emit('update:show', false)
-          emit('refresh')
-        } else {
-          ElMessage.error(res.msg)
-        }
+        ElMessage.success('配置成功!')
+        emit('update:show', false)
+        emit('refresh')
         state.loading = false
         state.loading = false
       })
       })
     }).catch(() => {})
     }).catch(() => {})
@@ -134,15 +130,11 @@ const initText = () => {
   sysIndexFieldList(proxy.$util.formatGetParam({
   sysIndexFieldList(proxy.$util.formatGetParam({
     indexId: props.transfer.indexId
     indexId: props.transfer.indexId
   })).then(res => {
   })).then(res => {
-    if (res.code === 200) {
-      state.textOptions = res.data.map(v => {
-        v.dictLabel = v.fieldNameCn
-        v.dictValue = v.fieldNameEn
-        return v
-      })
-    } else {
-      ElMessage.error(res.msg)
-    }
+    state.textOptions = res.data.map(v => {
+      v.dictLabel = v.fieldNameCn
+      v.dictValue = v.fieldNameEn
+      return v
+    })
   })
   })
 }
 }
 watch(() => props.show, (n) => {
 watch(() => props.show, (n) => {

+ 12 - 28
src/views/manage/theme/relation.vue

@@ -133,23 +133,15 @@ const handleSelect = (item) => {
 const initIndex = () => {
 const initIndex = () => {
   state.loadingIndex = true
   state.loadingIndex = true
   sysLabelGetAllIndexsByKey().then(res => {
   sysLabelGetAllIndexsByKey().then(res => {
-    if (res.code === 200) {
-      state.indexList = res.data
-      state.loadingIndex = false
-    } else {
-      ElMessage.error(res.msg)
-    }
+    state.indexList = res.data
+    state.loadingIndex = false
   })
   })
 }
 }
 const initRelation = () => {
 const initRelation = () => {
   state.query.loading = true
   state.query.loading = true
   sysThemeIndexFindAll(props.transfer.id).then(res => {
   sysThemeIndexFindAll(props.transfer.id).then(res => {
-    if (res.code === 200) {
-      state.query.result.data = res.data
-      state.query.loading = false
-    } else {
-      ElMessage.error(res.msg)
-    }
+    state.query.result.data = res.data
+    state.query.loading = false
   })
   })
 }
 }
 const onMain = (row) => {
 const onMain = (row) => {
@@ -195,29 +187,21 @@ const onDel = (row) => {
   } as any).then(() => {
   } as any).then(() => {
     state.loading = true
     state.loading = true
     sysThemeIndexDelete(row.id).then(res => {
     sysThemeIndexDelete(row.id).then(res => {
-      if (res.code === 200) {
-        ElMessage.success('删除成功!')
-        emit('refresh')
-        state.loading = false
-        initRelation()
-      } else {
-        ElMessage.error(res.msg)
-      }
+      ElMessage.success('删除成功!')
+      emit('refresh')
+      state.loading = false
+      initRelation()
     })
     })
   }).catch(() => {})
   }).catch(() => {})
 }
 }
 const initDetail = () => {
 const initDetail = () => {
   state.loading = true
   state.loading = true
   sysThemeFind(props.transfer.id).then(res => {
   sysThemeFind(props.transfer.id).then(res => {
-    if (res.code === 200) {
-      state.form = res.data
-      if (state.form.themeType == '2') {
-        state.form.themeParam = state.form.themeParam.split(',')
-      }
-      state.loading = false
-    } else {
-      ElMessage.error(res.msg)
+    state.form = res.data
+    if (state.form.themeType == '2') {
+      state.form.themeParam = state.form.themeParam.split(',')
     }
     }
+    state.loading = false
   })
   })
 }
 }
 watch(() => props.show, (n) => {
 watch(() => props.show, (n) => {

+ 13 - 19
src/views/manage/theme/style.vue

@@ -130,13 +130,11 @@ const onSubmit = () => {
       f.loginImg = f.loginImg.length > 0 ? f.loginImg[0].url : ''
       f.loginImg = f.loginImg.length > 0 ? f.loginImg[0].url : ''
       params.themeStyle = JSON.stringify(f)
       params.themeStyle = JSON.stringify(f)
       sysThemeStyleConfig(params).then(res => {
       sysThemeStyleConfig(params).then(res => {
-        if (res.code === 200) {
-          ElMessage.success('配置成功!')
-          emit('update:show', false)
-          emit('refresh')
-        } else {
-          ElMessage.error(res.msg)
-        }
+        ElMessage.success('配置成功!')
+        emit('update:show', false)
+        emit('refresh')
+        state.loading = false
+      }).catch(() => {
         state.loading = false
         state.loading = false
       })
       })
     }).catch(() => {})
     }).catch(() => {})
@@ -151,19 +149,15 @@ const onSubmit = () => {
 const initDetail = () => {
 const initDetail = () => {
   state.loading = true
   state.loading = true
   sysThemeFind(props.transfer.id).then(res => {
   sysThemeFind(props.transfer.id).then(res => {
-    if (res.code === 200) {
-      state.detail = res.data
-      if (state.detail.themeStyle) {
-        state.form = JSON.parse(state.detail.themeStyle)
-        state.form.logo = state.form.logo ? [{url: state.form.logo, name: state.form.logo}] : []
-        state.form.titleLogo = state.form.titleLogo ? [{url: state.form.titleLogo, name: state.form.titleLogo}] : []
-        state.form.webBgImg = state.form.webBgImg ? [{url: state.form.webBgImg, name: state.form.webBgImg}] : []
-        state.form.loginImg = state.form.loginImg ? [{url: state.form.loginImg, name: state.form.loginImg}] : []
-      }
-      state.loading = false
-    } else {
-      ElMessage.error(res.msg)
+    state.detail = res.data
+    if (state.detail.themeStyle) {
+      state.form = JSON.parse(state.detail.themeStyle)
+      state.form.logo = state.form.logo ? [{url: state.form.logo, name: state.form.logo}] : []
+      state.form.titleLogo = state.form.titleLogo ? [{url: state.form.titleLogo, name: state.form.titleLogo}] : []
+      state.form.webBgImg = state.form.webBgImg ? [{url: state.form.webBgImg, name: state.form.webBgImg}] : []
+      state.form.loginImg = state.form.loginImg ? [{url: state.form.loginImg, name: state.form.loginImg}] : []
     }
     }
+    state.loading = false
   })
   })
 }
 }
 watch(() => props.show, (n) => {
 watch(() => props.show, (n) => {

+ 12 - 20
src/views/manage/type/detail.vue

@@ -94,25 +94,21 @@ const onSubmit = () => {
       switch (props.transfer.mode) {
       switch (props.transfer.mode) {
         case 'add': {
         case 'add': {
           sysLabelSave(state.form).then(res => {
           sysLabelSave(state.form).then(res => {
-            if (res.code === 200) {
-              ElMessage.success('新增成功!')
-              emit('update:show', false)
-              emit('refresh')
-            } else {
-              ElMessage.error(res.msg)
-            }
+            ElMessage.success('新增成功!')
+            emit('update:show', false)
+            emit('refresh')
+            state.loading = false
+          }).catch(() => {
             state.loading = false
             state.loading = false
           })
           })
         } break
         } break
         case 'edit': {
         case 'edit': {
           sysLabelUpdate(state.form).then(res => {
           sysLabelUpdate(state.form).then(res => {
-            if (res.code === 200) {
-              ElMessage.success('编辑成功!')
-              emit('update:show', false)
-              emit('refresh')
-            } else {
-              ElMessage.error(res.msg)
-            }
+            ElMessage.success('编辑成功!')
+            emit('update:show', false)
+            emit('refresh')
+            state.loading = false
+          }).catch(() => {
             state.loading = false
             state.loading = false
           })
           })
         } break
         } break
@@ -129,12 +125,8 @@ const onSubmit = () => {
 const initDetail = () => {
 const initDetail = () => {
   state.loading = true
   state.loading = true
   sysLabelDetail(props.transfer.id).then(res => {
   sysLabelDetail(props.transfer.id).then(res => {
-    if (res.code === 200) {
-      state.form = res.data
-      state.loading = false
-    } else {
-      ElMessage.error(res.msg)
-    }
+    state.form = res.data
+    state.loading = false
   })
   })
 }
 }
 watch(() => props.show, (n) => {
 watch(() => props.show, (n) => {

+ 3 - 11
src/views/manage/type/index.vue

@@ -67,12 +67,8 @@ const state: any = reactive({
 const initTree = () => {
 const initTree = () => {
   state.query.loading = true
   state.query.loading = true
   sysLabelGetAllSysLabels().then(res => {
   sysLabelGetAllSysLabels().then(res => {
-    if (res.code === 200) {
-      state.query.result.data = res.data.map(v => ({...v, children: v.sysLabels}))
-      state.query.loading = false
-    } else {
-      ElMessage.error(res.msg)
-    }
+    state.query.result.data = res.data.map(v => ({...v, children: v.sysLabels}))
+    state.query.loading = false
   })
   })
 }
 }
 const onAdd = (row) => {
 const onAdd = (row) => {
@@ -98,11 +94,7 @@ const onDel = (row) => {
   } as any).then(() => {
   } as any).then(() => {
     state.loading = true
     state.loading = true
     sysLabelDelete(row.id).then(res => {
     sysLabelDelete(row.id).then(res => {
-      if (res.code === 200) {
-        ElMessage.success('删除成功!')
-      } else {
-        ElMessage.error(res.msg)
-      }
+      ElMessage.success('删除成功!')
       initTree()
       initTree()
     })
     })
   }).catch(() => {})
   }).catch(() => {})

+ 13 - 29
src/views/manage/type/relation.vue

@@ -101,38 +101,26 @@ const handleSelect = (item) => {
       indexId: item.id,
       indexId: item.id,
       typeId: props.transfer.id
       typeId: props.transfer.id
     })).then(res => {
     })).then(res => {
-      if (res.code === 200) {
-        ElMessage.success('添加成功!')
-        emit('refresh')
-        state.loading = false
-        ref_search.value?.blur()
-        initRelation()
-      } else {
-        ElMessage.error(res.msg)
-      }
+      ElMessage.success('添加成功!')
+      emit('refresh')
+      state.loading = false
+      ref_search.value?.blur()
+      initRelation()
     })
     })
   }).catch(() => {})
   }).catch(() => {})
 }
 }
 const initIndex = () => {
 const initIndex = () => {
   state.loadingIndex = true
   state.loadingIndex = true
   sysLabelGetAllIndexsByKey().then(res => {
   sysLabelGetAllIndexsByKey().then(res => {
-    if (res.code === 200) {
-      state.indexList = res.data
-      state.loadingIndex = false
-    } else {
-      ElMessage.error(res.msg)
-    }
+    state.indexList = res.data
+    state.loadingIndex = false
   })
   })
 }
 }
 const initRelation = () => {
 const initRelation = () => {
   state.query.loading = true
   state.query.loading = true
   sysLabelGetAllSysLabelTypes(props.transfer.id).then(res => {
   sysLabelGetAllSysLabelTypes(props.transfer.id).then(res => {
-    if (res.code === 200) {
-      state.query.result.data = res.data
-      state.query.loading = false
-    } else {
-      ElMessage.error(res.msg)
-    }
+    state.query.result.data = res.data
+    state.query.loading = false
   })
   })
 }
 }
 const onDel = (row) => {
 const onDel = (row) => {
@@ -143,14 +131,10 @@ const onDel = (row) => {
   } as any).then(() => {
   } as any).then(() => {
     state.loading = true
     state.loading = true
     sysLabelDeleteLink(row.id).then(res => {
     sysLabelDeleteLink(row.id).then(res => {
-      if (res.code === 200) {
-        ElMessage.success('删除成功!')
-        emit('refresh')
-        state.loading = false
-        initRelation()
-      } else {
-        ElMessage.error(res.msg)
-      }
+      ElMessage.success('删除成功!')
+      emit('refresh')
+      state.loading = false
+      initRelation()
     })
     })
   }).catch(() => {})
   }).catch(() => {})
 }
 }

+ 3 - 7
src/views/web/archive/index.vue

@@ -279,13 +279,9 @@ const initTheme = () => {
     background: ThemeStore.loadingBg
     background: ThemeStore.loadingBg
   })
   })
   frontGetThemeByThemeId(route.query.themeId).then(res => {
   frontGetThemeByThemeId(route.query.themeId).then(res => {
-    if (res.code === 200) {
-      state.themeDetail = res.data
-      loading.close()
-      initWS()
-    } else {
-      ElMessage.error(res.msg)
-    }
+    state.themeDetail = res.data
+    loading.close()
+    initWS()
   })
   })
 }
 }
 watch(() => state.activeTab, (n) => {
 watch(() => state.activeTab, (n) => {