diff --git a/ruoyi-manage/src/main/resources/templates/manage/model/model.html b/ruoyi-manage/src/main/resources/templates/manage/model/model.html index c4b36cb..5b23ec8 100644 --- a/ruoyi-manage/src/main/resources/templates/manage/model/model.html +++ b/ruoyi-manage/src/main/resources/templates/manage/model/model.html @@ -430,7 +430,7 @@ $.post(ctx + 'api/getDevice', {storeName: name.toString()}, (e) => { if (e.data.length > 0) { $("#threeLabelContent1").css('display', 'block') - $("#threeLabelContent1").html(`
摆放桩位
设备编码
设备名称
设备类型
使用状态
设备状态
${e.data.map(v => `
${v.locationName || ''}
${v.deviceCode || ''}
${v.deviceName || ''}
${v.deviceType || ''}
${getUseState(v.useState)}
${getDevicestate(v.deviceState)}
`).join('
')}`) + $("#threeLabelContent1").html(`
摆放桩位
设备编码
设备名称
使用状态
设备状态
${e.data.map(v => `
${v.locationName || ''}
${v.deviceCode || ''}
${v.deviceName || ''}
${getUseState(v.useState)}
${getDevicestate(v.deviceState)}
`).join('
')}`) } else { $("#threeLabelContent1").css('display', 'none') }