@@ -30,7 +30,7 @@ export const useThemeConfig = defineStore('themeConfig', {
// 默认顶栏导航背景颜色
topBar: '#FFFFFF',
// 默认顶栏导航字体颜色
- topBarColor: '#606266',
+ topBarColor: '#DDEBF7',
// 是否开启顶栏背景颜色渐变
isTopBarColorGradual: false,
@@ -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;
})
}
@@ -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"
@@ -31,6 +31,7 @@ public class InvestorInfoController {
*/
@PostMapping("/create")
R<?> create(@RequestBody InvestorInfo investorInfo) {
+ investorInfo.setId(null);
return R.success(investorInfoService.save(investorInfo));