Compare commits

..

No commits in common. "e1867c94fdc1d129291725da346c10179de020ed" and "9a040f9627b65cfbc9ebde65b35e7c89e6886958" have entirely different histories.

463 changed files with 1561 additions and 3873 deletions

1
.gitignore vendored
View File

@ -13,7 +13,6 @@ pnpm-lock.yaml
node_modules node_modules
.DS_Store .DS_Store
dist dist
dist.zip
dist-ssr dist-ssr
coverage coverage
*.local *.local

0
.svn/wc.db-journal Normal file
View File

12
11.txt
View File

@ -47,15 +47,3 @@ urfhsdkjdwerwnvsojj
] ]
}, },
] ]
审批流按钮权限对应显示
文件下载没有后缀
内容管理 右侧按钮浮动错位
只有admin database担当 ,上传者 可以删除文件。
外部足迹统计误差 两个链接的统计上面

1
components.d.ts vendored
View File

@ -32,7 +32,6 @@ declare module 'vue' {
ElInputNumber: typeof import('element-plus/es')['ElInputNumber'] ElInputNumber: typeof import('element-plus/es')['ElInputNumber']
ElOption: typeof import('element-plus/es')['ElOption'] ElOption: typeof import('element-plus/es')['ElOption']
ElPagination: typeof import('element-plus/es')['ElPagination'] ElPagination: typeof import('element-plus/es')['ElPagination']
ElPopconfirm: typeof import('element-plus/es')['ElPopconfirm']
ElProgress: typeof import('element-plus/es')['ElProgress'] ElProgress: typeof import('element-plus/es')['ElProgress']
ElRadio: typeof import('element-plus/es')['ElRadio'] ElRadio: typeof import('element-plus/es')['ElRadio']
ElRadioGroup: typeof import('element-plus/es')['ElRadioGroup'] ElRadioGroup: typeof import('element-plus/es')['ElRadioGroup']

BIN
dist.zip

Binary file not shown.

0
src/App.vue Executable file → Normal file
View File

329
src/api/daikin/base.ts Executable file → Normal file
View File

@ -19,9 +19,9 @@ export function report(data: any) {
// {"msg":"b5c17f42-4f63-4fbd-b5cf-9c82b033c9a7","code":200} // {"msg":"b5c17f42-4f63-4fbd-b5cf-9c82b033c9a7","code":200}
export interface LoginReq { export interface LoginReq {
// 账号 13923879210 // 账号 13923879210
account: string account: string,
// 密码 123456 // 密码 123456
password: string password: string,
authType:string authType:string
} }
export function login(data: LoginReq) { export function login(data: LoginReq) {
@ -63,17 +63,18 @@ export async function deptTree(params: any) {
return http.get('/user/deptTree',{params}) return http.get('/user/deptTree',{params})
} }
export interface userPage{ export interface userPage{
pageNum?: string pageNum?:string,
pageSize?: string pageSize?:string,
phonenumber?: string phonenumber?:string,
status?: string status?:string,
beingTime: string beingTime:string,
endTime: string endTime:string,
deptId?: string deptId?:string,
nickName: string nickName:string,
reviewSource: string reviewSource:string,
} }
/** /**
* URL:daikin- * URL:daikin-
GET GET
@ -116,7 +117,7 @@ export interface ArticlePageReq {
// 类型 1-外部情报 2-内部情报 // 类型 1-外部情报 2-内部情报
type?: string type?: string
// 分类 1-外部环境 2-竞争对手 3-供方动向 4-大金集团 5-中国据点 6-调达本部 7-news 8-重要通知 // 分类 1-外部环境 2-竞争对手 3-供方动向 4-大金集团 5-中国据点 6-调达本部 7-news 8-重要通知
cate?: String cate?: String,
position:String position:String
} }
export async function getArticlePage(params: ArticlePageReq) { export async function getArticlePage(params: ArticlePageReq) {
@ -155,7 +156,7 @@ export async function getManagerDetail(id: string) {
} }
// 撤回 // 撤回
export async function deleteWithdraw(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}) { export async function getManagerList(params: {pageNum: any;pageSize:any}) {
@ -168,24 +169,21 @@ export async function getExternalManagerDetail(id: string) {
} }
// news/重要通知-撤回 // news/重要通知-撤回
export async function externalWithdraw(id: string) { export async function externalWithdraw(id: string) {
return http.get('/article/external/withdraw?id=' + id) return http.get("/article/external/withdraw?id=" + id)
} }
// news/重要通知-流程列表 // news/重要通知-流程列表
export async function getExternalManagerList(params: { export async function getExternalManagerList(params: {pageNum: any;pageSize:any}) {
pageNum: any
pageSize: any
}) {
return http.get('/article/external/getManagerList', { params}) return http.get('/article/external/getManagerList', { params})
} }
// -------------------------------------列表end // -------------------------------------列表end
export interface ArticleSave { export interface ArticleSave {
title: string //标题 title: string, //标题
content: string //内容 content: string, //内容
tag: string //标签 紧急/New tag: string, //标签 紧急/New
source: string //"网站添加", //来源 文本 source: string, //"网站添加", //来源 文本
type?: string type?: string,
cate?: string //分类 1-外部环境 2-竞争对手 3-供方动向 4-大金集团 5-中国据点 6-调达本部 cate?: string, //分类 1-外部环境 2-竞争对手 3-供方动向 4-大金集团 5-中国据点 6-调达本部
reviewSource: number reviewSource:number,
} }
// 接口URL: 提交情报 // 接口URL: 提交情报
@ -200,7 +198,7 @@ export interface ArticleSave {
// } // }
export async function saveArticle(data: ArticleSave) { export async function saveArticle(data: ArticleSave) {
// return openApiRequest({ url: `/article/save`, data }) // return openApiRequest({ url: `/article/save`, data })
return http.post('/article/save', data) return http.post("/article/save",data)
} }
// 接口URL: 分类文件-上下拖动排序 // 接口URL: 分类文件-上下拖动排序
@ -213,7 +211,7 @@ export async function saveArticle(data: ArticleSave) {
// "lastId": 5 //被移动位置的文件id // "lastId": 5 //被移动位置的文件id
// } // }
export async function dragFile(data: ArticleSave) { export async function dragFile(data: ArticleSave) {
return http.post('/db/cateFileSort', data) return http.post("/db/cateFileSort",data)
} }
/**banner /**banner
@ -221,11 +219,13 @@ export async function dragFile(data: ArticleSave) {
* *
*/ */
export async function getBannerList(params: any) { export async function getBannerList(params: any) {
return http.get('/article/getBannerList', { params }) return http.get("/article/getBannerList",{params})
} }
export interface notice{ export interface notice{
reviewStatus: number reviewStatus:number,
reviewSource:number reviewSource:number
} }
@ -237,7 +237,7 @@ token
674f3e91-38de-4065-a4e2-2ce8981864fa 674f3e91-38de-4065-a4e2-2ce8981864fa
*/ */
export async function getNoticeList(params:notice) { 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 674f3e91-38de-4065-a4e2-2ce8981864fa
*/ */
export async function getHomeList(params:notice) { export async function getHomeList(params:notice) {
return http.get('/cd/homeList', { params }) return http.get("/cd/homeList",{params})
} }
export async function statDel(params:notice) { 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 674f3e91-38de-4065-a4e2-2ce8981864fa
*/ */
export async function getTreeList(params:notice) { export async function getTreeList(params:notice) {
return http.get('/cd/treeList', { params }) return http.get("/cd/treeList",{params})
} }
export async function statEdit(data: ArticleReview) { export async function statEdit(data: ArticleReview) {
return http.post('/cd/statEdit', data) return http.post("/cd/statEdit",data)
} }
export interface msg{ export interface msg{
pageNum: number pageNum:number,
treeSource: number treeSource:number,
pageSize: number pageSize:number,
} }
/** /**
* http://127.0.0.1:8811/openApi/article/boardMsgList * http://127.0.0.1:8811/openApi/article/boardMsgList
@ -281,10 +282,10 @@ export interface msg {
* *
*/ */
export async function boardMsgList(params: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) { 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 http://127.0.0.1:8811/openApi/supplier/trendsAdd
*/ */
export async function trendsAdd(data: { title: any; content: string }) { 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 http://127.0.0.1:8811/openApi/supplier/trendsDetail?id=1
*/ */
export async function trendsDetail(params: any) { 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 * http://127.0.0.1:8811/openApi/supplier/trendsPage?pageNum=1&pageSize=20
*/ */
export async function trendsPage(params: { export async function trendsPage(params: { pageNum: number; pageSize: number }) {
pageNum: number return http.get("/supplier/trendsPage" ,{params})
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 http://127.0.0.1:8811/openApi/supplier/demandAdd
*/ */
export async function demandAdd(data: any) { 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 * http://127.0.0.1:8811/openApi/supplier/demandDetail?id=1
*/ */
export async function demandDetail(params: any) { 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 * http://127.0.0.1:8811/openApi/supplier/demandPage?pageNum=1&pageSize=20
*/ */
export async function demandPage(params: { export async function demandPage(params: { pageNum: number; pageSize: number }) {
pageNum: number return http.get("/supplier/demandPage" ,{params})
pageSize: number
}) {
return http.get('/supplier/demandPage', { params })
} }
/*** /***
* -- * --
* http://127.0.0.1:8811/openApi/supplier/faqAdd * http://127.0.0.1:8811/openApi/supplier/faqAdd
*/ */
export async function faqAdd(data: any) { 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 * http://127.0.0.1:8811/openApi/supplier/faqDetail?id=2
*/ */
export async function faqDetail(params: any) { 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 * http://127.0.0.1:8811/openApi/supplier/faqPage?pageNum=1&pageSize=20
*/ */
export async function faqPage(params: { pageNum: number; pageSize: number }) { 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 * http://127.0.0.1:8811/openApi/supplier/reply
*/ */
export async function reply(data: any) { 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{ export interface ArticleReview{
id?: string id?:string,
title: string title:string,
content: string content:string,
source: string source:string,
cate?: string cate?:string,
noticeId?: string noticeId?:string,
userIdList:any[] userIdList:any[]
} }
@ -418,26 +413,30 @@ http://127.0.0.1:8811/openApi/article/review
* @returns * @returns
*/ */
export async function review(data: ArticleReview) { export async function review(data: ArticleReview) {
return http.post('/article/review', data) return http.post("/article/review",data)
} }
/** /**
* CD- * CD-
* @returns http://127.0.0.1:8811/openApi/cd/amountList * @returns http://127.0.0.1:8811/openApi/cd/amountList
*/ */
export async function amountList() { export async function amountList() {
return http.get('/cd/amountList') return http.get("/cd/amountList")
} }
/** /**
* "number": "DIS", //编号 DIS/DSZ/DISH * "number": "DIS", //编号 DIS/DSZ/DISH
"amount": "30" "amount": "30"
* @returns http://127.0.0.1:8811/openApi/cd/updateAmount * @returns http://127.0.0.1:8811/openApi/cd/updateAmount
*/ */
export async function updateAmount(data: any) { export async function updateAmount(data: any) {
return http.post('/cd/updateAmount', data) return http.post("/cd/updateAmount",data)
} }
// 接口URL: // 接口URL:
// GET // GET
// http://127.0.0.1:8811/openApi/cdCate/treeList // 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) return http.post('/cdCate/curYearDataStat',data)
} }
export interface hisYearD{ export interface hisYearD{
cateId: number cateId:number,
yearTime:string yearTime:string
} }
/* /*
@ -493,6 +493,7 @@ export async function hisYearDataStat(data: hisYearD) {
return http.post('/cdCate/hisYearDataStat',data) return http.post('/cdCate/hisYearDataStat',data)
} }
/** /**
* CD- * CD-
* http://127.0.0.1:8811/openApi/cdCate/hisDataList * 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 multipart/form-data
*/ */
export async function upload(
params: any, export async function upload(params: any,Headers: AxiosRequestConfig<any> | undefined){
Headers: AxiosRequestConfig<any> | undefined
) {
return http.post('/common/upload',params,Headers) return http.post('/common/upload',params,Headers)
} }
/** /**
* URL: * URL:
GET GET
@ -560,10 +560,11 @@ export async function getGroupList() {
return http.get('/group/getList') return http.get('/group/getList')
} }
export interface getNotice{ export interface getNotice{
id: string id:string,
name: string name:string,
userIdList: Array<any> userIdList:Array<any>,
} }
/** /**
@ -572,15 +573,13 @@ POST
http://127.0.0.1:8811/openApi/group/add http://127.0.0.1:8811/openApi/group/add
* *
*/ */
export async function addGroup( export async function addGroup(params: getNotice,Headers:AxiosRequestConfig<any> | undefined){
params: getNotice,
Headers: AxiosRequestConfig<any> | undefined
) {
return http.post('/group/add',params,Headers) return http.post('/group/add',params,Headers)
} }
export interface group{ export interface group{
id: string id:string,
} }
/** /**
@ -592,6 +591,9 @@ export async function deleteGroup(params: group) {
return http.get('/group/delete',{params}) return http.get('/group/delete',{params})
} }
export interface newPwd{ export interface newPwd{
newPassword:string newPassword:string
oldPassword:string oldPassword:string
@ -602,13 +604,11 @@ export interface newPwd {
http://127.0.0.1:8811/openApi/auth/updatePwd http://127.0.0.1:8811/openApi/auth/updatePwd
* *
*/ */
export async function updatePwd( export async function updatePwd(params: newPwd,Headers:AxiosRequestConfig<any> | undefined){
params: newPwd,
Headers: AxiosRequestConfig<any> | undefined
) {
return http.post('/auth/updatePwd',params,Headers) return http.post('/auth/updatePwd',params,Headers)
} }
export interface work{ export interface work{
pageNum:number pageNum:number
} }
@ -636,8 +636,8 @@ export async function getPageWork(params: work) {
} }
export interface visit{ export interface visit{
pageNum: number pageNum:number,
status: number status:number,
source:number source:number
} }
@ -651,6 +651,7 @@ export async function getPageInv(params: visit) {
return http.get('/inv/getPage',{params}) return http.get('/inv/getPage',{params})
} }
/**访 /**访
* http://127.0.0.1:8811/openApi/visit/getPage * http://127.0.0.1:8811/openApi/visit/getPage
* *
@ -661,23 +662,20 @@ export async function getPageVisit(params: visit) {
} }
export interface pupid{ export interface pupid{
title: string title:string,
content: string content:string,
actName: string actName:string,
actSTime: string actSTime:string,
actETime: string actETime:string,
position: string position:string,
userIdList: Array<any> userIdList:Array<any>,
} }
/** /**
* : * :
POST POST
http://127.0.0.1:8811/openApi/inv/add http://127.0.0.1:8811/openApi/inv/add
*/ */
export async function addPageInv( export async function addPageInv(params: pupid,Headers:AxiosRequestConfig<any> | undefined){
params: pupid,
Headers: AxiosRequestConfig<any> | undefined
) {
return http.post('/inv/add',params,Headers) return http.post('/inv/add',params,Headers)
} }
@ -689,10 +687,7 @@ export async function addPageInv(
POST POST
http://127.0.0.1:8811/openApi/visit/add http://127.0.0.1:8811/openApi/visit/add
*/ */
export async function addPageVisit( export async function addPageVisit(params: pupid,Headers:AxiosRequestConfig<any> | undefined){
params: pupid,
Headers: AxiosRequestConfig<any> | undefined
) {
return http.post('/visit/add',params,Headers) return http.post('/visit/add',params,Headers)
} }
@ -707,6 +702,7 @@ export async function visitInfo(id: string) {
return http.get(`/visit/getDetail/${id}`) return http.get(`/visit/getDetail/${id}`)
} }
/** /**
* URL: * URL:
@ -718,6 +714,7 @@ export async function invInfo(id: string) {
return http.get(`/inv/getDetail/${id}`) return http.get(`/inv/getDetail/${id}`)
} }
/** /**
* CSR * CSR
* http://127.0.0.1:8811/openApi/csr/getDetail * http://127.0.0.1:8811/openApi/csr/getDetail
@ -726,11 +723,13 @@ export async function getCSRDetail() {
return http.get(`/csr/getDetail`) return http.get(`/csr/getDetail`)
} }
export interface CSR{ export interface CSR{
id: string id:string,
content:Object content:Object
} }
/** /**
* http://127.0.0.1:8811/openApi/csr/updateFootprint * 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 * http://127.0.0.1:8811/openApi/csr/getFootprintList
*/ */
export async function getFootprintList(params: { export async function getFootprintList(params: { pageNum: number; pageSize: number; moduleId: string }){
pageNum: number
pageSize: number
moduleId: string
}) {
return http.get(`/csr/getFootprintList`,{params}) return http.get(`/csr/getFootprintList`,{params})
} }
/**-/ /**-/
@ -766,6 +761,7 @@ export async function delFootprint(params: any) {
return http.get(`/csr/delFootprint`,{params}) return http.get(`/csr/delFootprint`,{params})
} }
/** /**
* CSR * CSR
* http://127.0.0.1:8811/openApi/csr/add * 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) return http.post(`/csr/add`,data)
} }
/**PLUS /**PLUS
* http://127.0.0.1:8811/openApi/csr/getCsrActList * 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) return http.post(`/csr/updateAct`,data)
} }
/**Lab /**Lab
* http://127.0.0.1:8811/openApi/lab/getDetail * http://127.0.0.1:8811/openApi/lab/getDetail
*/ */
@ -797,6 +795,7 @@ export async function getLabActList() {
return http.get(`/lab/getDetail`) return http.get(`/lab/getDetail`)
} }
/** /**
* Lab * Lab
http://127.0.0.1:8811/openApi/lab/add 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}) return http.get(`/lab/actDel`,{params})
} }
/** /**
* http://127.0.0.1:8811/openApi/lab/getCsrActList * 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}) return http.get(`/lab/deleteCate`,{params})
} }
/** /**
* http://127.0.0.1:8811/openApi/lab/editCateItem * 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}) return http.get(`/lab/getCateItemList`,{params})
} }
/**BCP /**BCP
* http://127.0.0.1:8811/openApi/bcp/add * 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) return http.post(`/bcp/add`,data)
} }
/**BCP /**BCP
* http://127.0.0.1:8811/openApi/bcp/getDetail * 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}){ export async function BPCDownload(params:{id: any}){
// return http.get(`/bcp/download`,{params}) // return http.get(`/bcp/download`,{params})
return http({ return http({
method: 'get', method: "get",
url: '/bcp/download?id=' + params.id, url: "/bcp/download?id=" +params.id,
responseType: 'arraybuffer' responseType: "arraybuffer"
}) })
} }
@ -992,16 +999,16 @@ export async function saveMarketUser(data: any) {
export async function MarketDownload(params:{id: any}){ export async function MarketDownload(params:{id: any}){
// return http.get(`/bcp/download`,{params}) // return http.get(`/bcp/download`,{params})
return http({ return http({
method: 'get', method: "get",
url: '/marketPre/download?id=' + params.id, url: "/marketPre/download?id=" +params.id,
responseType: 'arraybuffer' responseType: "arraybuffer"
}) })
} }
/** /**
* http://127.0.0.1:8811/openApi/marketPre/preview?id=11 * http://127.0.0.1:8811/openApi/marketPre/preview?id=11
*/ */
export async function MarketPreview(params:{id: any}){ export async function MarketPreview(params:{id: any}){
return http.get('/marketPre/preview', { params }) return http.get("/marketPre/preview",{params})
} }
/***7- /***7-
* http://127.0.0.1:8811/openApi/market/historySevenDay * 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 * http://127.0.0.1:8811/openApi/common/getCurrencyList
*/ */
export async function getCurrencyList(){ export async function getCurrencyList(){
return http.get('/common/getCurrencyList') return http.get("/common/getCurrencyList")
} }
/** /**
* http://127.0.0.1:8811/openApi/common/getMetalList * http://127.0.0.1:8811/openApi/common/getMetalList
*/ */
export async function getMetalList(){ export async function getMetalList(){
return http.get('/common/getMetalList') return http.get("/common/getMetalList")
} }
/**- /**-
* http://127.0.0.1:8811/openApi/rate/homePage * 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) return http.post(`/marketPre/add`,data)
} }
/**- /**-
* *
* http://127.0.0.1:8811/openApi/quality/badartAdd * 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`) return http.get(`/quality/badartList?pageNum=1&pageSize=1000`)
} }
/**- /**-
* http://127.0.0.1:8811/openApi/quality/highList?pageNum=1 * http://127.0.0.1:8811/openApi/quality/highList?pageNum=1
*/ */
@ -1151,6 +1169,8 @@ export async function topStat() {
return http.get(`/quality/topStat`) return http.get(`/quality/topStat`)
} }
// DATABASE // DATABASE
/** /**
* http://127.0.0.1:8811/openApi/db/cateAdd * 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}) return http.get(`/db/treeList`,{params})
} }
/** /**
* http://127.0.0.1:8811/openApi/db/cateInfo?id=1 * 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}) return http.get(`/db/cateInfo`,{params})
} }
/** /**
* http://127.0.0.1:8811/openApi/db/cateDel?id=1 * 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){ export async function download(params: any){
return http({ return http({
method: 'get', method: "get",
url: '/db/download?id=' + params.id, url: "/db/download?id=" +params.id,
responseType: 'arraybuffer' responseType: "arraybuffer"
}) })
} }
@ -1298,71 +1320,10 @@ export async function fetchGetViewScope(params?: any) {
return http.get(`/common/getViewScope`,{params}) 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 })
}

0
src/assets/images/A1@2x.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 14 KiB

After

Width:  |  Height:  |  Size: 14 KiB

0
src/assets/images/A2@2x.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 16 KiB

After

Width:  |  Height:  |  Size: 16 KiB

0
src/assets/images/ALARM2@2x.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 796 B

After

Width:  |  Height:  |  Size: 796 B

0
src/assets/images/ALARM@2x.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 8.1 KiB

After

Width:  |  Height:  |  Size: 8.1 KiB

0
src/assets/images/Dashboard2@2x.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 1012 B

After

Width:  |  Height:  |  Size: 1012 B

0
src/assets/images/Dashboard@2x.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 771 B

After

Width:  |  Height:  |  Size: 771 B

0
src/assets/images/NEW3.gif Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 19 KiB

After

Width:  |  Height:  |  Size: 19 KiB

0
src/assets/images/NEW@2x.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 1.9 KiB

After

Width:  |  Height:  |  Size: 1.9 KiB

0
src/assets/images/Shape7@2x.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 2.8 KiB

After

Width:  |  Height:  |  Size: 2.8 KiB

0
src/assets/images/WARNING2@2x.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 1002 B

After

Width:  |  Height:  |  Size: 1002 B

0
src/assets/images/WARNING@2x.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 7.5 KiB

After

Width:  |  Height:  |  Size: 7.5 KiB

0
src/assets/images/WATCHING2@2x.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 1021 B

After

Width:  |  Height:  |  Size: 1021 B

0
src/assets/images/WATCHING@2x.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 5.3 KiB

After

Width:  |  Height:  |  Size: 5.3 KiB

0
src/assets/images/animation_ll6h8pi7.json Executable file → Normal file
View File

0
src/assets/images/baiot@2x.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 2.5 KiB

After

Width:  |  Height:  |  Size: 2.5 KiB

0
src/assets/images/baogas@2x.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 975 B

After

Width:  |  Height:  |  Size: 975 B

0
src/assets/images/bd-b.svg Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 350 B

After

Width:  |  Height:  |  Size: 350 B

0
src/assets/images/bd-t.svg Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 349 B

After

Width:  |  Height:  |  Size: 349 B

0
src/assets/images/bejqt1.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 537 KiB

After

Width:  |  Height:  |  Size: 537 KiB

0
src/assets/images/bejqt2.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 704 KiB

After

Width:  |  Height:  |  Size: 704 KiB

0
src/assets/images/bejqt3.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 499 KiB

After

Width:  |  Height:  |  Size: 499 KiB

0
src/assets/images/bg-card-nav-item.svg Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 620 B

After

Width:  |  Height:  |  Size: 620 B

0
src/assets/images/bg-card-nav.svg Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 17 KiB

After

Width:  |  Height:  |  Size: 17 KiB

0
src/assets/images/bg-card.svg Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 21 KiB

After

Width:  |  Height:  |  Size: 21 KiB

0
src/assets/images/bg-card4.svg Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 60 KiB

After

Width:  |  Height:  |  Size: 60 KiB

0
src/assets/images/bg-card6-1.svg Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 7.1 KiB

After

Width:  |  Height:  |  Size: 7.1 KiB

0
src/assets/images/bg-card6-11.svg Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 2.7 KiB

After

Width:  |  Height:  |  Size: 2.7 KiB

0
src/assets/images/bg-card6-12.svg Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 4.6 KiB

After

Width:  |  Height:  |  Size: 4.6 KiB

0
src/assets/images/bg-card6-2.svg Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 6.8 KiB

After

Width:  |  Height:  |  Size: 6.8 KiB

0
src/assets/images/bg-card6-21.svg Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 2.5 KiB

After

Width:  |  Height:  |  Size: 2.5 KiB

0
src/assets/images/bg-card6-22.svg Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 5.0 KiB

After

Width:  |  Height:  |  Size: 5.0 KiB

0
src/assets/images/bg-card6-3.svg Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 7.7 KiB

After

Width:  |  Height:  |  Size: 7.7 KiB

0
src/assets/images/bg-card6-31.svg Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 3.2 KiB

After

Width:  |  Height:  |  Size: 3.2 KiB

0
src/assets/images/bg-card6-32.svg Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 4.7 KiB

After

Width:  |  Height:  |  Size: 4.7 KiB

0
src/assets/images/bg-card6-text.svg Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 4.9 KiB

After

Width:  |  Height:  |  Size: 4.9 KiB

0
src/assets/images/bg-card6.svg Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 4.8 KiB

After

Width:  |  Height:  |  Size: 4.8 KiB

0
src/assets/images/bg-pie.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 15 KiB

After

Width:  |  Height:  |  Size: 15 KiB

0
src/assets/images/bg-rs-main.svg Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 1.3 KiB

After

Width:  |  Height:  |  Size: 1.3 KiB

0
src/assets/images/bg-rs-main1.svg Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 1.5 KiB

After

Width:  |  Height:  |  Size: 1.5 KiB

0
src/assets/images/bg.jpg Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 31 KiB

After

Width:  |  Height:  |  Size: 31 KiB

0
src/assets/images/biaoq2@2x.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 582 B

After

Width:  |  Height:  |  Size: 582 B

0
src/assets/images/book.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 508 B

After

Width:  |  Height:  |  Size: 508 B

0
src/assets/images/book1.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 503 B

After

Width:  |  Height:  |  Size: 503 B

0
src/assets/images/chac@2x.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

0
src/assets/images/chah.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 22 KiB

After

Width:  |  Height:  |  Size: 22 KiB

0
src/assets/images/ckgduo@2x.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 1.2 KiB

After

Width:  |  Height:  |  Size: 1.2 KiB

0
src/assets/images/company.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 403 B

After

Width:  |  Height:  |  Size: 403 B

0
src/assets/images/company1.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 393 B

After

Width:  |  Height:  |  Size: 393 B

0
src/assets/images/ewm1@2x.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 61 KiB

After

Width:  |  Height:  |  Size: 61 KiB

0
src/assets/images/ewm2@2x.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 140 KiB

After

Width:  |  Height:  |  Size: 140 KiB

0
src/assets/images/fangz.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 424 KiB

After

Width:  |  Height:  |  Size: 424 KiB

0
src/assets/images/favicon.svg Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 5.6 KiB

After

Width:  |  Height:  |  Size: 5.6 KiB

0
src/assets/images/fuvnq@2x.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 10 KiB

After

Width:  |  Height:  |  Size: 10 KiB

0
src/assets/images/fuwck@2x.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 523 B

After

Width:  |  Height:  |  Size: 523 B

0
src/assets/images/fzzll2@2x.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 1.7 KiB

After

Width:  |  Height:  |  Size: 1.7 KiB

0
src/assets/images/fzzll@2x.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 1.4 KiB

After

Width:  |  Height:  |  Size: 1.4 KiB

0
src/assets/images/gscq2@2x.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

0
src/assets/images/gscq@2x.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 794 B

After

Width:  |  Height:  |  Size: 794 B

0
src/assets/images/hlhjs2@2x.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 1.0 KiB

After

Width:  |  Height:  |  Size: 1.0 KiB

0
src/assets/images/hlhjs@2x.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 810 B

After

Width:  |  Height:  |  Size: 810 B

0
src/assets/images/home.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 613 B

After

Width:  |  Height:  |  Size: 613 B

0
src/assets/images/home1.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 610 B

After

Width:  |  Height:  |  Size: 610 B

0
src/assets/images/huycy2@2x.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 1.9 KiB

After

Width:  |  Height:  |  Size: 1.9 KiB

0
src/assets/images/huycy@2x.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 1.5 KiB

After

Width:  |  Height:  |  Size: 1.5 KiB

0
src/assets/images/hyrcc2@2x.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 890 B

After

Width:  |  Height:  |  Size: 890 B

0
src/assets/images/hyrcc@2x.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 655 B

After

Width:  |  Height:  |  Size: 655 B

0
src/assets/images/icon-book.svg Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 1.2 KiB

After

Width:  |  Height:  |  Size: 1.2 KiB

0
src/assets/images/icon-company.svg Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

0
src/assets/images/icon-home.svg Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 1.5 KiB

After

Width:  |  Height:  |  Size: 1.5 KiB

0
src/assets/images/icon-link.svg Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 1.2 KiB

After

Width:  |  Height:  |  Size: 1.2 KiB

0
src/assets/images/icon-memo.svg Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 838 B

After

Width:  |  Height:  |  Size: 838 B

0
src/assets/images/icon-more.svg Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 687 B

After

Width:  |  Height:  |  Size: 687 B

0
src/assets/images/icon-phone.svg Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 1.4 KiB

After

Width:  |  Height:  |  Size: 1.4 KiB

0
src/assets/images/icon-search.svg Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 1.3 KiB

After

Width:  |  Height:  |  Size: 1.3 KiB

0
src/assets/images/icon-tag.svg Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 1.3 KiB

After

Width:  |  Height:  |  Size: 1.3 KiB

0
src/assets/images/icon-user.svg Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 3.1 KiB

After

Width:  |  Height:  |  Size: 3.1 KiB

0
src/assets/images/img-11-1.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 184 KiB

After

Width:  |  Height:  |  Size: 184 KiB

0
src/assets/images/img-11.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 159 KiB

After

Width:  |  Height:  |  Size: 159 KiB

0
src/assets/images/img-11.svg Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 552 KiB

After

Width:  |  Height:  |  Size: 552 KiB

0
src/assets/images/img-41.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 25 KiB

After

Width:  |  Height:  |  Size: 25 KiB

0
src/assets/images/img-42.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 20 KiB

After

Width:  |  Height:  |  Size: 20 KiB

0
src/assets/images/img-43.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 16 KiB

After

Width:  |  Height:  |  Size: 16 KiB

0
src/assets/images/img-44.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 23 KiB

After

Width:  |  Height:  |  Size: 23 KiB

0
src/assets/images/img-44.svg Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 51 KiB

After

Width:  |  Height:  |  Size: 51 KiB

0
src/assets/images/img-45.svg Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 8.4 KiB

After

Width:  |  Height:  |  Size: 8.4 KiB

0
src/assets/images/img-46.svg Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 12 KiB

After

Width:  |  Height:  |  Size: 12 KiB

0
src/assets/images/img-51.svg Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 22 KiB

After

Width:  |  Height:  |  Size: 22 KiB

0
src/assets/images/index.ts Executable file → Normal file
View File

0
src/assets/images/jbb@2x.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 8.5 KiB

After

Width:  |  Height:  |  Size: 8.5 KiB

0
src/assets/images/jj.gif Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 360 KiB

After

Width:  |  Height:  |  Size: 360 KiB

0
src/assets/images/kongj@2x.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 1.5 KiB

After

Width:  |  Height:  |  Size: 1.5 KiB

0
src/assets/images/link.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 506 B

After

Width:  |  Height:  |  Size: 506 B

0
src/assets/images/link1.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 507 B

After

Width:  |  Height:  |  Size: 507 B

Some files were not shown because too many files have changed in this diff Show More