diff --git a/.eslintrc.cjs b/.eslintrc.cjs
deleted file mode 100644
index 212a83f..0000000
--- a/.eslintrc.cjs
+++ /dev/null
@@ -1,22 +0,0 @@
-module.exports = {
- env: {
- browser: true,
- es2021: true,
- node: true
- },
- extends: [
- 'eslint:recommended',
- 'plugin:vue/vue3-recommended'
- ],
- parserOptions: {
- ecmaVersion: 'latest',
- sourceType: 'module'
- },
- plugins: ['vue'],
- rules: {
- 'vue/multi-word-component-names': 'off',
- 'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
- 'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
- 'vue/no-v-html': 'off'
- }
-}
diff --git a/packages/screen/src/views/RiskWarning/Dialog/aiWarningResultDialog.vue b/packages/screen/src/views/RiskWarning/Dialog/aiWarningResultDialog.vue
index 000f837..9160436 100644
--- a/packages/screen/src/views/RiskWarning/Dialog/aiWarningResultDialog.vue
+++ b/packages/screen/src/views/RiskWarning/Dialog/aiWarningResultDialog.vue
@@ -141,6 +141,18 @@
>
{{ currentWarningInfo.whistle }}
+
+ {{ currentWarningInfo.contractor }}
+
+
+ {{ currentWarningInfo.person }}
+
@@ -268,7 +280,7 @@ const emit = defineEmits(['update:visible', 'close']);
const warningData = ref({
publishOrg: '',
warningContent:
- '潼南区气象台2025年11月13日0时40分发布“暴雨蓝色预警tt信号”,预计23日0:40-6:40,龙形、宝龙、上和、大佛、桂林、玉溪、米心、花岩、双江、古溪、群力、柏梓、崇龛、梓潼、太安等15个乡镇(街道)强降水趋于减弱,未来6小时累计雨量将达50~100毫米,最大小时雨强将达20~40毫米,局地伴有雷电、阵性大风,请各地注意防范。',
+ '黔江区气象台2026年4月16日01时00分发布“暴雨红色预警信号”,过去1小时,双槐雨量已达90毫米,预计6日1:00-7:00,濯水镇街强降水仍将持续,未来6小时累计雨量将达90~160毫米,最大小时雨强将达80~100毫米,局地伴有雷电、阵性大风,地质灾害、中小河流洪水、山洪、城乡积涝等灾害风险高,请注意防范。',
effectiveTime: '',
expireTime: '',
});
@@ -297,17 +309,19 @@ const hierarchyLevels = ref([
// 右侧选项卡数据
const hierarchyTabs = ref([
- { key: 'city-leader', label: '公路中心领导', parentKey: 'city' },
+ { key: 'city-leader', label: '中心领导', parentKey: 'city' },
{ key: 'city-dept', label: '处室负责人', parentKey: 'city' },
{ key: 'city-emergency', label: '中心应急办', parentKey: 'city' },
]);
const districtTabsMap = ref([
{ key: 'district-leader', label: '公路交通部门领导', parentKey: 'district' },
- { key: 'district-person', label: '公路交通部门包保人', parentKey: 'district' },
+ { key: 'district-person', label: '养护站长/路长办', parentKey: 'district' },
]);
const frontlineTabsMap = ref([
{ key: 'frontline-guard', label: '护路员', parentKey: 'frontline' },
- { key: 'frontline-whistle', label: '项目吹哨人', parentKey: 'frontline' },
+ { key: 'frontline-whistle', label: '建设单位包保责任人', parentKey: 'frontline' },
+ { key: 'frontline-contractor', label: '施工单位包保责任人', parentKey: 'frontline' },
+ { key: 'frontline-person', label: '吹哨人', parentKey: 'frontline' },
]);
const activeHierarchyTab = ref('city-leader');
@@ -584,7 +598,7 @@ watch(
display: flex;
align-items: center;
justify-content: center;
- margin-top: 50px;
+ // margin-top: -40px;
gap: 8px;
.ai-icon-img {
width: 80px;
@@ -606,7 +620,7 @@ watch(
gap: 20px;
align-items: center;
margin-left: 20px;
- margin-top: 50px;
+ // margin-top: -40px;
margin-right: 10px;
.hierarchy-left {
diff --git a/packages/screen/src/views/RiskWarning/Dialog/centerInfoCard.vue b/packages/screen/src/views/RiskWarning/Dialog/centerInfoCard.vue
index c907600..2528abc 100644
--- a/packages/screen/src/views/RiskWarning/Dialog/centerInfoCard.vue
+++ b/packages/screen/src/views/RiskWarning/Dialog/centerInfoCard.vue
@@ -1,9 +1,6 @@