Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
S
sass-admin
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
hqzhdj_app
sass-admin
Commits
57efe942
Commit
57efe942
authored
May 23, 2025
by
end
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改密码
parent
f85896b9
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
7 additions
and
8 deletions
+7
-8
dist.zip
+0
-0
src/pages/SystemManagement/Organization/EditPassword/EditPassword.jsx
+0
-3
src/pages/SystemManagement/Organization/UserTable/UserTable.jsx
+0
-1
src/pages/TrainingTools/exam/examCheck/index.jsx
+5
-2
src/pages/TrainingTools/exam/examCheck/redux/actions.js
+2
-2
No files found.
dist.zip
View file @
57efe942
No preview for this file type
src/pages/SystemManagement/Organization/EditPassword/EditPassword.jsx
View file @
57efe942
...
...
@@ -84,9 +84,6 @@ class EditPassword extends Component {
salt
:
salt
,
sign
:
md5
(
sign
)
}
// let passwordVal = { id, password };
accountUpdatePassword
(
parms
);
//关闭模态框
...
...
src/pages/SystemManagement/Organization/UserTable/UserTable.jsx
View file @
57efe942
...
...
@@ -332,7 +332,6 @@ class UserTable extends Component {
currentPageSize=
{
this
.
state
.
currentPageSize
||
10
}
getAccountList=
{
this
.
props
.
getAccountList
}
updateUser=
{
this
.
props
.
updateUser
}
handleSearch=
{
this
.
props
.
handleSearch
}
/>
)
:
null
}
{
this
.
state
.
editPassword
?
(
...
...
src/pages/TrainingTools/exam/examCheck/index.jsx
View file @
57efe942
...
...
@@ -168,8 +168,11 @@ class ExamCheck extends Component {
}
componentDidMount
()
{
const
{
getExamList
}
=
this
.
props
;
getExamList
();
let
params
=
{
pageNo
:
1
,
pageSize
:
20
,
};
this
.
props
.
getExamList
(
params
);
}
getExamKeyword
(
event
)
{
...
...
src/pages/TrainingTools/exam/examCheck/redux/actions.js
View file @
57efe942
...
...
@@ -26,9 +26,9 @@ let downText = createAction(Types.DOWNTXT);
export
{
examList
,
fetching
,
paperList
,
paperFetching
,
pd
,
downText
};
export
function
getExamList
(
data
)
{
export
function
getExamList
(
params
)
{
let
url
=
api
.
getExamList
;
let
params
=
getExamListUrl
(
url
,
data
);
//
let params = getExamListUrl(url, data);
return
dispatch
=>
{
dispatch
({
type
:
Types
.
FETCHING
});
return
request
({
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment