Compare commits
No commits in common. "e1867c94fdc1d129291725da346c10179de020ed" and "9a040f9627b65cfbc9ebde65b35e7c89e6886958" have entirely different histories.
e1867c94fd
...
9a040f9627
|
|
@ -13,7 +13,6 @@ pnpm-lock.yaml
|
|||
node_modules
|
||||
.DS_Store
|
||||
dist
|
||||
dist.zip
|
||||
dist-ssr
|
||||
coverage
|
||||
*.local
|
||||
|
|
|
|||
12
11.txt
|
|
@ -47,15 +47,3 @@ urfhsdkjdwerwnvsojj
|
|||
]
|
||||
},
|
||||
]
|
||||
|
||||
|
||||
|
||||
审批流按钮权限对应显示
|
||||
|
||||
文件下载没有后缀
|
||||
|
||||
内容管理 右侧按钮浮动错位
|
||||
|
||||
只有admin, database担当 ,上传者 可以删除文件。
|
||||
|
||||
外部足迹统计误差 两个链接的统计上面
|
||||
|
|
@ -32,7 +32,6 @@ declare module 'vue' {
|
|||
ElInputNumber: typeof import('element-plus/es')['ElInputNumber']
|
||||
ElOption: typeof import('element-plus/es')['ElOption']
|
||||
ElPagination: typeof import('element-plus/es')['ElPagination']
|
||||
ElPopconfirm: typeof import('element-plus/es')['ElPopconfirm']
|
||||
ElProgress: typeof import('element-plus/es')['ElProgress']
|
||||
ElRadio: typeof import('element-plus/es')['ElRadio']
|
||||
ElRadioGroup: typeof import('element-plus/es')['ElRadioGroup']
|
||||
|
|
|
|||
|
|
@ -19,9 +19,9 @@ export function report(data: any) {
|
|||
// {"msg":"b5c17f42-4f63-4fbd-b5cf-9c82b033c9a7","code":200}
|
||||
export interface LoginReq {
|
||||
// 账号 13923879210
|
||||
account: string
|
||||
account: string,
|
||||
// 密码 123456
|
||||
password: string
|
||||
password: string,
|
||||
authType:string
|
||||
}
|
||||
export function login(data: LoginReq) {
|
||||
|
|
@ -63,17 +63,18 @@ export async function deptTree(params: any) {
|
|||
return http.get('/user/deptTree',{params})
|
||||
}
|
||||
export interface userPage{
|
||||
pageNum?: string
|
||||
pageSize?: string
|
||||
phonenumber?: string
|
||||
status?: string
|
||||
beingTime: string
|
||||
endTime: string
|
||||
deptId?: string
|
||||
nickName: string
|
||||
reviewSource: string
|
||||
pageNum?:string,
|
||||
pageSize?:string,
|
||||
phonenumber?:string,
|
||||
status?:string,
|
||||
beingTime:string,
|
||||
endTime:string,
|
||||
deptId?:string,
|
||||
nickName:string,
|
||||
reviewSource:string,
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* 接口URL:daikin-获取用户分页列表
|
||||
GET
|
||||
|
|
@ -116,7 +117,7 @@ export interface ArticlePageReq {
|
|||
// 类型 1-外部情报 2-内部情报
|
||||
type?: string
|
||||
// 分类 1-外部环境 2-竞争对手 3-供方动向 4-大金集团 5-中国据点 6-调达本部 7-news 8-重要通知
|
||||
cate?: String
|
||||
cate?: String,
|
||||
position:String
|
||||
}
|
||||
export async function getArticlePage(params: ArticlePageReq) {
|
||||
|
|
@ -155,7 +156,7 @@ export async function getManagerDetail(id: string) {
|
|||
}
|
||||
// 撤回
|
||||
export async function deleteWithdraw(id: string) {
|
||||
return http.get('/article/withdraw?id=' + id)
|
||||
return http.get("/article/withdraw?id=" + id)
|
||||
}
|
||||
// 外部情报-管理列表
|
||||
export async function getManagerList(params: {pageNum: any;pageSize:any}) {
|
||||
|
|
@ -168,24 +169,21 @@ export async function getExternalManagerDetail(id: string) {
|
|||
}
|
||||
// news/重要通知-撤回
|
||||
export async function externalWithdraw(id: string) {
|
||||
return http.get('/article/external/withdraw?id=' + id)
|
||||
return http.get("/article/external/withdraw?id=" + id)
|
||||
}
|
||||
// news/重要通知-流程列表
|
||||
export async function getExternalManagerList(params: {
|
||||
pageNum: any
|
||||
pageSize: any
|
||||
}) {
|
||||
export async function getExternalManagerList(params: {pageNum: any;pageSize:any}) {
|
||||
return http.get('/article/external/getManagerList', { params})
|
||||
}
|
||||
// -------------------------------------列表end
|
||||
export interface ArticleSave {
|
||||
title: string //标题
|
||||
content: string //内容
|
||||
tag: string //标签 紧急/New
|
||||
source: string //"网站添加", //来源 文本
|
||||
type?: string
|
||||
cate?: string //分类 1-外部环境 2-竞争对手 3-供方动向 4-大金集团 5-中国据点 6-调达本部
|
||||
reviewSource: number
|
||||
title: string, //标题
|
||||
content: string, //内容
|
||||
tag: string, //标签 紧急/New
|
||||
source: string, //"网站添加", //来源 文本
|
||||
type?: string,
|
||||
cate?: string, //分类 1-外部环境 2-竞争对手 3-供方动向 4-大金集团 5-中国据点 6-调达本部
|
||||
reviewSource:number,
|
||||
}
|
||||
// 接口URL: 提交情报
|
||||
|
||||
|
|
@ -200,7 +198,7 @@ export interface ArticleSave {
|
|||
// }
|
||||
export async function saveArticle(data: ArticleSave) {
|
||||
// return openApiRequest({ url: `/article/save`, data })
|
||||
return http.post('/article/save', data)
|
||||
return http.post("/article/save",data)
|
||||
}
|
||||
|
||||
// 接口URL: 分类文件-上下拖动排序
|
||||
|
|
@ -213,7 +211,7 @@ export async function saveArticle(data: ArticleSave) {
|
|||
// "lastId": 5 //被移动位置的文件id
|
||||
// }
|
||||
export async function dragFile(data: ArticleSave) {
|
||||
return http.post('/db/cateFileSort', data)
|
||||
return http.post("/db/cateFileSort",data)
|
||||
}
|
||||
|
||||
/**情报banner图
|
||||
|
|
@ -221,11 +219,13 @@ export async function dragFile(data: ArticleSave) {
|
|||
*
|
||||
*/
|
||||
export async function getBannerList(params: any) {
|
||||
return http.get('/article/getBannerList', { params })
|
||||
return http.get("/article/getBannerList",{params})
|
||||
}
|
||||
|
||||
|
||||
|
||||
export interface notice{
|
||||
reviewStatus: number
|
||||
reviewStatus:number,
|
||||
reviewSource:number
|
||||
}
|
||||
|
||||
|
|
@ -237,7 +237,7 @@ token
|
|||
674f3e91-38de-4065-a4e2-2ce8981864fa
|
||||
*/
|
||||
export async function getNoticeList(params:notice) {
|
||||
return http.get('/article/getNoticeList', { params })
|
||||
return http.get("/article/getNoticeList",{params})
|
||||
}
|
||||
|
||||
/** 首页列表
|
||||
|
|
@ -248,11 +248,11 @@ token
|
|||
674f3e91-38de-4065-a4e2-2ce8981864fa
|
||||
*/
|
||||
export async function getHomeList(params:notice) {
|
||||
return http.get('/cd/homeList', { params })
|
||||
return http.get("/cd/homeList",{params})
|
||||
}
|
||||
|
||||
export async function statDel(params:notice) {
|
||||
return http.get('/cd/statDel', { params })
|
||||
return http.get("/cd/statDel",{params})
|
||||
}
|
||||
|
||||
/** 树数据
|
||||
|
|
@ -263,17 +263,18 @@ token
|
|||
674f3e91-38de-4065-a4e2-2ce8981864fa
|
||||
*/
|
||||
export async function getTreeList(params:notice) {
|
||||
return http.get('/cd/treeList', { params })
|
||||
return http.get("/cd/treeList",{params})
|
||||
}
|
||||
|
||||
export async function statEdit(data: ArticleReview) {
|
||||
return http.post('/cd/statEdit', data)
|
||||
return http.post("/cd/statEdit",data)
|
||||
}
|
||||
|
||||
|
||||
export interface msg{
|
||||
pageNum: number
|
||||
treeSource: number
|
||||
pageSize: number
|
||||
pageNum:number,
|
||||
treeSource:number,
|
||||
pageSize:number,
|
||||
}
|
||||
/**留言板列表
|
||||
* http://127.0.0.1:8811/openApi/article/boardMsgList
|
||||
|
|
@ -281,10 +282,10 @@ export interface msg {
|
|||
*
|
||||
*/
|
||||
export async function boardMsgList(params:msg) {
|
||||
return http.get('/article/boardMsgList', { params })
|
||||
return http.get("/article/boardMsgList",{params})
|
||||
}
|
||||
export async function deleteMsgById(id: string) {
|
||||
return http.get('/article/delMsgList?id=' + id)
|
||||
return http.get("/article/delMsgList?id=" + id)
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
@ -293,24 +294,21 @@ POST
|
|||
http://127.0.0.1:8811/openApi/supplier/trendsAdd
|
||||
*/
|
||||
export async function trendsAdd(data: { title: any; content: string }) {
|
||||
return http.post('/supplier/trendsAdd', data)
|
||||
return http.post("/supplier/trendsAdd",data)
|
||||
}
|
||||
/**
|
||||
* 留言板-动态-详情
|
||||
http://127.0.0.1:8811/openApi/supplier/trendsDetail?id=1
|
||||
*/
|
||||
export async function trendsDetail(params: any) {
|
||||
return http.get('/supplier/trendsDetail', { params })
|
||||
return http.get("/supplier/trendsDetail" ,{params})
|
||||
}
|
||||
|
||||
/**留言板-动态-分页列表
|
||||
* http://127.0.0.1:8811/openApi/supplier/trendsPage?pageNum=1&pageSize=20
|
||||
*/
|
||||
export async function trendsPage(params: {
|
||||
pageNum: number
|
||||
pageSize: number
|
||||
}) {
|
||||
return http.get('/supplier/trendsPage', { params })
|
||||
export async function trendsPage(params: { pageNum: number; pageSize: number }) {
|
||||
return http.get("/supplier/trendsPage" ,{params})
|
||||
}
|
||||
|
||||
/**留言板-需求依赖-添加
|
||||
|
|
@ -318,43 +316,40 @@ export async function trendsPage(params: {
|
|||
http://127.0.0.1:8811/openApi/supplier/demandAdd
|
||||
*/
|
||||
export async function demandAdd(data: any) {
|
||||
return http.post('/supplier/demandAdd', data)
|
||||
return http.post("/supplier/demandAdd",data)
|
||||
}
|
||||
/**
|
||||
* 留言板-需求依赖-详情
|
||||
* http://127.0.0.1:8811/openApi/supplier/demandDetail?id=1
|
||||
*/
|
||||
export async function demandDetail(params: any) {
|
||||
return http.get('/supplier/demandDetail', { params })
|
||||
return http.get("/supplier/demandDetail" ,{params})
|
||||
}
|
||||
/**
|
||||
* 留言板-需求依赖-分页列表
|
||||
* http://127.0.0.1:8811/openApi/supplier/demandPage?pageNum=1&pageSize=20
|
||||
*/
|
||||
export async function demandPage(params: {
|
||||
pageNum: number
|
||||
pageSize: number
|
||||
}) {
|
||||
return http.get('/supplier/demandPage', { params })
|
||||
export async function demandPage(params: { pageNum: number; pageSize: number }) {
|
||||
return http.get("/supplier/demandPage" ,{params})
|
||||
}
|
||||
/***
|
||||
* 留言板-供应商留言-添加
|
||||
* http://127.0.0.1:8811/openApi/supplier/faqAdd
|
||||
*/
|
||||
export async function faqAdd(data: any) {
|
||||
return http.post('/supplier/faqAdd', data)
|
||||
return http.post("/supplier/faqAdd",data)
|
||||
}
|
||||
/**留言板-供应商留言-详情
|
||||
* http://127.0.0.1:8811/openApi/supplier/faqDetail?id=2
|
||||
*/
|
||||
export async function faqDetail(params: any) {
|
||||
return http.get('/supplier/faqDetail', { params })
|
||||
return http.get("/supplier/faqDetail" ,{params})
|
||||
}
|
||||
/**留言板-供应商留言-分页列表
|
||||
* http://127.0.0.1:8811/openApi/supplier/faqPage?pageNum=1&pageSize=20
|
||||
*/
|
||||
export async function faqPage(params: { pageNum: number; pageSize: number }) {
|
||||
return http.get('/supplier/faqPage', { params })
|
||||
return http.get("/supplier/faqPage" ,{params})
|
||||
}
|
||||
|
||||
/**留言删除
|
||||
|
|
@ -373,7 +368,7 @@ export async function demandDel(params: any) {
|
|||
* http://127.0.0.1:8811/openApi/supplier/reply
|
||||
*/
|
||||
export async function reply(data: any) {
|
||||
return http.post('/supplier/reply', data)
|
||||
return http.post("/supplier/reply",data)
|
||||
}
|
||||
|
||||
/**留言板-供应商留言-撤回
|
||||
|
|
@ -391,12 +386,12 @@ export async function demandWithdraw(data: any) {
|
|||
}
|
||||
|
||||
export interface ArticleReview{
|
||||
id?: string
|
||||
title: string
|
||||
content: string
|
||||
source: string
|
||||
cate?: string
|
||||
noticeId?: string
|
||||
id?:string,
|
||||
title:string,
|
||||
content:string,
|
||||
source:string,
|
||||
cate?:string,
|
||||
noticeId?:string,
|
||||
userIdList:any[]
|
||||
}
|
||||
|
||||
|
|
@ -418,26 +413,30 @@ http://127.0.0.1:8811/openApi/article/review
|
|||
* @returns
|
||||
*/
|
||||
export async function review(data: ArticleReview) {
|
||||
return http.post('/article/review', data)
|
||||
return http.post("/article/review",data)
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* CD-首页发注金额列表
|
||||
* @returns http://127.0.0.1:8811/openApi/cd/amountList
|
||||
*/
|
||||
export async function amountList() {
|
||||
return http.get('/cd/amountList')
|
||||
return http.get("/cd/amountList")
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* "number": "DIS", //编号 DIS/DSZ/DISH
|
||||
"amount": "30"
|
||||
* @returns http://127.0.0.1:8811/openApi/cd/updateAmount
|
||||
*/
|
||||
export async function updateAmount(data: any) {
|
||||
return http.post('/cd/updateAmount', data)
|
||||
return http.post("/cd/updateAmount",data)
|
||||
}
|
||||
|
||||
|
||||
|
||||
// 接口URL:
|
||||
// GET
|
||||
// http://127.0.0.1:8811/openApi/cdCate/treeList
|
||||
|
|
@ -472,8 +471,9 @@ export async function curYearDataStat(data: getData) {
|
|||
return http.post('/cdCate/curYearDataStat',data)
|
||||
}
|
||||
|
||||
|
||||
export interface hisYearD{
|
||||
cateId: number
|
||||
cateId:number,
|
||||
yearTime:string
|
||||
}
|
||||
/*
|
||||
|
|
@ -493,6 +493,7 @@ export async function hisYearDataStat(data: hisYearD) {
|
|||
return http.post('/cdCate/hisYearDataStat',data)
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* CD业种-历史度数据列表
|
||||
* http://127.0.0.1:8811/openApi/cdCate/hisDataList
|
||||
|
|
@ -540,13 +541,12 @@ http://127.0.0.1:8811/openApi/common/upload
|
|||
multipart/form-data
|
||||
*/
|
||||
|
||||
export async function upload(
|
||||
params: any,
|
||||
Headers: AxiosRequestConfig<any> | undefined
|
||||
) {
|
||||
|
||||
export async function upload(params: any,Headers: AxiosRequestConfig<any> | undefined){
|
||||
return http.post('/common/upload',params,Headers)
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* 接口URL:获取分组列表
|
||||
GET
|
||||
|
|
@ -560,10 +560,11 @@ export async function getGroupList() {
|
|||
return http.get('/group/getList')
|
||||
}
|
||||
|
||||
|
||||
export interface getNotice{
|
||||
id: string
|
||||
name: string
|
||||
userIdList: Array<any>
|
||||
id:string,
|
||||
name:string,
|
||||
userIdList:Array<any>,
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
@ -572,15 +573,13 @@ POST
|
|||
http://127.0.0.1:8811/openApi/group/add
|
||||
*
|
||||
*/
|
||||
export async function addGroup(
|
||||
params: getNotice,
|
||||
Headers: AxiosRequestConfig<any> | undefined
|
||||
) {
|
||||
export async function addGroup(params: getNotice,Headers:AxiosRequestConfig<any> | undefined){
|
||||
return http.post('/group/add',params,Headers)
|
||||
}
|
||||
|
||||
|
||||
export interface group{
|
||||
id: string
|
||||
id:string,
|
||||
}
|
||||
|
||||
/**删除分组
|
||||
|
|
@ -592,6 +591,9 @@ export async function deleteGroup(params: group) {
|
|||
return http.get('/group/delete',{params})
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
export interface newPwd{
|
||||
newPassword:string
|
||||
oldPassword:string
|
||||
|
|
@ -602,13 +604,11 @@ export interface newPwd {
|
|||
http://127.0.0.1:8811/openApi/auth/updatePwd
|
||||
*
|
||||
*/
|
||||
export async function updatePwd(
|
||||
params: newPwd,
|
||||
Headers: AxiosRequestConfig<any> | undefined
|
||||
) {
|
||||
export async function updatePwd(params: newPwd,Headers:AxiosRequestConfig<any> | undefined){
|
||||
return http.post('/auth/updatePwd',params,Headers)
|
||||
}
|
||||
|
||||
|
||||
export interface work{
|
||||
pageNum:number
|
||||
}
|
||||
|
|
@ -636,8 +636,8 @@ export async function getPageWork(params: work) {
|
|||
}
|
||||
|
||||
export interface visit{
|
||||
pageNum: number
|
||||
status: number
|
||||
pageNum:number,
|
||||
status:number,
|
||||
source:number
|
||||
}
|
||||
|
||||
|
|
@ -651,6 +651,7 @@ export async function getPageInv(params: visit) {
|
|||
return http.get('/inv/getPage',{params})
|
||||
}
|
||||
|
||||
|
||||
/**拜访列表
|
||||
* http://127.0.0.1:8811/openApi/visit/getPage
|
||||
*
|
||||
|
|
@ -661,23 +662,20 @@ export async function getPageVisit(params: visit) {
|
|||
}
|
||||
|
||||
export interface pupid{
|
||||
title: string
|
||||
content: string
|
||||
actName: string
|
||||
actSTime: string
|
||||
actETime: string
|
||||
position: string
|
||||
userIdList: Array<any>
|
||||
title:string,
|
||||
content:string,
|
||||
actName:string,
|
||||
actSTime:string,
|
||||
actETime:string,
|
||||
position:string,
|
||||
userIdList:Array<any>,
|
||||
}
|
||||
/**发布邀请函
|
||||
* :
|
||||
POST
|
||||
http://127.0.0.1:8811/openApi/inv/add
|
||||
*/
|
||||
export async function addPageInv(
|
||||
params: pupid,
|
||||
Headers: AxiosRequestConfig<any> | undefined
|
||||
) {
|
||||
export async function addPageInv(params: pupid,Headers:AxiosRequestConfig<any> | undefined){
|
||||
return http.post('/inv/add',params,Headers)
|
||||
}
|
||||
|
||||
|
|
@ -689,10 +687,7 @@ export async function addPageInv(
|
|||
POST
|
||||
http://127.0.0.1:8811/openApi/visit/add
|
||||
*/
|
||||
export async function addPageVisit(
|
||||
params: pupid,
|
||||
Headers: AxiosRequestConfig<any> | undefined
|
||||
) {
|
||||
export async function addPageVisit(params: pupid,Headers:AxiosRequestConfig<any> | undefined){
|
||||
return http.post('/visit/add',params,Headers)
|
||||
}
|
||||
|
||||
|
|
@ -707,6 +702,7 @@ export async function visitInfo(id: string) {
|
|||
return http.get(`/visit/getDetail/${id}`)
|
||||
}
|
||||
|
||||
|
||||
/**邀请函详情
|
||||
|
||||
* 接口URL:
|
||||
|
|
@ -718,6 +714,7 @@ export async function invInfo(id: string) {
|
|||
return http.get(`/inv/getDetail/${id}`)
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* 获取CSR属性信息
|
||||
* http://127.0.0.1:8811/openApi/csr/getDetail
|
||||
|
|
@ -726,11 +723,13 @@ export async function getCSRDetail() {
|
|||
return http.get(`/csr/getDetail`)
|
||||
}
|
||||
|
||||
|
||||
export interface CSR{
|
||||
id: string
|
||||
id:string,
|
||||
content:Object
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* http://127.0.0.1:8811/openApi/csr/updateFootprint
|
||||
* 碳足迹板块信息-新增/更新
|
||||
|
|
@ -743,11 +742,7 @@ export async function updateFootprint(data: CSR) {
|
|||
* 碳足迹板块信息-列表
|
||||
* http://127.0.0.1:8811/openApi/csr/getFootprintList
|
||||
*/
|
||||
export async function getFootprintList(params: {
|
||||
pageNum: number
|
||||
pageSize: number
|
||||
moduleId: string
|
||||
}) {
|
||||
export async function getFootprintList(params: { pageNum: number; pageSize: number; moduleId: string }){
|
||||
return http.get(`/csr/getFootprintList`,{params})
|
||||
}
|
||||
/**碳足迹板块用户权限-新增/更新
|
||||
|
|
@ -766,6 +761,7 @@ export async function delFootprint(params: any) {
|
|||
return http.get(`/csr/delFootprint`,{params})
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* 更新CSR属性信息
|
||||
* http://127.0.0.1:8811/openApi/csr/add
|
||||
|
|
@ -774,6 +770,7 @@ export async function CSRAdd(data: CSR) {
|
|||
return http.post(`/csr/add`,data)
|
||||
}
|
||||
|
||||
|
||||
/**获取PLUS活动信息
|
||||
* http://127.0.0.1:8811/openApi/csr/getCsrActList
|
||||
*/
|
||||
|
|
@ -790,6 +787,7 @@ export async function updateAct(data: any) {
|
|||
return http.post(`/csr/updateAct`,data)
|
||||
}
|
||||
|
||||
|
||||
/**获取Lab属性信息
|
||||
* http://127.0.0.1:8811/openApi/lab/getDetail
|
||||
*/
|
||||
|
|
@ -797,6 +795,7 @@ export async function getLabActList() {
|
|||
return http.get(`/lab/getDetail`)
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* 更新Lab属性信息
|
||||
http://127.0.0.1:8811/openApi/lab/add
|
||||
|
|
@ -827,6 +826,9 @@ export async function actLABDel(params: any) {
|
|||
return http.get(`/lab/actDel`,{params})
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
/**获取基础研究方向信息
|
||||
* http://127.0.0.1:8811/openApi/lab/getCsrActList
|
||||
*/
|
||||
|
|
@ -853,6 +855,7 @@ export async function deleteCate(params: any) {
|
|||
return http.get(`/lab/deleteCate`,{params})
|
||||
}
|
||||
|
||||
|
||||
/**更新分类下的列表数据
|
||||
* http://127.0.0.1:8811/openApi/lab/editCateItem
|
||||
*/
|
||||
|
|
@ -873,6 +876,9 @@ export async function getCateItemList(params: any) {
|
|||
return http.get(`/lab/getCateItemList`,{params})
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
/**更新BCP属性信息
|
||||
* http://127.0.0.1:8811/openApi/bcp/add
|
||||
*/
|
||||
|
|
@ -880,6 +886,7 @@ export async function addBPC(data: any) {
|
|||
return http.post(`/bcp/add`,data)
|
||||
}
|
||||
|
||||
|
||||
/**获取BCP属性信息
|
||||
* http://127.0.0.1:8811/openApi/bcp/getDetail
|
||||
*/
|
||||
|
|
@ -955,9 +962,9 @@ export async function delBPCActList(params: { id: any }) {
|
|||
export async function BPCDownload(params:{id: any}){
|
||||
// return http.get(`/bcp/download`,{params})
|
||||
return http({
|
||||
method: 'get',
|
||||
url: '/bcp/download?id=' + params.id,
|
||||
responseType: 'arraybuffer'
|
||||
method: "get",
|
||||
url: "/bcp/download?id=" +params.id,
|
||||
responseType: "arraybuffer"
|
||||
})
|
||||
}
|
||||
|
||||
|
|
@ -992,16 +999,16 @@ export async function saveMarketUser(data: any) {
|
|||
export async function MarketDownload(params:{id: any}){
|
||||
// return http.get(`/bcp/download`,{params})
|
||||
return http({
|
||||
method: 'get',
|
||||
url: '/marketPre/download?id=' + params.id,
|
||||
responseType: 'arraybuffer'
|
||||
method: "get",
|
||||
url: "/marketPre/download?id=" +params.id,
|
||||
responseType: "arraybuffer"
|
||||
})
|
||||
}
|
||||
/**预览文件
|
||||
* http://127.0.0.1:8811/openApi/marketPre/preview?id=11
|
||||
*/
|
||||
export async function MarketPreview(params:{id: any}){
|
||||
return http.get('/marketPre/preview', { params })
|
||||
return http.get("/marketPre/preview",{params})
|
||||
}
|
||||
/***获取近7天数据-市况
|
||||
* http://127.0.0.1:8811/openApi/market/historySevenDay
|
||||
|
|
@ -1038,15 +1045,22 @@ export async function rateHistoryStat(data: any) {
|
|||
* http://127.0.0.1:8811/openApi/common/getCurrencyList
|
||||
*/
|
||||
export async function getCurrencyList(){
|
||||
return http.get('/common/getCurrencyList')
|
||||
return http.get("/common/getCurrencyList")
|
||||
}
|
||||
/**获取市况材料列表
|
||||
* http://127.0.0.1:8811/openApi/common/getMetalList
|
||||
*/
|
||||
export async function getMetalList(){
|
||||
return http.get('/common/getMetalList')
|
||||
return http.get("/common/getMetalList")
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
/**首页-汇率列表
|
||||
* http://127.0.0.1:8811/openApi/rate/homePage
|
||||
*/
|
||||
|
|
@ -1062,6 +1076,9 @@ export async function marketPreADD(data: any) {
|
|||
return http.post(`/marketPre/add`,data)
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
/**不良情报-添加
|
||||
*
|
||||
* http://127.0.0.1:8811/openApi/quality/badartAdd
|
||||
|
|
@ -1121,6 +1138,7 @@ export async function badartList() {
|
|||
return http.get(`/quality/badartList?pageNum=1&pageSize=1000`)
|
||||
}
|
||||
|
||||
|
||||
/**外部优质情报-列表
|
||||
* http://127.0.0.1:8811/openApi/quality/highList?pageNum=1
|
||||
*/
|
||||
|
|
@ -1151,6 +1169,8 @@ export async function topStat() {
|
|||
return http.get(`/quality/topStat`)
|
||||
}
|
||||
|
||||
|
||||
|
||||
// DATABASE
|
||||
/**添加分类
|
||||
* http://127.0.0.1:8811/openApi/db/cateAdd
|
||||
|
|
@ -1174,6 +1194,7 @@ export async function treeDbList(params: any) {
|
|||
return http.get(`/db/treeList`,{params})
|
||||
}
|
||||
|
||||
|
||||
/**分类详情
|
||||
* http://127.0.0.1:8811/openApi/db/cateInfo?id=1
|
||||
*/
|
||||
|
|
@ -1181,6 +1202,7 @@ export async function cateInfo(params: any) {
|
|||
return http.get(`/db/cateInfo`,{params})
|
||||
}
|
||||
|
||||
|
||||
/**分类删除
|
||||
* http://127.0.0.1:8811/openApi/db/cateDel?id=1
|
||||
*/
|
||||
|
|
@ -1215,9 +1237,9 @@ export async function cateFileList(params: any) {
|
|||
*/
|
||||
export async function download(params: any){
|
||||
return http({
|
||||
method: 'get',
|
||||
url: '/db/download?id=' + params.id,
|
||||
responseType: 'arraybuffer'
|
||||
method: "get",
|
||||
url: "/db/download?id=" +params.id,
|
||||
responseType: "arraybuffer"
|
||||
})
|
||||
}
|
||||
|
||||
|
|
@ -1298,71 +1320,10 @@ export async function fetchGetViewScope(params?: any) {
|
|||
return http.get(`/common/getViewScope`,{params})
|
||||
}
|
||||
|
||||
/**
|
||||
* DB添加上传/审核者 https://console-docs.apipost.cn/preview/9ac14c51f96ce4d8/75274687248efb1c?target_id=a11153dc-ab84-41ca-aa1c-45fda68c4156
|
||||
*/
|
||||
export async function fetchdbAuthAdd(data?: any) {
|
||||
return http.post(`/dbAuth/add`, data)
|
||||
}
|
||||
|
||||
/**
|
||||
* DB获取上传/审核者信息 https://console-docs.apipost.cn/preview/9ac14c51f96ce4d8/75274687248efb1c?target_id=a11153dc-ab84-41ca-aa1c-45fda68c4156
|
||||
*/
|
||||
export async function fetchdbAuthGetInfo(params?: any) {
|
||||
return http.get(`/dbAuth/getInfo`, { params })
|
||||
}
|
||||
/**
|
||||
* DB撤回 https://console-docs.apipost.cn/preview/9ac14c51f96ce4d8/75274687248efb1c?target_id=a11153dc-ab84-41ca-aa1c-45fda68c4156
|
||||
*/
|
||||
export async function fetchdbWithdraw(params?: any) {
|
||||
return http.get(`/db/withdraw`, { params })
|
||||
}
|
||||
/**
|
||||
* DB文件审核 https://console-docs.apipost.cn/preview/9ac14c51f96ce4d8/75274687248efb1c?target_id=a11153dc-ab84-41ca-aa1c-45fda68c4156
|
||||
*/
|
||||
export async function fetchdbReview(params?: any) {
|
||||
return http.get(`/db/review`, { params })
|
||||
}
|
||||
/**
|
||||
* DB审核列表分页 https://console-docs.apipost.cn/preview/9ac14c51f96ce4d8/75274687248efb1c?target_id=a11153dc-ab84-41ca-aa1c-45fda68c4156
|
||||
*/
|
||||
export async function fetchdbReviewFileList(params?: any) {
|
||||
return http.get(`/dbAuth/reviewFileList`, { params })
|
||||
}
|
||||
/**
|
||||
* 获取市况数据列表 https://console-docs.apipost.cn/preview/9ac14c51f96ce4d8/75274687248efb1c?target_id=a11153dc-ab84-41ca-aa1c-45fda68c4156
|
||||
*/
|
||||
export async function fetchGetHisPage(params?: any) {
|
||||
return http.get(`/market/getHisPage`, { params })
|
||||
}
|
||||
/**
|
||||
* 删除市况数据 https://console-docs.apipost.cn/preview/9ac14c51f96ce4d8/75274687248efb1c?target_id=a11153dc-ab84-41ca-aa1c-45fda68c4156
|
||||
*/
|
||||
export async function fetchDelHis(params?: any) {
|
||||
return http.get(`/market/delHis`, { params })
|
||||
}
|
||||
/**
|
||||
* 新增市况数据 https://console-docs.apipost.cn/preview/9ac14c51f96ce4d8/75274687248efb1c?target_id=a11153dc-ab84-41ca-aa1c-45fda68c4156
|
||||
*/
|
||||
export async function fetchSaveHis(data?: any) {
|
||||
return http.post(`/market/saveHis`, data)
|
||||
}
|
||||
/**
|
||||
* 编辑市况数据 https://console-docs.apipost.cn/preview/9ac14c51f96ce4d8/75274687248efb1c?target_id=a11153dc-ab84-41ca-aa1c-45fda68c4156
|
||||
*/
|
||||
export async function fetchUpdateHis(data?: any) {
|
||||
return http.post(`/market/updateHis`, data)
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取有权限的分类节点 https://console-docs.apipost.cn/preview/9ac14c51f96ce4d8/75274687248efb1c?target_id=a11153dc-ab84-41ca-aa1c-45fda68c4156
|
||||
*/
|
||||
export async function fetchReviewAuthCateList(params?: any) {
|
||||
return http.get(`/db/getReviewAuthCateList`, { params })
|
||||
}
|
||||
/**
|
||||
* 外部系统-统计列表 https://console-docs.apipost.cn/preview/9ac14c51f96ce4d8/75274687248efb1c?target_id=a11153dc-ab84-41ca-aa1c-45fda68c4156
|
||||
*/
|
||||
export async function fetchmoduleStatExternalPage(params?: any) {
|
||||
return http.get(`/moduleStat/externalPage`, { params })
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 14 KiB After Width: | Height: | Size: 14 KiB |
|
Before Width: | Height: | Size: 16 KiB After Width: | Height: | Size: 16 KiB |
|
Before Width: | Height: | Size: 796 B After Width: | Height: | Size: 796 B |
|
Before Width: | Height: | Size: 8.1 KiB After Width: | Height: | Size: 8.1 KiB |
|
Before Width: | Height: | Size: 1012 B After Width: | Height: | Size: 1012 B |
|
Before Width: | Height: | Size: 771 B After Width: | Height: | Size: 771 B |
|
Before Width: | Height: | Size: 19 KiB After Width: | Height: | Size: 19 KiB |
|
Before Width: | Height: | Size: 1.9 KiB After Width: | Height: | Size: 1.9 KiB |
|
Before Width: | Height: | Size: 2.8 KiB After Width: | Height: | Size: 2.8 KiB |
|
Before Width: | Height: | Size: 1002 B After Width: | Height: | Size: 1002 B |
|
Before Width: | Height: | Size: 7.5 KiB After Width: | Height: | Size: 7.5 KiB |
|
Before Width: | Height: | Size: 1021 B After Width: | Height: | Size: 1021 B |
|
Before Width: | Height: | Size: 5.3 KiB After Width: | Height: | Size: 5.3 KiB |
|
Before Width: | Height: | Size: 2.5 KiB After Width: | Height: | Size: 2.5 KiB |
|
Before Width: | Height: | Size: 975 B After Width: | Height: | Size: 975 B |
|
Before Width: | Height: | Size: 350 B After Width: | Height: | Size: 350 B |
|
Before Width: | Height: | Size: 349 B After Width: | Height: | Size: 349 B |
|
Before Width: | Height: | Size: 537 KiB After Width: | Height: | Size: 537 KiB |
|
Before Width: | Height: | Size: 704 KiB After Width: | Height: | Size: 704 KiB |
|
Before Width: | Height: | Size: 499 KiB After Width: | Height: | Size: 499 KiB |
|
Before Width: | Height: | Size: 620 B After Width: | Height: | Size: 620 B |
|
Before Width: | Height: | Size: 17 KiB After Width: | Height: | Size: 17 KiB |
|
Before Width: | Height: | Size: 21 KiB After Width: | Height: | Size: 21 KiB |
|
Before Width: | Height: | Size: 60 KiB After Width: | Height: | Size: 60 KiB |
|
Before Width: | Height: | Size: 7.1 KiB After Width: | Height: | Size: 7.1 KiB |
|
Before Width: | Height: | Size: 2.7 KiB After Width: | Height: | Size: 2.7 KiB |
|
Before Width: | Height: | Size: 4.6 KiB After Width: | Height: | Size: 4.6 KiB |
|
Before Width: | Height: | Size: 6.8 KiB After Width: | Height: | Size: 6.8 KiB |
|
Before Width: | Height: | Size: 2.5 KiB After Width: | Height: | Size: 2.5 KiB |
|
Before Width: | Height: | Size: 5.0 KiB After Width: | Height: | Size: 5.0 KiB |
|
Before Width: | Height: | Size: 7.7 KiB After Width: | Height: | Size: 7.7 KiB |
|
Before Width: | Height: | Size: 3.2 KiB After Width: | Height: | Size: 3.2 KiB |
|
Before Width: | Height: | Size: 4.7 KiB After Width: | Height: | Size: 4.7 KiB |
|
Before Width: | Height: | Size: 4.9 KiB After Width: | Height: | Size: 4.9 KiB |
|
Before Width: | Height: | Size: 4.8 KiB After Width: | Height: | Size: 4.8 KiB |
|
Before Width: | Height: | Size: 15 KiB After Width: | Height: | Size: 15 KiB |
|
Before Width: | Height: | Size: 1.3 KiB After Width: | Height: | Size: 1.3 KiB |
|
Before Width: | Height: | Size: 1.5 KiB After Width: | Height: | Size: 1.5 KiB |
|
Before Width: | Height: | Size: 31 KiB After Width: | Height: | Size: 31 KiB |
|
Before Width: | Height: | Size: 582 B After Width: | Height: | Size: 582 B |
|
Before Width: | Height: | Size: 508 B After Width: | Height: | Size: 508 B |
|
Before Width: | Height: | Size: 503 B After Width: | Height: | Size: 503 B |
|
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 1.1 KiB |
|
Before Width: | Height: | Size: 22 KiB After Width: | Height: | Size: 22 KiB |
|
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 1.2 KiB |
|
Before Width: | Height: | Size: 403 B After Width: | Height: | Size: 403 B |
|
Before Width: | Height: | Size: 393 B After Width: | Height: | Size: 393 B |
|
Before Width: | Height: | Size: 61 KiB After Width: | Height: | Size: 61 KiB |
|
Before Width: | Height: | Size: 140 KiB After Width: | Height: | Size: 140 KiB |
|
Before Width: | Height: | Size: 424 KiB After Width: | Height: | Size: 424 KiB |
|
Before Width: | Height: | Size: 5.6 KiB After Width: | Height: | Size: 5.6 KiB |
|
Before Width: | Height: | Size: 10 KiB After Width: | Height: | Size: 10 KiB |
|
Before Width: | Height: | Size: 523 B After Width: | Height: | Size: 523 B |
|
Before Width: | Height: | Size: 1.7 KiB After Width: | Height: | Size: 1.7 KiB |
|
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 1.4 KiB |
|
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 1.1 KiB |
|
Before Width: | Height: | Size: 794 B After Width: | Height: | Size: 794 B |
|
Before Width: | Height: | Size: 1.0 KiB After Width: | Height: | Size: 1.0 KiB |
|
Before Width: | Height: | Size: 810 B After Width: | Height: | Size: 810 B |
|
Before Width: | Height: | Size: 613 B After Width: | Height: | Size: 613 B |
|
Before Width: | Height: | Size: 610 B After Width: | Height: | Size: 610 B |
|
Before Width: | Height: | Size: 1.9 KiB After Width: | Height: | Size: 1.9 KiB |
|
Before Width: | Height: | Size: 1.5 KiB After Width: | Height: | Size: 1.5 KiB |
|
Before Width: | Height: | Size: 890 B After Width: | Height: | Size: 890 B |
|
Before Width: | Height: | Size: 655 B After Width: | Height: | Size: 655 B |
|
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 1.2 KiB |
|
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 1.1 KiB |
|
Before Width: | Height: | Size: 1.5 KiB After Width: | Height: | Size: 1.5 KiB |
|
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 1.2 KiB |
|
Before Width: | Height: | Size: 838 B After Width: | Height: | Size: 838 B |
|
Before Width: | Height: | Size: 687 B After Width: | Height: | Size: 687 B |
|
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 1.4 KiB |
|
Before Width: | Height: | Size: 1.3 KiB After Width: | Height: | Size: 1.3 KiB |
|
Before Width: | Height: | Size: 1.3 KiB After Width: | Height: | Size: 1.3 KiB |
|
Before Width: | Height: | Size: 3.1 KiB After Width: | Height: | Size: 3.1 KiB |
|
Before Width: | Height: | Size: 184 KiB After Width: | Height: | Size: 184 KiB |
|
Before Width: | Height: | Size: 159 KiB After Width: | Height: | Size: 159 KiB |
|
Before Width: | Height: | Size: 552 KiB After Width: | Height: | Size: 552 KiB |
|
Before Width: | Height: | Size: 25 KiB After Width: | Height: | Size: 25 KiB |
|
Before Width: | Height: | Size: 20 KiB After Width: | Height: | Size: 20 KiB |
|
Before Width: | Height: | Size: 16 KiB After Width: | Height: | Size: 16 KiB |
|
Before Width: | Height: | Size: 23 KiB After Width: | Height: | Size: 23 KiB |
|
Before Width: | Height: | Size: 51 KiB After Width: | Height: | Size: 51 KiB |
|
Before Width: | Height: | Size: 8.4 KiB After Width: | Height: | Size: 8.4 KiB |
|
Before Width: | Height: | Size: 12 KiB After Width: | Height: | Size: 12 KiB |
|
Before Width: | Height: | Size: 22 KiB After Width: | Height: | Size: 22 KiB |
|
Before Width: | Height: | Size: 8.5 KiB After Width: | Height: | Size: 8.5 KiB |
|
Before Width: | Height: | Size: 360 KiB After Width: | Height: | Size: 360 KiB |
|
Before Width: | Height: | Size: 1.5 KiB After Width: | Height: | Size: 1.5 KiB |
|
Before Width: | Height: | Size: 506 B After Width: | Height: | Size: 506 B |
|
Before Width: | Height: | Size: 507 B After Width: | Height: | Size: 507 B |