Browse Source

下载测试

master
wklion 4 years ago
parent
commit
1b60105d4b
  1. 1
      package.json
  2. 1
      src/views/land/handLand/index.vue
  3. 4
      src/views/land/noneHandLand/index.vue

1
package.json

@ -26,6 +26,7 @@
"html2canvas": "^1.0.0-rc.7",
"jquery": "^3.4.1",
"js-cookie": "^2.2.0",
"js-file-download": "^0.4.12",
"less": "^3.11.1",
"less-loader": "^6.1.0",
"moment": "^2.28.0",

1
src/views/land/handLand/index.vue

@ -1028,6 +1028,7 @@ export default {
for (let item of this.selectedData) {
ids.push(item["proposedseriaId"]);
}
console.debug(ids);
exportHandLandToListExcel(ids.toString()).then((res) => {
console.debug(res);
});

4
src/views/land/noneHandLand/index.vue

@ -596,6 +596,7 @@ import {
import {
downUrlFile
} from '@/util/file'
import fileDownload from 'js-file-download'
export default {
name: "NoHandLand",
@ -1015,7 +1016,6 @@ export default {
//
exportData() {
console.debug("导出数据");
if (this.selectedData.length < 1) {
this.$message({
message: "未选中数据",
@ -1030,7 +1030,7 @@ export default {
}
console.debug(ids);
exportNoHandLandToListExcel(ids.toString()).then((res) => {
// debugger;
fileDownload(res.data,'kg.xlsx');
});
},

Loading…
Cancel
Save