Commit 3280896c authored by liaoxingda's avatar liaoxingda

bug修复

parent 8e5dc3fd
################################################################################
# 此 .gitignore 文件已由 Microsoft(R) Visual Studio 自动创建。
################################################################################
/dsk-srm-server/.vs
...@@ -58,7 +58,10 @@ export const getCategoryList = (data) => network({ ...@@ -58,7 +58,10 @@ export const getCategoryList = (data) => network({
export const uploadFile = (data) => network({ export const uploadFile = (data) => network({
url: "/file/uploadFile", url: "/file/uploadFile",
method: "post", method: "post",
data data,
headers: {
'Content-Type': 'multipart/form-data'
},
}); });
export const register = (data) => network({ export const register = (data) => network({
......
...@@ -787,7 +787,7 @@ export default { ...@@ -787,7 +787,7 @@ export default {
} }
} }
/*注册样式*/ /*注册样式*/
::v-deep .el-dialog.registration { ::v-deep .el-dialog.registration {
height: calc(100% - 132px); height: calc(100% - 132px);
overflow-y: auto; overflow-y: auto;
overflow-x: hidden; overflow-x: hidden;
...@@ -1056,8 +1056,12 @@ export default { ...@@ -1056,8 +1056,12 @@ export default {
} }
} }
} }
} }
::v-deep .el-dialog.registration-policy { ::v-deep .el-dialog.registration-policy {
.el-dialog__title {
font-weight: bold;
}
.el-dialog__body { .el-dialog__body {
height: 567px; height: 567px;
overflow-y: auto; overflow-y: auto;
...@@ -1073,5 +1077,5 @@ export default { ...@@ -1073,5 +1077,5 @@ export default {
padding: 9px 20px; padding: 9px 20px;
} }
} }
} }
</style> </style>
This diff is collapsed.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment