deartibers 2 years ago
parent
commit
a5d4fc1c67
  1. 2
      web/client/src/sections/install/components/adminModal.jsx
  2. 3
      web/client/src/sections/install/components/memberModal.jsx
  3. 2
      web/client/src/sections/install/containers/system.jsx
  4. 2
      web/client/src/sections/service/containers/emPush.jsx

2
web/client/src/sections/install/components/adminModal.jsx

@ -117,6 +117,7 @@ function adminModal (props) {
style={{ width: 417 }}
rules={[{ required: true, message: "请选择部门" }]}
initValue={departmentId || ""}
filter
showClear
>
{
@ -139,6 +140,7 @@ function adminModal (props) {
rules={[{ required: true, message: "请选择人员" }]}
initValue={peopleId || ""}
showClear
filter
disabled={disablePeople}
>
{

3
web/client/src/sections/install/components/memberModal.jsx

@ -139,6 +139,7 @@ function memberModal (props) {
style={{ width: 417 }}
rules={[{ required: true, message: "请选择部门" }]}
showClear
filter
initValue={departmentId || ""}
disabled={memberEdit}
>
@ -157,6 +158,7 @@ function memberModal (props) {
<Form.Select
label="选择人员:"
field="pepUserId"
filter
placeholder="请选择人员"
style={{ width: 417 }}
rules={[{ required: true, message: "请选择人员" }]}
@ -208,6 +210,7 @@ function memberModal (props) {
placeholder="请选择关联项目"
initValue={anxincloudArr}
style={{ width: 417 }}
filter
showClear
>
{

2
web/client/src/sections/install/containers/system.jsx

@ -56,7 +56,7 @@ const Example = (props) => {
dispatch(install.getProjectAppList(query)).then((res) => {//
setAppList(res.payload.data)
})
console.log('user',user);
}, [])
useEffect(() => {
getProjectPomsList();

2
web/client/src/sections/service/containers/emPush.jsx

@ -513,7 +513,7 @@ const EmPush = (props) => {
dataIndex: "pushCount",
key: "pushCount",
render: (_, r, index) => {
return r.pushCount + '次'
return (r.pushCount||0) + '次'
},
},
];

Loading…
Cancel
Save