فهرست منبع

测试文件下载window.open的可行性

sophieChenyx 6 سال پیش
والد
کامیت
d370d7f63e
2فایلهای تغییر یافته به همراه4 افزوده شده و 1 حذف شده
  1. 3 1
      src/models/accounts.js
  2. 1 0
      src/utils/request.js

+ 3 - 1
src/models/accounts.js

@@ -31,8 +31,10 @@ export default {
         });
       }
     },
+    // 下载功能的封装
     *fetchCampusExcel({ payload }, { call }) {
-      yield call(downloadCampusExcel, payload);
+      window.open('http://47.95.197.36:8500/stmt/campus/export');
+      // yield call(downloadCampusExcel, payload);
     },
     *fetchTerminalsList({ payload }, { call, put }) {
       console.log('fetchTerminalsList');

+ 1 - 0
src/utils/request.js

@@ -52,6 +52,7 @@ function checkContentStatus(data) {
  * @param  {object} [options] The options we want to pass to "fetch"
  * @return {object}           An object containing either "data" or "err"
  */
+
 export default function request(url, options) {
   const defaultOptions = {
     credentials: 'include',