导出查询结果增加dataId条件

This commit is contained in:
keran 2019-07-09 13:38:28 +08:00
parent 3d65579094
commit 551f64ba84

View File

@ -673,9 +673,10 @@ class ConfigurationManagement extends React.Component {
} }
exportData() { exportData() {
let url = `v1/cs/configs?export=true&group=${this.group}&tenant=${getParams( let url =
'namespace' `v1/cs/configs?export=true&group=${this.group}&tenant=${getParams('namespace')}&appName=${
)}&appName=${this.appName}&ids=`; this.appName
}&ids=&dataId=` + this.dataId;
window.location.href = url; window.location.href = url;
} }