Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
T
TOSTUMI
Project
Project
Details
Activity
Releases
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
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Maple
TOSTUMI
Commits
039c5669
Commit
039c5669
authored
Nov 05, 2020
by
cellee
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
新增小区添加到搜索列表
Signed-off-by:
cellee
<
893264950@qq.com
>
parent
6cb9bebd
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
33 additions
and
24 deletions
+33
-24
index.jsx
src/components/SelectOptions/index.jsx
+24
-12
TitleSearch.tsx
src/components/TitleSearch/TitleSearch.tsx
+1
-2
CellList.ts
src/models/CommunityManagement/CellList.ts
+2
-0
init.ts
src/models/init.ts
+4
-8
FacilityBookings.tsx
...CommunityManagement/FacilityBookings/FacilityBookings.tsx
+2
-2
No files found.
src/components/SelectOptions/index.jsx
View file @
039c5669
import
React
from
'react'
;
import
React
,
{
useState
,
useEffect
,
useRef
}
from
'react'
;
import
{
Table
,
Tag
,
Space
,
Button
,
Radio
,
Row
,
Col
,
Input
,
Checkbox
}
from
'antd'
;
import
{
connect
}
from
'dva'
;
import
{
gray
}
from
'chalk'
;
import
{
StarOutlined
,
StarFilled
,
StarTwoTone
,
DownOutlined
,
UpOutlined
}
from
'@ant-design/icons'
;
import
{
StarOutlined
,
StarFilled
,
StarTwoTone
,
DownOutlined
,
UpOutlined
}
from
'@ant-design/icons'
;
import
{
indexOf
}
from
'lodash'
;
import
{
useIntl
,
getLocale
}
from
'umi'
;
...
...
@@ -58,8 +58,8 @@ class SelectOptions extends React.Component {
constructor
(
props
)
{
super
(
props
);
const
{
list
,
dispatch
,
checklist
}
=
this
.
props
;
// console.log(list)
// console.log(checklist)
console
.
log
(
checklist
);
if
(
list
==
null
)
{
//console.error("组件错误:没有数据导入")
}
...
...
@@ -88,10 +88,9 @@ class SelectOptions extends React.Component {
flag
:
false
,
lastValue
:
null
,
};
}
}
componentDidUpdate
()
{
componentDidUpdate
(
prevProps
)
{
if
(
this
.
props
.
show
!=
null
)
{
if
(
this
.
props
.
show
==
this
.
state
.
flag
)
{
console
.
log
(
this
.
props
.
show
);
...
...
@@ -102,6 +101,21 @@ class SelectOptions extends React.Component {
}
console
.
log
(
this
.
state
.
componetVisible
);
}
if
(
this
.
props
.
list
!==
prevProps
.
list
)
{
// 发生改变重新赋值
this
.
setState
({
menuList
:
ArrayToPingYin
.
get
(
this
.
props
.
list
),
checkedListOptions
:
this
.
props
.
list
,
checkedList
:
this
.
props
.
single
!=
null
?
[]
:
this
.
props
.
list
,
indeterminate
:
false
,
checkAll
:
true
,
checkNone
:
false
,
resultList
:
this
.
props
.
single
!=
null
?
[]
:
this
.
props
.
list
,
flag
:
false
,
lastValue
:
null
,
});
}
}
}
componentDidMount
()
{
...
...
@@ -300,14 +314,12 @@ class SelectOptions extends React.Component {
</
div
>
<
div
style=
{
{
width
:
'100%'
,
backgroundColor
:
'#eeeeee'
,
userSelect
:
'none'
}
}
>
<
div
style=
{
{
width
:
'100%'
,
height
:
30
,
position
:
'relative'
}
}
>
{
/* a-z 索引 */
}
<
div
style=
{
{
fontSize
:
14
,
position
:
'absolute'
}
}
>
<
a
style=
{
{
marginLeft
:
16
}
}
onClick=
{
this
.
itemSelectAll
.
bind
(
this
)
}
>
{
this
.
state
.
selectoptionsAll
}
</
a
>
{
menuListNormal
.
map
((
item
,
index
)
=>
{
if
(
this
.
state
.
menuList
.
indexOf
(
item
)
>
-
1
)
{
return
(
<
a
...
...
src/components/TitleSearch/TitleSearch.tsx
View file @
039c5669
...
...
@@ -56,7 +56,6 @@ const TitleSearch = (props: any) => {
// console.log(CommunityList)
if
(
CommunityList
!=
null
)
{
// console.log("小区数量初始化完毕") OK
var
tmp
=
{};
tmp
[
community
]
=
CommunityList
;
// props.onSubmit(tmp) 禁用 改用组件初始化
...
...
@@ -180,7 +179,7 @@ const TitleSearch = (props: any) => {
<
SelectOptions
checklist=
{
checklist
}
single=
{
single
}
list=
{
CommunityList
.
sort
()
}
list=
{
communitys
!==
null
?
communitys
.
sort
()
:
[]
}
show=
{
selectOptions
}
onSubmit=
{
printContent
}
/>
...
...
src/models/CommunityManagement/CellList.ts
View file @
039c5669
...
...
@@ -65,7 +65,9 @@ export default {
case
24
:
{
let
Data
=
resp
.
data
;
let
CommunityList
=
resp
.
data
.
communityList
;
yield
put
({
type
:
'returnPage'
,
Data
});
yield
put
({
type
:
'Init/returnCommunityList'
,
CommunityList
});
}
break
;
case
29
:
// 小区新增编辑
...
...
src/models/init.ts
View file @
039c5669
import
*
as
service
from
'../services/Init'
;
import
{
message
}
from
'antd'
;
import
{
routerRedux
}
from
'dva/router'
import
{
routerRedux
}
from
'dva/router'
;
export
default
{
namespace
:
'Init'
,
...
...
@@ -11,21 +11,17 @@ export default {
reducers
:
{
returnCommunityList
(
state
,
{
CommunityList
})
{
// console.log(CommunityList);
return
{
...
state
,
CommunityList
};
},
},
effects
:
{
//获取
*
tosCommunityget
({
playload
},
{
call
,
put
})
{
const
resp
=
yield
call
(
service
.
tosCommunityget
,
playload
);
let
CommunityList
=
resp
.
data
.
communityList
;
yield
put
({
type
:
'returnCommunityList'
,
CommunityList
,
});
yield
put
({
type
:
'returnCommunityList'
,
CommunityList
});
},
},
};
src/pages/CommunityManagement/FacilityBookings/FacilityBookings.tsx
View file @
039c5669
...
...
@@ -183,9 +183,9 @@ const FacilityBookings = (props: any) => {
if
(
tab
==
1
)
{
RA
(
9
,
{
userToken
:
token
,
pageNum
:
curString
.
curPage
,
subscribeDate
:
curString
.
subscribeDate
,
status
:
curString
.
status
,
subscribeDate
:
curString
.
subscribeDate
,
pageNum
:
curString
.
curPage
,
communityNameList
:
curString
.
communityNameList
,
});
}
else
{
...
...
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