您的位置:首页 > 房产 > 建筑 > 怎样在微信上开店卖东西_2022营业执照年审入口_搜狗网站_如何做好一个品牌推广

怎样在微信上开店卖东西_2022营业执照年审入口_搜狗网站_如何做好一个品牌推广

2024/12/22 12:09:27 来源:https://blog.csdn.net/weixin_44409569/article/details/143595782  浏览:    关键词:怎样在微信上开店卖东西_2022营业执照年审入口_搜狗网站_如何做好一个品牌推广
怎样在微信上开店卖东西_2022营业执照年审入口_搜狗网站_如何做好一个品牌推广

1、 首先要设置get或者post请求的类型。这里我用到post请求

eg:在http.ts中添加公共的方法。

export function post1(url: string, params: any): Promise<AxiosResponse> | Promise<AxiosResponse<any>> {return new Promise((resolve, reject) => {server.post(url, params, { responseType: "blob" }).then((res) => {if (res.data.code == 401) {setTimeout(() => {// window.location.href = "/";// location.reload()setLocalStorage("access_token", null);// location.reload()}, 500);} else if (res.data.code == 499 || res.data.code == 401) {} else if (res.data.code == 403 || res.data.code == 402) {ElMessage.error("登录已过期,请重新登录");setTimeout(() => {setLocalStorage("access_token", null);}, 500);}resolve(res.data);}).catch((err) => {reject(err);});});
}

2、在api.ts中引用

export const export = (params?: any) => post1("/xx/xx/xx", params);

3、页面下载

 <el-button @click="exportExcel" :icon="Download" size="small" :disabled="exportExcelDisabled">导出报表</el-button>
const exportExcelDisabled = ref(false);
async function exportExcel() {exportExcelDisabled.value = true; // 防止双击let params = { ...form };await exportWalletTransaction(params).then((res: any) => {const blob = new Blob([res], {type: "application/vnd.ms-excel;charset=UTF-8"});const url = window.URL.createObjectURL(blob); // 创建URL对象const link = document.createElement("a"); // 创建a标签link.href = url;link.download = "xx" + moment(new Date().getTime()).format("YYYY-MM-DD  HH-mm-ss") +".xlsx"; // 设置下载文件名,可以用moment插件添加具体时间document.body.appendChild(link);link.click();document.body.removeChild(link);window.URL.revokeObjectURL(url);exportExcelDisabled.value = false; // 防止双击});
}

 

 

 

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com