执法检查总结模版调整

This commit is contained in:
zhangchaoyang02 2025-08-22 19:50:41 +08:00
parent 12f82a463c
commit f9422c9f67
3 changed files with 3 additions and 4 deletions

View File

@ -312,9 +312,6 @@ watch(
dialogConfig.value.rules = baseRules
}
)
const route = useRoute();
onMounted(async () => {})
</script>
<style scoped lang="scss">
.zfjc-pic {

View File

@ -692,6 +692,7 @@ public class EnterprisePoniteScheduleService {
refreshToken();
}
} catch (Exception e) {
log.info("危化企业信息查询查询异常:" + e);
}
return flag;
}

View File

@ -176,7 +176,8 @@ public class EnterpriseScheduleService {
if (arrNode.isArray()) {
long total = data.get("totalCount").asLong();
int limit = data.get("limit").asInt();
if (total > limit && arrNode.size() >= limit)
goon = true;
List<Enterprise> enterprises = new ArrayList<>();
List<EnterpriseInterfaceDto> dtos = objectMapper.readValue(arrNode.toString(), new TypeReference<>() {
});