Merge branch 'main' of https://gitea.frp.extimaging.com/XCKJ/irc_web into main
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
commit
2d93a1a5ac
|
@ -949,7 +949,11 @@ export default {
|
||||||
// 导出Excel表格
|
// 导出Excel表格
|
||||||
handleExportTrial() {
|
handleExportTrial() {
|
||||||
this.exportLoading = true;
|
this.exportLoading = true;
|
||||||
return getTrialList_Export(this.searchData)
|
let data = {
|
||||||
|
...this.searchData,
|
||||||
|
};
|
||||||
|
data.TrialIdList = this.selectArr.map((item) => item.Id);
|
||||||
|
return getTrialList_Export(data)
|
||||||
.then((res) => {
|
.then((res) => {
|
||||||
this.exportLoading = false;
|
this.exportLoading = false;
|
||||||
})
|
})
|
||||||
|
|
Loading…
Reference in New Issue