skyline 2 лет назад
Родитель
Сommit
905ce2924d

+ 1 - 1
admin-web/src/stores/themeConfig.ts

@@ -30,7 +30,7 @@ export const useThemeConfig = defineStore('themeConfig', {
             // 默认顶栏导航背景颜色
             topBar: '#FFFFFF',
             // 默认顶栏导航字体颜色
-            topBarColor: '#606266',
+            topBarColor: '#DDEBF7',
             // 是否开启顶栏背景颜色渐变
             isTopBarColorGradual: false,
 

+ 1 - 1
admin-web/src/views/admin/investor/dialog.vue

@@ -244,7 +244,7 @@ const handleFormChange = (formData: any) => {
 
 // 初始化表格数据
 const loadData = (id: any) => {
-  $get(`investorInfo/detail/${id}`).then((res: any) => {
+  $get(`investorInfo/${id}`).then((res: any) => {
     state.ruleForm = res;
   })
 }

+ 1 - 1
admin-web/src/views/admin/station/statment/dialog.vue

@@ -28,7 +28,7 @@
     <el-dialog
         title="对账单"
         v-model="state.dialog.isShowDialog"
-        width="860px"
+        width="1000px"
         draggable
         destroy-on-close
         :close-on-click-modal="false"

+ 1 - 0
admin/src/main/java/com/kym/admin/controller/InvestorInfoController.java

@@ -31,6 +31,7 @@ public class InvestorInfoController {
      */
     @PostMapping("/create")
     R<?> create(@RequestBody InvestorInfo investorInfo) {
+        investorInfo.setId(null);
         return R.success(investorInfoService.save(investorInfo));
     }