dataSubmission() { // return const params = { start: this.value2[0] ? moment(this.value2[0]).format("YYYY-MM-DD HH:mm:ss") : "", end: this.value2[1] ? moment(this.value2[1]).format("YYYY-MM-DD HH:mm:ss") : "", patientId: this.patientId, source: this.sourceTypeList .filter((item) => item.choice) .map((item) => { return { machineType: item.machine, sourceList: item.sources .filter((sItem) => sItem.checked) .map((mItem) => mItem.code), }; }), }; console.log(this.sourceTypeList); console.log(params, "params"); bioExport(params) .then((res) => { console.log(res, "ssssss"); const timeName = this.getNowDate(); const name = this.patientName + timeName; console.log(name, 123); this.downFileByStream(res, { type: "xls", name, }); this.value2 = []; if (res.success) { this.$message.success("操作成功"); } this.exportPop = false; }) .catch((err) => { console.log("err", err); this.$message.error(err.message); }); },
时间: 2024-02-10 15:33:28 浏览: 160
const-version:一个微型命令行工具,用于提取 `package.json` 版本并以 ES6 语法生成 `export const VERSION='...'` 文件
这段代码的作用是从前端向后端提交数据,后端根据提交的数据生成Excel文件,前端接收到文件数据后进行下载,并将下载的结果进行提示。
具体实现过程如下:
1. 获取需要提交的参数。在这段代码中,通过获取时间范围、病人ID、设备类型和设备来源等参数。
2. 调用bioExport函数向后端提交数据,并接收后端返回的数据。在这段代码中,调用了bioExport函数,将参数传递给后端,后端根据参数生成Excel文件,并将文件数据返回给前端。
3. 将返回的文件数据进行下载。在这段代码中,通过调用downFileByStream函数实现文件下载,并将下载的文件保存到本地。
4. 提示操作结果。在这段代码中,通过调用this.$message.success和this.$message.error函数,对操作结果进行提示。
需要注意的是,这段代码中使用了一些第三方库或函数,例如moment、bioExport和downFileByStream等。这些库或函数的具体实现需要参照具体的文档或代码进行调用。
阅读全文