Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
A
admin-ci-test
概览
概览
详情
活动
周期分析
版本库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
问题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程表
图表
维基
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
test-ci
admin-ci-test
Commits
4b053a2a
提交
4b053a2a
authored
6月 16, 2023
作者:
ZhangLingKun
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
功能:宣传中心问题修复
上级
4d5b6f33
隐藏空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
44 行增加
和
11 行删除
+44
-11
commonType.ts
src/api/interface/commonType.ts
+3
-3
index.tsx
src/pages/resourceManage/materielManage/detail/index.tsx
+36
-6
index.tsx
src/pages/resourceManage/materielManage/index.tsx
+5
-2
没有找到文件。
src/api/interface/commonType.ts
浏览文件 @
4b053a2a
...
...
@@ -60,9 +60,9 @@ export type insertModuleInfo = InterFunction<
export
type
updateModuleInfo
=
InterFunction
<
{
id
:
number
;
moduleCode
:
string
;
moduleName
:
string
;
moduleType
:
number
;
moduleCode
?
:
string
;
moduleName
?
:
string
;
moduleType
?
:
number
;
remark
?:
string
;
},
NonNullable
<
unknown
>
...
...
src/pages/resourceManage/materielManage/detail/index.tsx
浏览文件 @
4b053a2a
import
React
,
{
useEffect
,
useState
}
from
'react'
;
import
{
Button
,
Form
,
Input
,
Select
,
Table
,
Image
,
Modal
,
message
}
from
'antd'
;
import
{
listBannerInfoPage
}
from
'~/api/interface/commonType'
;
import
{
InterListType
,
InterReqListType
}
from
'~/api/interface'
;
import
{
listBannerInfoPage
,
updateModuleInfo
}
from
'~/api/interface/commonType'
;
import
{
InterListType
,
InterReqListType
,
InterReqType
}
from
'~/api/interface'
;
import
{
useLocation
,
useNavigate
}
from
'react-router-dom'
;
import
qs
from
'query-string'
;
import
{
ArrowDownOutlined
,
ArrowUpOutlined
,
PlusOutlined
}
from
'@ant-design/icons'
;
...
...
@@ -41,7 +41,7 @@ const bannerType = [
const
MaterielManageDetail
=
()
=>
{
const
{
confirm
}
=
Modal
;
// 表单钩子
const
[
form
]
=
Form
.
useForm
<
ReqType
>
();
const
[
form
]
=
Form
.
useForm
<
InterReqType
<
updateModuleInfo
>
>
();
// 路由钩子
const
location
=
useLocation
();
const
navigate
=
useNavigate
();
...
...
@@ -101,8 +101,11 @@ const MaterielManageDetail = () => {
onOk
:
async
()
=>
{
const
res
=
await
CommonAPI
.
removeBannerInfo
({
id
:
record
.
id
});
if
(
res
&&
res
.
code
===
'200'
)
{
paginationChange
(
pagination
.
current
,
pagination
.
pageSize
);
await
message
.
success
(
'删除成功'
);
message
.
success
(
'删除成功'
);
paginationChange
(
tableData
.
length
===
1
?
pagination
.
current
-
1
:
pagination
.
current
,
pagination
.
pageSize
,
);
}
},
});
...
...
@@ -164,6 +167,31 @@ const MaterielManageDetail = () => {
getAllData
().
then
();
}
};
// 修改提交数据
const
handleEdit
=
()
=>
{
form
.
validateFields
()
.
then
(
async
(
values
)
=>
{
const
res
=
await
CommonAPI
.
updateModuleInfo
({
...
values
,
id
:
Number
(
qs
.
parse
(
location
.
search
).
id
),
});
if
(
res
&&
res
.
code
===
'200'
)
{
message
.
success
(
'修改成功'
);
getTableList
().
then
();
getAllData
().
then
();
}
else
{
window
.
location
.
reload
();
}
})
.
catch
((
err
)
=>
{
message
.
warning
({
content
:
err
.
errorFields
[
0
].
errors
[
0
],
})
.
then
();
});
};
// componentDidMount
useEffect
(()
=>
{
query
=
{};
...
...
@@ -268,7 +296,9 @@ const MaterielManageDetail = () => {
justifyContent
:
'space-around'
,
}
}
>
<
Button
type=
{
'primary'
}
>
修改
</
Button
>
<
Button
type=
{
'primary'
}
onClick=
{
handleEdit
}
>
修改
</
Button
>
<
Button
type=
{
'primary'
}
onClick=
{
handleBack
}
>
返回
</
Button
>
...
...
src/pages/resourceManage/materielManage/index.tsx
浏览文件 @
4b053a2a
...
...
@@ -99,8 +99,11 @@ const MaterielManageView = () => {
onOk
:
async
()
=>
{
const
res
=
await
CommonAPI
.
removeModuleInfo
({
id
:
record
.
id
});
if
(
res
&&
res
.
code
===
'200'
)
{
paginationChange
(
pagination
.
current
,
pagination
.
pageSize
);
await
message
.
success
(
'删除成功'
);
message
.
success
(
'删除成功'
);
paginationChange
(
tableData
.
length
===
1
?
pagination
.
current
-
1
:
pagination
.
current
,
pagination
.
pageSize
,
);
}
},
});
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论