|
@@ -1,4 +1,4 @@
|
|
|
-import { getAction, deleteAction, putAction, postAction, httpAction } from '@/api/manage'
|
|
|
+import { getAction, deleteAction, putAction, postAction, httpAction, downFile } from '@/api/manage'
|
|
|
import Vue from 'vue'
|
|
|
import {UI_CACHE_DB_DICT_DATA } from "@/store/mutation-types"
|
|
|
|
|
@@ -145,6 +145,11 @@ const checkRuleByCode = (params) => getAction('/sys/checkRule/checkByCode', para
|
|
|
const getUserNoticeInfo= (params)=>getAction("/sys/sysAnnouncementSend/getMyAnnouncementSend",params);
|
|
|
const getTransitURL = url => `/sys/common/transitRESTful?url=${encodeURIComponent(url)}`
|
|
|
|
|
|
+
|
|
|
+const downWeituo_info= (params)=>downFile("weituo/itdmWeituoInfo/word",params);
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
// 中转HTTP请求
|
|
|
export const transitRESTful = {
|
|
|
get: (url, parameter) => getAction(getTransitURL(url), parameter),
|
|
@@ -234,7 +239,8 @@ export {
|
|
|
getWeiSb,
|
|
|
getWeiSj,
|
|
|
upload,
|
|
|
- getUpload
|
|
|
+ getUpload,
|
|
|
+ downWeituo_info,
|
|
|
}
|
|
|
|
|
|
|