代码优化

This commit is contained in:
BianLzhaoMin 2024-09-12 13:55:08 +08:00
parent ad676e57dc
commit bc382854f1
4 changed files with 41 additions and 45 deletions

View File

@ -1,25 +1,25 @@
import { POST, GET } from './index.js' import { POST, GET } from './index.js'
const URL_TYPE_LIST = '/bigScrap/material/returnOfMaterialsInfo/getTypeList' const URL_TYPE_LIST = '/screen/material/returnOfMaterialsInfo/getTypeList'
const URL_DETAILS = '/bigScrap/base/largeScreen/home/getMaterialReqData/details' const URL_DETAILS = '/screen/base/largeScreen/home/getMaterialReqData/details'
const URL_RETURN_DETAILS = const URL_RETURN_DETAILS =
'/bigScrap/base/largeScreen/home/getMaterialReturnData/details' '/screen/base/largeScreen/home/getMaterialReturnData/details'
const URL_UNIT_LIST = '/bigScrap/material/agreementInfo/getUnitList' const URL_UNIT_LIST = '/screen/material/agreementInfo/getUnitList'
const URL_PROJECT_LIST = '/bigScrap/material/agreementInfo/getProjectList' const URL_PROJECT_LIST = '/screen/material/agreementInfo/getProjectList'
const URL_SCRAP_ANALYSIS = const URL_SCRAP_ANALYSIS =
'/bigScrap/base/largeScreen/home/getScrapAnalysisByMonth/details' '/screen/base/largeScreen/home/getScrapAnalysisByMonth/details'
const URL_TOTAL_OWNERSHIP = const URL_TOTAL_OWNERSHIP =
'/bigScrap/base/largeScreen/home/getTotalOwnership/details' '/screen/base/largeScreen/home/getTotalOwnership/details'
const URL_ACCEPTANCE_STORAGE = const URL_ACCEPTANCE_STORAGE =
'/bigScrap/base/largeScreen/home/getAcceptanceStorage/details' '/screen/base/largeScreen/home/getAcceptanceStorage/details'
const URL_PICKING_ANALYSIS = const URL_PICKING_ANALYSIS =
'/bigScrap/base/largeScreen/home/getPickingAnalysisByMonth/details' '/screen/base/largeScreen/home/getPickingAnalysisByMonth/details'
const URL_MATERIAL_RETURN_BY_MONTH = const URL_MATERIAL_RETURN_BY_MONTH =
'/bigScrap/base/largeScreen/home/getMaterialReturnByMonth/details' '/screen/base/largeScreen/home/getMaterialReturnByMonth/details'
const URL_MAINTENANCE_BY_CHART = const URL_MAINTENANCE_BY_CHART =
'/bigScrap/base/largeScreen/home/getMaintenanceByMonth/chart' '/screen/base/largeScreen/home/getMaintenanceByMonth/chart'
const URL_MAINTENANCE_BY_MONTH_DETAILS = const URL_MAINTENANCE_BY_MONTH_DETAILS =
'/bigScrap/base/largeScreen/home/getMaintenanceByMonth/details' '/screen/base/largeScreen/home/getMaintenanceByMonth/details'
// 设备类型 // 设备类型
export const getTypeList = (params) => GET(URL_TYPE_LIST, params) export const getTypeList = (params) => GET(URL_TYPE_LIST, params)

View File

@ -2,74 +2,72 @@ import { POST, GET } from './index'
// 领料数据 // 领料数据
export const getMaterialReqDataApi = (params) => export const getMaterialReqDataApi = (params) =>
POST(`/bigScrap/base/largeScreen/home/getMaterialReqData`) POST(`/screen/base/largeScreen/home/getMaterialReqData`)
// 退料数据 // 退料数据
export const getMaterialReturnDataApi = (params) => export const getMaterialReturnDataApi = (params) =>
POST(`/bigScrap/base/largeScreen/home/getMaterialReturnData`) POST(`/screen/base/largeScreen/home/getMaterialReturnData`)
//当月报废分析 //当月报废分析
export const getScrapAnalysisByMonthApi = (params) => export const getScrapAnalysisByMonthApi = (params) =>
POST( POST(
`/bigScrap/base/largeScreen/home/getScrapAnalysisByMonth?maType=${params.maType}` `/screen/base/largeScreen/home/getScrapAnalysisByMonth?maType=${params.maType}`
) )
//新购验收入库分析 //新购验收入库分析
export const getAcceptanceStorageApi = (params) => export const getAcceptanceStorageApi = (params) =>
POST( POST(
`/bigScrap/base/largeScreen/home/getAcceptanceStorage?maType=${params.maType}` `/screen/base/largeScreen/home/getAcceptanceStorage?maType=${params.maType}`
) )
//当月领料分析 //当月领料分析
export const getPickingAnalysisByMonthApi = (params) => export const getPickingAnalysisByMonthApi = (params) =>
POST( POST(
`/bigScrap/base/largeScreen/home/getPickingAnalysisByMonth?maType=${params.maType}` `/screen/base/largeScreen/home/getPickingAnalysisByMonth?maType=${params.maType}`
) )
//当月退料分析 //当月退料分析
export const getMaterialReturnByMonthApi = (params) => export const getMaterialReturnByMonthApi = (params) =>
POST( POST(
`/bigScrap/base/largeScreen/home/getMaterialReturnByMonth?maType=${params.maType}` `/screen/base/largeScreen/home/getMaterialReturnByMonth?maType=${params.maType}`
) )
//当月维修分析 //当月维修分析
export const getMaintenanceByMonthApi = (params) => export const getMaintenanceByMonthApi = (params) =>
POST( POST(
`/bigScrap/base/largeScreen/home/getMaintenanceByMonth?maType=${params.maType}` `/screen/base/largeScreen/home/getMaintenanceByMonth?maType=${params.maType}`
) )
//设备分布图 //设备分布图
export const getEquipmentDisByMapApi = (params) => export const getEquipmentDisByMapApi = (params) =>
GET(`/bigScrap/base/largeScreen/home/getEquipmentDisByMap`) GET(`/screen/base/largeScreen/home/getEquipmentDisByMap`)
//获取工程的位置信息 //获取工程的位置信息
export const getProjectByMapApi = (params) => export const getProjectByMapApi = (params) =>
GET(`/bigScrap/base/largeScreen/home/getEquipmentDis`, params) GET(`/screen/base/largeScreen/home/getEquipmentDis`, params)
//获取设备的位置信息 //获取设备的位置信息
export const getDeviceByMapApi = (params) => export const getDeviceByMapApi = (params) =>
GET(`/bigScrap/base/largeScreen/home/getIotMaCodeMachine`, params) GET(`/screen/base/largeScreen/home/getIotMaCodeMachine`, params)
//施工机具/ //施工机具/
export const getTotalOwnershipApi = (params) => export const getTotalOwnershipApi = (params) =>
POST(`/bigScrap/base/largeScreen/home/getTotalOwnership`) POST(`/screen/base/largeScreen/home/getTotalOwnership`)
// 当月使用车辆 // 当月使用车辆
export const getCarUseByMonthApi = (params) => export const getCarUseByMonthApi = (params) =>
POST( POST(`/screen/base/largeScreen/home/getCarUseByMonth?maType=${params.maType}`)
`/bigScrap/base/largeScreen/home/getCarUseByMonth?maType=${params.maType}`
)
// 当月使用车辆 // 当月使用车辆
export const getMaintenanceWarningApi = (params) => export const getMaintenanceWarningApi = (params) =>
POST(`/bigScrap/base/largeScreen/home/getMaintenanceWarning`) POST(`/screen/base/largeScreen/home/getMaintenanceWarning`)
//各公司机具保有量 //各公司机具保有量
export const getTotalOwnershipByCompany = (params) => export const getTotalOwnershipByCompany = (params) =>
POST(`/bigScrap/base/largeScreen/home/getTotalOwnershipByCompany`) POST(`/screen/base/largeScreen/home/getTotalOwnershipByCompany`)
/** 获取机具设备的行程信息 */ /** 获取机具设备的行程信息 */
export const getIotDeviceTripApi = (params) => export const getIotDeviceTripApi = (params) =>
POST(`/bigScrap/material/iotMachine/searchItinerary`, params) POST(`/screen/material/iotMachine/searchItinerary`, params)
/** 获取机具设备的停留点信息 */ /** 获取机具设备的停留点信息 */
export const getIotDeviceParkDetailApi = (params) => export const getIotDeviceParkDetailApi = (params) =>
POST(`/bigScrap/material/iotMachine/reportParkDetailByTime`, params) POST(`/screen/material/iotMachine/reportParkDetailByTime`, params)
/** 获取工程领料的记录 */ /** 获取工程领料的记录 */
export const getProjectOutApi = (params) => export const getProjectOutApi = (params) =>
GET(`/bigScrap/base/largeScreen/home/getLeaseRecordListByLotId`, params) GET(`/screen/base/largeScreen/home/getLeaseRecordListByLotId`, params)
/** 获取工程退料的记录 */ /** 获取工程退料的记录 */
export const getProjectReturnApi = (params) => export const getProjectReturnApi = (params) =>
GET(`/bigScrap/base/largeScreen/home/getBackRecordListByLotId`, params) GET(`/screen/base/largeScreen/home/getBackRecordListByLotId`, params)
/** 获取工程退料的记录 */ /** 获取工程退料的记录 */
export const getProjectDeviceNumApi = (params) => export const getProjectDeviceNumApi = (params) =>
GET(`/bigScrap/base/largeScreen/home/getUseNumByLotId`, params) GET(`/screen/base/largeScreen/home/getUseNumByLotId`, params)
/** 获取单位数据 */ /** 获取单位数据 */
export const getUnitListApi = (params) => export const getUnitListApi = (params) =>
POST(`/bigScrap/system/select/getUnitCbx`, params) POST(`/screen/system/select/getUnitCbx`, params)

View File

@ -71,14 +71,14 @@ export default {
}, },
mounted() { mounted() {
console.log(this.$refs['box1'].scrollHeight) // 110 console.log(this.$refs['box1'].scrollHeight) // 110
// this.$refs['box1'].style.height = 'auto' this.$refs['box1'].style.height = 'auto'
// this.$refs['box1'].style.height = window.getComputedStyle( this.$refs['box1'].style.height = window.getComputedStyle(
// this.$refs['box1'] this.$refs['box1']
// ).height ).height
// this.getTotalOwnershipApiPage() this.getTotalOwnershipApiPage()
// setInterval(() => { setInterval(() => {
// this.getTotalOwnershipApiPage() this.getTotalOwnershipApiPage()
// }, 60 * 1000) }, 60 * 1000)
}, },
methods: { methods: {
getTotalOwnershipApiPage() { getTotalOwnershipApiPage() {

View File

@ -28,9 +28,7 @@ export default {
window.open( window.open(
`${ `${
this.jumpUrl this.jumpUrl
}//bigScrap/index01.html?token=${localStorage.getItem( }/bigScrap/index01.html?token=${localStorage.getItem('token')}`,
'token',
)}`,
'_blank', '_blank',
) )
}, },