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
.DS_Store
dist
dist.zip
dist-ssr
coverage
*.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']
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']

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}
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 })
}

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