Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
C
CivManage
Project
Project
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
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
ReactWeb5
CivManage
Commits
c0cf7174
Commit
c0cf7174
authored
Apr 28, 2022
by
皮倩雯
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix: '消息平台推送模板配置新增WEB,APP配置'
parent
9e324b11
Pipeline
#49031
passed with stages
in 4 minutes 34 seconds
Changes
4
Pipelines
1
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
34 additions
and
9 deletions
+34
-9
index.jsx
src/components/ExpendableTree/index.jsx
+3
-2
standingBook.jsx
src/pages/bsmanager/base/standingBook/standingBook.jsx
+31
-7
AddModal.jsx
...nter/messageManage/templateManage/components/AddModal.jsx
+0
-0
EditModal.jsx
...ter/messageManage/templateManage/components/EditModal.jsx
+0
-0
No files found.
src/components/ExpendableTree/index.jsx
View file @
c0cf7174
...
...
@@ -2,7 +2,7 @@
* @Description:
* @Author: leizhe
* @Date: 2022-03-04 18:33:24
* @LastEditTime: 2022-0
3-24 17:41:25
* @LastEditTime: 2022-0
4-27 14:26:14
* @LastEditors: leizhe
*/
import
{
Tree
}
from
'antd'
;
...
...
@@ -18,7 +18,8 @@ export default props => {
const
{
expandedKeys
,
onExpand
,
onSelect
,
selectedKeys
,
keepTree
,
...
rest
}
=
props
;
const
[
epKeys
,
setEpKeys
]
=
useState
([
expandedKeys
]);
useEffect
(()
=>
{
console
.
log
(
expandedKeys
,
'expandedKeys'
);
console
.
log
(
expandedKeys
);
console
.
log
(
selectedKeys
);
setEpKeys
([
expandedKeys
]);
},
[
expandedKeys
]);
...
...
src/pages/bsmanager/base/standingBook/standingBook.jsx
View file @
c0cf7174
...
...
@@ -31,6 +31,7 @@ const StandingBook = props => {
const
[
allData
,
setAllData
]
=
useState
([]);
const
[
tableData
,
setTableData
]
=
useState
([]);
const
[
treeLoading
,
setTreeLoading
]
=
useState
(
false
);
const
[
tableLoading
,
setTableLoading
]
=
useState
(
false
);
const
[
maxLength
,
setMaxLength
]
=
useState
(
0
);
const
[
treeVisible
,
setTreeVisible
]
=
useState
(
true
);
// 左边列表是否可见
const
[
formObj
,
setFormObj
]
=
useState
(
''
);
...
...
@@ -180,7 +181,7 @@ const StandingBook = props => {
setShowSearchStyle
(
false
);
// 第一次进入展示第一页 不是第一次进入根据当前选择的来进行展示
flag
===
0
?
setPickItem
(
newArr
[
0
])
:
setPickItem
(
pickItem
);
// pickItem ? setPickItem(pickItem) :
setPickItem(newArr[0]);
setPickItem
(
newArr
[
0
]);
console
.
log
(
newArr
,
'newArr'
);
setTableData
(
newArr
);
}
...
...
@@ -257,9 +258,9 @@ const StandingBook = props => {
const
onSearch
=
()
=>
{
console
.
log
(
searchWord
);
console
.
log
(
pickItem
);
setT
re
eLoading
(
true
);
setT
abl
eLoading
(
true
);
GetCM_Ledger_LoadLedgers
({
accountName
:
searchWord
}).
then
(
res
=>
{
setT
re
eLoading
(
false
);
setT
abl
eLoading
(
false
);
if
(
res
.
msg
===
'Ok'
&&
res
.
data
.
root
)
{
console
.
log
(
res
.
data
.
root
);
setMaxLength
(
res
.
data
.
root
.
length
+
1
);
...
...
@@ -270,7 +271,7 @@ const StandingBook = props => {
});
console
.
log
(
arr
);
setShowSearchStyle
(
true
);
setAllData
(
arr
);
//
setAllData(arr);
setSearchData
(
res
.
data
.
root
);
setPickItem
(
''
);
// 第一次进入展示第一页 不是第一次进入根据当前选择的来进行展示
...
...
@@ -285,7 +286,27 @@ const StandingBook = props => {
console
.
log
(
e
.
target
.
value
);
setSearchWord
(
e
.
target
.
value
);
if
(
e
.
target
.
value
==
''
)
{
handleReset
();
setTableLoading
(
true
);
GetCM_Ledger_LoadLedgers
().
then
(
res
=>
{
setTableLoading
(
false
);
if
(
res
.
msg
===
'Ok'
&&
res
.
data
.
root
)
{
console
.
log
(
res
.
data
.
root
);
setMaxLength
(
res
.
data
.
root
.
length
+
1
);
let
arr
=
formateArrDataA
(
res
.
data
.
root
,
'type'
);
let
newArr
=
[];
Object
.
keys
(
arr
).
map
((
item
,
index
)
=>
{
newArr
.
push
(
item
);
});
console
.
log
(
arr
);
setAllData
(
arr
);
setShowSearchStyle
(
false
);
// 第一次进入展示第一页 不是第一次进入根据当前选择的来进行展示
flag
===
0
?
setPickItem
(
newArr
[
0
])
:
setPickItem
(
pickItem
);
setPickItem
(
newArr
[
0
]);
console
.
log
(
newArr
,
'newArr'
);
setTableData
(
newArr
);
}
});
}
};
...
...
@@ -301,7 +322,6 @@ const StandingBook = props => {
};
const
handleReset
=
()
=>
{
setFlag
(
flag
+
1
);
setSearchWord
(
''
);
};
return
(
<
PageContainer
className=
{
styles
.
userManageContainer
}
>
...
...
@@ -354,7 +374,10 @@ const StandingBook = props => {
[
styles
.
pickItem
]:
item
===
pickItem
,
[
styles
.
listHover
]:
item
!==
pickItem
&&
item
===
hoverItemIndex
,
})
}
onClick=
{
e
=>
setPickItem
(
item
)
}
onClick=
{
()
=>
{
setPickItem
(
item
);
setSearchWord
(
''
);
}
}
onMouseEnter=
{
()
=>
{
setHoverItemIndex
(
item
);
}
}
...
...
@@ -422,6 +445,7 @@ const StandingBook = props => {
};
}
}
columns=
{
columns
}
loading=
{
tableLoading
}
dataSource=
{
pickItem
?
allData
[
pickItem
]
:
searchData
}
// loading={tableLoading}
scroll=
{
{
x
:
'max-content'
,
y
:
'calc(100vh - 180px)'
}
}
...
...
src/pages/platformCenter/messageManage/templateManage/components/AddModal.jsx
View file @
c0cf7174
This diff is collapsed.
Click to expand it.
src/pages/platformCenter/messageManage/templateManage/components/EditModal.jsx
View file @
c0cf7174
This diff is collapsed.
Click to expand it.
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