Commit 72abe1c5 authored by 黄奎's avatar 黄奎

下载修改

parent 83747c65
......@@ -196,10 +196,8 @@
<div style="text-align: right; margin-top: 20px">
<el-button size="small" type="primary" @click="downloadBrandFile">导出</el-button>
</div>
</div>
</el-dialog>
<a id="downloadLink" href="" download="品牌信息.xls" style="display:none">下载 Excel 文件</a>
</div>
</template>
<script>
......@@ -300,7 +298,7 @@
}
);
},
//批量导出
//下载品牌文件
downloadBrandFile() {
this.msg.ExcelEnumIds = this.checkedCities;
let msg = JSON.parse(JSON.stringify(this.msg));
......@@ -337,16 +335,6 @@
fileUrl: fileUrl,
filepath: filepath,
};
// that.downLoadLoading = false;
// that.loadingText = "";
// that.dialogVisible = false;
// var newUrl = that.domainManager().DomainUrl + fileUrl;
// var linkObj = document.getElementById("downloadLink");
// linkObj.href = newUrl;
// linkObj.setAttribute("download", fileName);
// linkObj.click();
var apiurl = that.domainManager().DomainUrl + "/api/Trade/GetFile";
var postData = that.GetPostData("", params, "");
that.$http.post(apiurl, postData, {
......@@ -383,10 +371,8 @@
var tempData = [];
let data = res.data.data;
data.forEach((item) => {
this.cityOptions.push(item.Id);
tempData.push(item);
this.cityOptions.push(item.Id);
tempData.push(item);
});
this.cities = tempData;
});
......
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