Commit 0bc36754 by zhaochengxiang

服务配置页面增加isExcludeOtherOwner

parent 446b1489
......@@ -143,7 +143,8 @@ class Model extends React.Component {
const params = {
pdsDataServiceCatalogId: catalogId,
namespace: `${this.props.app?.env?.domainId}`
namespace: `${this.props.app?.env?.domainId}`,
isExcludeOtherOwner: !this.props.isOnlyEnding
};
if (currentModelState !== '') {
......@@ -165,7 +166,8 @@ class Model extends React.Component {
type: 'pds.getStateServices',
payload: {
pdsDataServiceStateCatalogId: catalogId,
namespace: `${this.props.app?.env?.domainId}`
namespace: `${this.props.app?.env?.domainId}`,
isExcludeOtherOwner: !this.props.isOnlyEnding
},
callback: data => {
this.setState({ loadingTableData: false, tableData: data.pdsdataServices||[], filterTableData: data.pdsdataServices||[] });
......@@ -179,6 +181,7 @@ class Model extends React.Component {
const params = {
term: keyword,
isExcludeOtherOwner: !this.props.isOnlyEnding
};
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