Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
X
xiaomai-cloud-class-web
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
xiaomai-cloud-class
xiaomai-cloud-class-web
Commits
06f15164
Commit
06f15164
authored
Dec 14, 2020
by
wufan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix:文案优化
parent
b7eae43e
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
8 additions
and
8 deletions
+8
-8
src/modules/personalInfo/index.tsx
+3
-3
src/modules/store-manege/EmployeeAddOrEditModal.tsx
+3
-3
src/modules/store-manege/EmployeesManagePage.tsx
+1
-1
src/modules/store-manege/UserManagePage.tsx
+1
-1
No files found.
src/modules/personalInfo/index.tsx
View file @
06f15164
/*
/*
* @Author: zhangleyuan
* @Author: zhangleyuan
* @Date: 2020-11-27 15:06:31
* @Date: 2020-11-27 15:06:31
* @LastEditors:
zhangleyu
an
* @LastEditors:
wuf
an
* @LastEditTime: 2020-12-1
0 19:30:57
* @LastEditTime: 2020-12-1
4 15:45:31
* @Description: 描述一下
* @Description: 描述一下
* @@Copyrigh: © 2020 杭州杰竞科技有限公司 版权所有
* @@Copyrigh: © 2020 杭州杰竞科技有限公司 版权所有
*/
*/
...
@@ -131,7 +131,7 @@ function PersonalInfoPage() {
...
@@ -131,7 +131,7 @@ function PersonalInfoPage() {
}
}
</
div
>
</
div
>
<
div
className=
"name-item"
>
<
div
className=
"name-item"
>
<
span
className=
"label"
>
姓名
:
</
span
>
<
span
className=
"label"
>
昵称
:
</
span
>
<
Input
<
Input
placeholder=
"请输入姓名,最多15个字"
placeholder=
"请输入姓名,最多15个字"
style=
{
{
width
:
300
,
height
:
32
}
}
value=
{
nickName
}
style=
{
{
width
:
300
,
height
:
32
}
}
value=
{
nickName
}
...
...
src/modules/store-manege/EmployeeAddOrEditModal.tsx
View file @
06f15164
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
* @Author: wufan
* @Author: wufan
* @Date: 2020-11-27 16:21:49
* @Date: 2020-11-27 16:21:49
* @LastEditors: wufan
* @LastEditors: wufan
* @LastEditTime: 2020-12-
09 20:01:00
* @LastEditTime: 2020-12-
14 15:42:13
* @Description: Description
* @Description: Description
* @@Copyrigh: © 2020 杭州杰竞科技有限公司 版权所有
* @@Copyrigh: © 2020 杭州杰竞科技有限公司 版权所有
*/
*/
...
@@ -212,7 +212,7 @@ function AddEmployeeModal(props: AddEmployeeModalProps) {
...
@@ -212,7 +212,7 @@ function AddEmployeeModal(props: AddEmployeeModalProps) {
initialValues=
{
{
nickName
:
nickName
,
phone
:
phone
,
role
:
role
}
}
initialValues=
{
{
nickName
:
nickName
,
phone
:
phone
,
role
:
role
}
}
>
>
<
Form
.
Item
<
Form
.
Item
label=
"员工
姓名
"
label=
"员工
昵称
"
name=
"nickName"
name=
"nickName"
rules=
{
[{
required
:
true
}]
}
rules=
{
[{
required
:
true
}]
}
validateStatus=
{
nameStatus
}
validateStatus=
{
nameStatus
}
...
@@ -220,7 +220,7 @@ function AddEmployeeModal(props: AddEmployeeModalProps) {
...
@@ -220,7 +220,7 @@ function AddEmployeeModal(props: AddEmployeeModalProps) {
>
>
<
Input
<
Input
style=
{
{
width
:
200
}
}
style=
{
{
width
:
200
}
}
placeholder=
"请输入员工
名
称"
placeholder=
"请输入员工
昵
称"
maxLength=
{
15
}
maxLength=
{
15
}
autoComplete=
"off"
autoComplete=
"off"
onChange=
{
(
e
)
=>
handleChangeValues
(
"nickName"
,
e
.
target
.
value
)
}
onChange=
{
(
e
)
=>
handleChangeValues
(
"nickName"
,
e
.
target
.
value
)
}
...
...
src/modules/store-manege/EmployeesManagePage.tsx
View file @
06f15164
...
@@ -268,7 +268,7 @@ function EmployeesManagePage() {
...
@@ -268,7 +268,7 @@ function EmployeesManagePage() {
width
:
300
,
width
:
300
,
marginRight
:
40
,
marginRight
:
40
,
}
}
}
}
placeholder=
"搜索员工
姓名
/手机号"
placeholder=
"搜索员工
昵称
/手机号"
onSearch=
{
(
value
)
=>
{
onSearch=
{
(
value
)
=>
{
const
_query
=
{
...
query
};
const
_query
=
{
...
query
};
if
(
value
)
{
if
(
value
)
{
...
...
src/modules/store-manege/UserManagePage.tsx
View file @
06f15164
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
* @Author: wufan
* @Author: wufan
* @Date: 2020-11-30 10:47:38
* @Date: 2020-11-30 10:47:38
* @LastEditors: wufan
* @LastEditors: wufan
* @LastEditTime: 2020-12-1
2 14:35:46
* @LastEditTime: 2020-12-1
4 15:46:14
* @Description: 用户管理页面
* @Description: 用户管理页面
* @@Copyrigh: © 2020 杭州杰竞科技有限公司 版权所有
* @@Copyrigh: © 2020 杭州杰竞科技有限公司 版权所有
*/
*/
...
...
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