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

下载修改

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