Commit 0bc36754 by zhaochengxiang

服务配置页面增加isExcludeOtherOwner

parent 446b1489
...@@ -143,7 +143,8 @@ class Model extends React.Component { ...@@ -143,7 +143,8 @@ class Model extends React.Component {
const params = { const params = {
pdsDataServiceCatalogId: catalogId, pdsDataServiceCatalogId: catalogId,
namespace: `${this.props.app?.env?.domainId}` namespace: `${this.props.app?.env?.domainId}`,
isExcludeOtherOwner: !this.props.isOnlyEnding
}; };
if (currentModelState !== '') { if (currentModelState !== '') {
...@@ -165,7 +166,8 @@ class Model extends React.Component { ...@@ -165,7 +166,8 @@ class Model extends React.Component {
type: 'pds.getStateServices', type: 'pds.getStateServices',
payload: { payload: {
pdsDataServiceStateCatalogId: catalogId, pdsDataServiceStateCatalogId: catalogId,
namespace: `${this.props.app?.env?.domainId}` namespace: `${this.props.app?.env?.domainId}`,
isExcludeOtherOwner: !this.props.isOnlyEnding
}, },
callback: data => { callback: data => {
this.setState({ loadingTableData: false, tableData: data.pdsdataServices||[], filterTableData: data.pdsdataServices||[] }); this.setState({ loadingTableData: false, tableData: data.pdsdataServices||[], filterTableData: data.pdsdataServices||[] });
...@@ -179,6 +181,7 @@ class Model extends React.Component { ...@@ -179,6 +181,7 @@ class Model extends React.Component {
const params = { const params = {
term: keyword, term: keyword,
isExcludeOtherOwner: !this.props.isOnlyEnding
}; };
if (currentModelState !== '') { if (currentModelState !== '') {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment