From 603e141e49d77c9d0429e6ab19cd1a6c758d7e1f Mon Sep 17 00:00:00 2001 From: wanghao Date: Tue, 27 May 2025 10:58:57 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=20=E6=9A=82=E6=97=B6?= =?UTF-8?q?=E5=88=A0=E9=99=A4=E8=AE=BE=E5=A4=87=E7=B1=BB=E5=9E=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/main/resources/templates/manage/model/model.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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') }