feat:cdsbInfo表读取优化,只存储当前考试项目

This commit is contained in:
surenjun 2024-09-06 13:36:33 +08:00
parent 2a32af7fa1
commit ac1e2d27b8

View File

@ -336,20 +336,26 @@ struct Index {
// 获取场地设备信息
async initCDSBInfo() {
const cdsbParams = await getSyncData('MA_CDSBINFO')
//只记录考试项目的模型
const projectsObj = this.projectsObj
//@ts-ignore
cdsbParams.forEach((cdsb) => {
const key = decodeURI(cdsb.itemsno);
const newKey = key.split('~').join('_')
this.cdsbInfoObj[newKey] = {
kdid: cdsb.kdid,
sbbh: cdsb.sbbh,
sbbm: cdsb.sbbm,
itemsno: key,
modelKey: newKey,
//@ts-ignore
xmdm: key.split('~')[0] * 1,
xmxh: key.split('~')[1],
//@ts-ignore
const xmdm = key.split('~')[0] * 1
if(projectsObj[xmdm]){
this.cdsbInfoObj[newKey] = {
kdid: cdsb.kdid,
sbbh: cdsb.sbbh,
sbbm: cdsb.sbbm,
itemsno: key,
modelKey: newKey,
xmdm,
xmxh: key.split('~')[1],
}
}
})
}