马铃薯app
1.客户往来、供应商往来查询展示修改
2.环境检测页面展示修改
| | |
| | | <view class="device-base"> |
| | | <text class="device-name">{{ item.name }}</text> |
| | | <text class="device-meta">设备编码:{{ item.guid || "--" }}</text> |
| | | <text class="device-meta">存放位置:{{ item.storageLocation || "--" }}</text> |
| | | </view> |
| | | <text class="device-tag">在线监测</text> |
| | | </view> |
| | |
| | | name: source?.deviceName || source?.name || source?.deviceNo || `设备${index + 1}`, |
| | | guid: source?.guid || source?.deviceGuid || source?.id || "", |
| | | deviceCode: source?.deviceCode || source?.deviceNo || source?.code || "", |
| | | storageLocation: source?.storageLocation || "", |
| | | temperature: 0, |
| | | humidity: 0, |
| | | co2: 0, |
| | |
| | | name: item.name, |
| | | guid: item.guid, |
| | | deviceCode: item.deviceCode, |
| | | storageLocation: item.storageLocation, |
| | | temperature: formatMetric(item.temperature, TEMP_UNIT), |
| | | humidity: formatMetric(item.humidity, "%RH"), |
| | | co2: formatMetric(item.co2, "ppm"), |