strategySafeguard.vue 31 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939
  1. <template>
  2. <el-form :inline="true" :model="formInline" ref="formRef" class="form-inline" label-position="top">
  3. <div style="display: flex;flex-direction: column;">
  4. <div style="flex-grow: 1;height: 66vh;overflow-y: auto;overflow-x: hidden">
  5. <el-row :gutter="20">
  6. <el-col :span="20">
  7. <el-radio-group v-model="radio1">
  8. <el-radio-button label="日常策略" value="日常策略" plain/>
  9. <el-radio-button label="任务策略" value="任务策略" plain/>
  10. </el-radio-group>
  11. </el-col>
  12. </el-row>
  13. <el-row :gutter="20" v-if="radio1==='任务策略'">
  14. <el-col :span="24">
  15. <!-- <el-button type="primary" plain style="margin-top: 15px;" @click="handleUpdateTask">新增</el-button>-->
  16. </el-col>
  17. </el-row>
  18. <el-row :gutter="20" v-if="radio1==='日常策略'">
  19. <el-col :span="24">
  20. <div class="table-box" style="margin-top: 10px;height: 58vh" >
  21. <!-- 表格主体 -->
  22. <el-table stripe ref="tableRef" :border="true" :data="tableDailyData" size="small">
  23. <template v-for="item in columns" :key="item">
  24. <el-table-column v-bind="item" :align="item.align ?? 'left'" :reserve-selection="item.type == 'selection'" :show-overflow-tooltip="true">
  25. <template #default="scope">
  26. <template v-if="item.prop === 'alarm'">
  27. {{parseItemValue(scope.row[item.prop])}}
  28. </template>
  29. <template v-if="item.prop === 'eliminate'">
  30. {{parseItemValue(scope.row[item.prop])}}
  31. </template>
  32. <template v-if="item.prop === 'alarmManner'">
  33. {{getAlarmMannerItemValue(scope.row[item.prop])}}
  34. </template>
  35. <template v-if="item.prop === 'operation'">
  36. <el-tooltip
  37. class="box-item"
  38. effect="dark"
  39. content="编辑"
  40. placement="top"
  41. >
  42. <el-button type="primary" link @click="handleUpdate(scope.row)">
  43. <el-icon >
  44. <Edit />
  45. </el-icon>
  46. </el-button>
  47. </el-tooltip>
  48. </template>
  49. </template>
  50. </el-table-column>
  51. </template>
  52. <!-- 无数据 -->
  53. <template #empty>
  54. <div class="table-empty">
  55. <slot name="empty">
  56. <img src="@/assets/images/notData.png" alt="notData" />
  57. <div>暂无数据</div>
  58. </slot>
  59. </div>
  60. </template>
  61. </el-table>
  62. </div>
  63. </el-col>
  64. </el-row>
  65. <el-row :gutter="20" v-if="radio1==='任务策略'">
  66. <el-col :span="24">
  67. <div class="table-box" style="margin-top: 10px;height: 53vh" >
  68. <!-- 表格主体 -->
  69. <el-table stripe ref="tableRef" :border="true" :data="taskData" size="small">
  70. <template v-for="item in columns2" :key="item">
  71. <el-table-column v-bind="item" :align="item.align ?? 'left'" :reserve-selection="item.type == 'selection'" :show-overflow-tooltip="true">
  72. <template #default="scope">
  73. <template v-if="item.prop === 'tact_name'">
  74. {{scope.row[item.prop]}}
  75. </template>
  76. <template v-else-if="item.prop === 'tact_begin_dt_i'">
  77. {{convertTimestampToDateTime(scope.row.tact_begin_dt_i)}}
  78. </template>
  79. <template v-else-if="item.prop === 'tact_end_dt_i'">
  80. {{convertTimestampToDateTime(scope.row.tact_end_dt_i)}}
  81. </template>
  82. <template v-else>
  83. {{parseItemValue(scope.row[item.prop])}}
  84. </template>
  85. <template v-if="item.prop === 'l'">
  86. 启用
  87. </template>
  88. </template>
  89. </el-table-column>
  90. </template>
  91. <!-- 无数据 -->
  92. <template #empty>
  93. <div class="table-empty">
  94. <slot name="empty">
  95. <img src="@/assets/images/notData.png" alt="notData" />
  96. <div>暂无数据</div>
  97. </slot>
  98. </div>
  99. </template>
  100. </el-table>
  101. </div>
  102. </el-col>
  103. </el-row>
  104. </div>
  105. <div class="disposition-bottom">
  106. <el-button disabled> 取消 </el-button>
  107. <el-button type="primary" plain disabled> 上一步 </el-button>
  108. <el-button type="primary" disabled> 下一步 </el-button>
  109. </div>
  110. </div>
  111. </el-form>
  112. <!-- 日常策略 添加或修改对话框 -->
  113. <el-dialog :title="dialog.title" v-model="dialog.visible" width="700px" append-to-body class="tactics">
  114. <el-form ref="formRef" :model="dailyForm" :rules="rules" >
  115. <div class="disposition-title">警告设置</div>
  116. <el-form-item label="触发条件:" prop="relationship" style="display: flex;align-items: center">
  117. <el-radio-group v-model="itemData.alarmCondition" disabled>
  118. <el-radio value="0" size="large">条件并且</el-radio>
  119. <el-radio value="1" size="large">条件或者</el-radio>
  120. </el-radio-group>
  121. </el-form-item>
  122. <el-form-item label="触发周期:" prop="cycle" style="display: flex;align-items: center">
  123. <div class="flex-center">
  124. <el-input v-model="itemData.alarmTime" style="width: 150px" disabled/>
  125. <div style="margin-left: 10px">分钟</div>
  126. </div>
  127. </el-form-item>
  128. <!-- <el-button type="primary" plain style="margin-top: 10px">新增</el-button>-->
  129. <div class="table-box" style="margin-top: 10px;height: 160px">
  130. <el-table stripe ref="tableRef" :border="true" :data="itemData.alarmList" size="small" >
  131. <template v-for="item in columns3" :key="item">
  132. <el-table-column v-bind="item" :align="item.align ?? 'left'" :reserve-selection="item.type == 'selection'" :show-overflow-tooltip="true">
  133. <template v-if="item.prop === 'operation'">
  134. <el-tooltip
  135. class="box-item"
  136. effect="dark"
  137. content="删除"
  138. placement="top"
  139. >
  140. <el-button type="primary" link >
  141. <el-icon >
  142. <Delete />
  143. </el-icon>
  144. </el-button>
  145. </el-tooltip>
  146. </template>
  147. </el-table-column>
  148. </template>
  149. <!-- 无数据 -->
  150. <template #empty>
  151. <div class="table-empty">
  152. <slot name="empty">
  153. <img src="@/assets/images/notData.png" alt="notData" />
  154. <div>暂无数据</div>
  155. </slot>
  156. </div>
  157. </template>
  158. </el-table>
  159. </div>
  160. <div class="disposition-title">消警设置</div>
  161. <el-form-item label="解除条件:" prop="relationship" style="display: flex;align-items: center">
  162. <el-radio-group v-model="itemData.eliminateCondition" disabled>
  163. <el-radio value="0" size="large">条件并且</el-radio>
  164. <el-radio value="1" size="large">条件或者</el-radio>
  165. </el-radio-group>
  166. </el-form-item>
  167. <el-form-item label="解除周期:" prop="cycle" style="display: flex;align-items: center">
  168. <div class="flex-center">
  169. <el-input v-model="itemData.eliminateTime" disabled style="width: 150px" />
  170. <div style="margin-left: 10px">分钟</div>
  171. </div>
  172. </el-form-item>
  173. <!-- <el-button type="primary" plain style="margin-top: 10px">新增</el-button>-->
  174. <div class="table-box" style="margin-top: 10px;height: 160px">
  175. <el-table stripe ref="tableRef" :border="true" :data="itemData.eliminateList" size="small" >
  176. <template v-for="item in columns4" :key="item">
  177. <el-table-column v-bind="item" :align="item.align ?? 'left'" :reserve-selection="item.type == 'selection'" :show-overflow-tooltip="true">
  178. <template v-if="item.prop === 'operation'">
  179. <el-tooltip
  180. class="box-item"
  181. effect="dark"
  182. content="删除"
  183. placement="top"
  184. >
  185. <el-button type="primary" link >
  186. <el-icon >
  187. <Delete />
  188. </el-icon>
  189. </el-button>
  190. </el-tooltip>
  191. </template>
  192. </el-table-column>
  193. </template>
  194. <!-- 无数据 -->
  195. <template #empty>
  196. <div class="table-empty">
  197. <slot name="empty">
  198. <img src="@/assets/images/notData.png" alt="notData" />
  199. <div>暂无数据</div>
  200. </slot>
  201. </div>
  202. </template>
  203. </el-table>
  204. </div>
  205. </el-form>
  206. <template #footer>
  207. <div class="dialog-footer">
  208. <el-button @click="cancel">取 消</el-button>
  209. <el-button type="primary" @click="submitForm" disabled>确 定</el-button>
  210. </div>
  211. </template>
  212. </el-dialog>
  213. <!-- 任务策略 添加或修改对话框 -->
  214. <el-dialog :title="dialogTask.title" v-model="dialogTask.visible" width="800px" append-to-body class="tactics">
  215. <el-form ref="formRef" :model="taskForm" :rules="rules" style="overflow: auto;height: 70vh;overflow-x: hidden;">
  216. <el-row :gutter="20">
  217. <el-col :span="12">
  218. <el-form-item label="任务名称:" prop="name" style="display: flex;align-items: center">
  219. <el-input v-model="taskForm.name" style="width: 240px" />
  220. </el-form-item>
  221. </el-col>
  222. </el-row>
  223. <el-row :gutter="20" style="margin-top: 10px">
  224. <el-col :span="12">
  225. <el-form-item label="开始时间:" prop="startTime" style="display: flex;align-items: center">
  226. <el-date-picker
  227. style="width: 240px"
  228. v-model="taskForm.startTime"
  229. type="date"
  230. placeholder="请选择"
  231. />
  232. </el-form-item>
  233. </el-col>
  234. <el-col :span="12">
  235. <el-form-item label="结束时间:" prop="endTime" style="display: flex;align-items: center">
  236. <el-date-picker
  237. style="width: 240px"
  238. v-model="taskForm.endTime"
  239. type="date"
  240. placeholder="请选择"
  241. />
  242. </el-form-item>
  243. </el-col>
  244. </el-row>
  245. <el-form-item style="display: flex;align-items: center; margin-top: 10px">
  246. <el-radio-group v-model="taskForm.type">
  247. <el-radio-button label="能见度" value="能见度" plain/>
  248. <el-radio-button label="风速" value="风速" plain/>
  249. <el-radio-button label="大气电场" value="大气电场" plain/>
  250. <el-radio-button label="云量" value="云量" plain/>
  251. <el-radio-button label="云高" value="云高" plain/>
  252. <el-radio-button label="温度" value="温度" plain/>
  253. <el-radio-button label="湿度" value="湿度" plain/>
  254. <el-radio-button label="小时雨量" value="小时雨量" plain/>
  255. <el-radio-button label="累年平均值" value="累年平均值" plain/>
  256. </el-radio-group>
  257. </el-form-item>
  258. <div class="disposition-title">警告设置</div>
  259. <el-form-item label="触发关系:" prop="relationship" style="display: flex;align-items: center">
  260. <el-radio-group v-model="dailyForm.relationship">
  261. <el-radio value="1" size="large">条件并且</el-radio>
  262. <el-radio value="2" size="large">条件或者</el-radio>
  263. </el-radio-group>
  264. </el-form-item>
  265. <el-form-item label="告警方式:" prop="manner" style="display: flex;align-items: center">
  266. <el-radio-group v-model="dailyForm.manner">
  267. <el-radio value="1" size="large">字幕提示</el-radio>
  268. <el-radio value="2" size="large">声音提示</el-radio>
  269. </el-radio-group>
  270. </el-form-item>
  271. <el-button type="primary" plain style="margin-top: 10px">新增</el-button>
  272. <div class="table-box" style="margin-top: 10px;height: 160px">
  273. <el-table stripe ref="tableRef" :border="true" :data="processTableData3" size="small" >
  274. <template v-for="item in columns3" :key="item">
  275. <el-table-column v-bind="item" :align="item.align ?? 'left'" :reserve-selection="item.type == 'selection'" :show-overflow-tooltip="true">
  276. <template v-if="item.prop === 'operation'">
  277. <el-tooltip
  278. class="box-item"
  279. effect="dark"
  280. content="删除"
  281. placement="top"
  282. >
  283. <el-button type="primary" link >
  284. <el-icon >
  285. <Delete />
  286. </el-icon>
  287. </el-button>
  288. </el-tooltip>
  289. </template>
  290. </el-table-column>
  291. </template>
  292. <!-- 无数据 -->
  293. <template #empty>
  294. <div class="table-empty">
  295. <slot name="empty">
  296. <img src="@/assets/images/notData.png" alt="notData" />
  297. <div>暂无数据</div>
  298. </slot>
  299. </div>
  300. </template>
  301. </el-table>
  302. </div>
  303. <div class="disposition-title">消警设置</div>
  304. <el-form-item label="触发关系:" prop="relationship" style="display: flex;align-items: center">
  305. <el-radio-group v-model="dailyForm.relationship">
  306. <el-radio value="1" size="large">条件并且</el-radio>
  307. <el-radio value="2" size="large">条件或者</el-radio>
  308. </el-radio-group>
  309. </el-form-item>
  310. <el-button type="primary" plain style="margin-top: 10px">新增</el-button>
  311. <div class="table-box" style="margin-top: 10px;height: 160px">
  312. <el-table stripe ref="tableRef" :border="true" :data="processTableData4" size="small" >
  313. <template v-for="item in columns4" :key="item">
  314. <el-table-column v-bind="item" :align="item.align ?? 'left'" :reserve-selection="item.type == 'selection'" :show-overflow-tooltip="true">
  315. <template v-if="item.prop === 'operation'">
  316. <el-tooltip
  317. class="box-item"
  318. effect="dark"
  319. content="删除"
  320. placement="top"
  321. >
  322. <el-button type="primary" link >
  323. <el-icon >
  324. <Delete />
  325. </el-icon>
  326. </el-button>
  327. </el-tooltip>
  328. </template>
  329. </el-table-column>
  330. </template>
  331. <!-- 无数据 -->
  332. <template #empty>
  333. <div class="table-empty">
  334. <slot name="empty">
  335. <img src="@/assets/images/notData.png" alt="notData" />
  336. <div>暂无数据</div>
  337. </slot>
  338. </div>
  339. </template>
  340. </el-table>
  341. </div>
  342. </el-form>
  343. <template #footer>
  344. <div class="dialog-footer">
  345. <el-button @click="cancel">取 消</el-button>
  346. <el-button type="primary" @click="submitForm" disabled>确 定</el-button>
  347. </div>
  348. </template>
  349. </el-dialog>
  350. </template>
  351. <script setup lang="tsx">
  352. import {defineProps, onMounted, reactive, ref} from "vue";
  353. import {ColumnProps} from "@/components/ProTable/interface";
  354. import {getAstactList, getRgDataList, getYaspacketList, getYasthreshold} from "@/api/modules/allData";
  355. const props = defineProps<{
  356. selectData?: {};
  357. }>();
  358. const pageable = ref<any>({
  359. asCode: props.selectData.as_code,
  360. pageNum: 1,
  361. pageSize: 20,
  362. });
  363. const getList= async ()=>{
  364. const { data } = await getAstactList(pageable.value);
  365. const dataList = data[props.selectData.as_code]
  366. if(dataList!==undefined){
  367. dataList.forEach(item => {
  368. if (item.tact_index === 1) {
  369. dailyData.value.push(item);
  370. getDailyData()
  371. } else {
  372. taskData.value.push(item);
  373. }
  374. });
  375. }
  376. }
  377. const getDailyData=()=>{
  378. if(dailyData.value!=undefined&&dailyData.value.length>0){
  379. const data = dailyData.value[0]
  380. tableDailyData.value.forEach(item => {
  381. if (item.name === '能见度') {
  382. item.alarm = data.tact_njd_on;
  383. item.eliminate = data.tact_njd_off;
  384. item.alarmTime = getAlarmTime(data.tact_njd_on)
  385. item.eliminateTime = getEliminateTime(data.tact_njd_off)
  386. item.alarmManner = getAlarmManner(data.tact_njd_on)
  387. item.alarmCondition =getAlarmCondition(data.tact_njd_on)
  388. item.eliminateCondition =getEliminateCondition(data.tact_njd_off)
  389. item.alarmList = parseItemList(data.tact_njd_on)
  390. item.eliminateList = parseItemList(data.tact_njd_off)
  391. } else if (item.name === '风速') {
  392. item.alarm = data.tact_fs_on;
  393. item.eliminate = data.tact_fs_off;
  394. item.alarmTime = getAlarmTime(data.tact_fs_on)
  395. item.eliminateTime = getEliminateTime(data.tact_fs_off)
  396. item.alarmManner = getAlarmManner(data.tact_fs_on)
  397. item.alarmCondition =getAlarmCondition(data.tact_fs_on)
  398. item.eliminateCondition =getEliminateCondition(data.tact_fs_off)
  399. item.alarmList = parseItemList(data.tact_fs_on)
  400. item.eliminateList = parseItemList(data.tact_fs_off)
  401. } else if (item.name === '大气电场') {
  402. item.alarm = data.tact_dqdc_on;
  403. item.eliminate = data.tact_dqdc_off;
  404. item.alarmTime = getAlarmTime(data.tact_dqdc_on)
  405. item.eliminateTime = getEliminateTime(data.tact_dqdc_off)
  406. item.alarmManner = getAlarmManner(data.tact_dqdc_on)
  407. item.alarmCondition =getAlarmCondition(data.tact_dqdc_on)
  408. item.eliminateCondition =getEliminateCondition(data.tact_dqdc_off)
  409. item.alarmList = parseItemList(data.tact_dqdc_on)
  410. item.eliminateList = parseItemList(data.tact_dqdc_off)
  411. } else if (item.name === '云量') {
  412. item.alarm = data.tact_yl_on;
  413. item.eliminate = data.tact_yl_off;
  414. item.alarmTime = getAlarmTime(data.tact_yl_on)
  415. item.eliminateTime = getEliminateTime(data.tact_yl_off)
  416. item.alarmManner = getAlarmManner(data.tact_yl_on)
  417. item.alarmCondition =getAlarmCondition(data.tact_yl_on)
  418. item.eliminateCondition =getEliminateCondition(data.tact_yl_off)
  419. item.alarmList = parseItemList(data.tact_yl_on)
  420. item.eliminateList = parseItemList(data.tact_yl_off)
  421. } else if (item.name === '云高') {
  422. item.alarm = data.tact_yg_on;
  423. item.eliminate = data.tact_yg_off;
  424. item.alarmTime = getAlarmTime(data.tact_yg_on)
  425. item.eliminateTime = getEliminateTime(data.tact_yg_off)
  426. item.alarmManner = getAlarmManner(data.tact_yg_on)
  427. item.alarmCondition =getAlarmCondition(data.tact_yg_on)
  428. item.eliminateCondition =getEliminateCondition(data.tact_yg_off)
  429. item.alarmList = parseItemList(data.tact_yg_on)
  430. item.eliminateList = parseItemList(data.tact_yg_off)
  431. } else if (item.name === '气温') {
  432. item.alarm = data.tact_wd_on;
  433. item.eliminate = data.tact_wd_off;
  434. item.alarmTime = getAlarmTime(data.tact_wd_on)
  435. item.eliminateTime = getEliminateTime(data.tact_wd_off)
  436. item.alarmManner = getAlarmManner(data.tact_wd_on)
  437. item.alarmCondition =getAlarmCondition(data.tact_wd_on)
  438. item.eliminateCondition =getEliminateCondition(data.tact_wd_off)
  439. item.alarmList = parseItemList(data.tact_wd_on)
  440. item.eliminateList = parseItemList(data.tact_wd_off)
  441. } else if (item.name === '湿度') {
  442. item.alarm = data.tact_sd_on;
  443. item.eliminate = data.tact_sd_off;
  444. item.alarmTime = getAlarmTime(data.tact_sd_on)
  445. item.eliminateTime = getEliminateTime(data.tact_sd_off)
  446. item.alarmManner = getAlarmManner(data.tact_sd_on)
  447. item.alarmCondition =getAlarmCondition(data.tact_sd_on)
  448. item.eliminateCondition =getEliminateCondition(data.tact_sd_off)
  449. item.alarmList = parseItemList(data.tact_sd_on)
  450. item.eliminateList = parseItemList(data.tact_sd_off)
  451. } else if (item.name === '小时雨量') {
  452. item.alarm = data.tact_xsyl_on;
  453. item.eliminate = data.tact_xsyl_off;
  454. item.alarmTime = getAlarmTime(data.tact_xsyl_on)
  455. item.eliminateTime = getEliminateTime(data.tact_xsyl_off)
  456. item.alarmManner = getAlarmManner(data.tact_xsyl_on)
  457. item.alarmCondition =getAlarmCondition(data.tact_xsyl_on)
  458. item.eliminateCondition =getEliminateCondition(data.tact_xsyl_off)
  459. item.alarmList = parseItemList(data.tact_xsyl_on)
  460. item.eliminateList = parseItemList(data.tact_xsyl_off)
  461. }
  462. });
  463. console.log(tableDailyData.value)
  464. }
  465. }
  466. const tableDailyData =ref(
  467. [
  468. {
  469. name:'能见度',
  470. alarm:'',
  471. eliminate:'',
  472. alarmTime:'',
  473. eliminateTime:'',
  474. alarmManner:'',
  475. alarmCondition:'',
  476. eliminateCondition:'',
  477. alarmList:[],
  478. eliminateList:[]
  479. },
  480. {
  481. name:'风速',
  482. alarm:'',
  483. eliminate:'',
  484. alarmTime:'',
  485. eliminateTime:'',
  486. alarmManner:'',
  487. alarmCondition:'',
  488. eliminateCondition:'',
  489. alarmList:[],
  490. eliminateList:[]
  491. },
  492. {
  493. name:'大气电场',
  494. alarm:'',
  495. eliminate:'',
  496. alarmTime:'',
  497. eliminateTime:'',
  498. alarmManner:'',
  499. alarmCondition:'',
  500. eliminateCondition:'',
  501. alarmList:[],
  502. eliminateList:[]
  503. },
  504. {
  505. name:'云量',
  506. alarm:'',
  507. eliminate:'',
  508. alarmTime:'',
  509. eliminateTime:'',
  510. alarmManner:'',
  511. alarmCondition:'',
  512. eliminateCondition:'',
  513. alarmList:[],
  514. eliminateList:[]
  515. },
  516. {
  517. name:'云高',
  518. alarm:'',
  519. eliminate:'',
  520. alarmTime:'',
  521. eliminateTime:'',
  522. alarmManner:'',
  523. alarmCondition:'',
  524. eliminateCondition:'',
  525. alarmList:[],
  526. eliminateList:[]
  527. },
  528. {
  529. name:'气温',
  530. alarm:'',
  531. eliminate:'',
  532. alarmTime:'',
  533. eliminateTime:'',
  534. alarmManner:'',
  535. alarmCondition:'',
  536. eliminateCondition:'',
  537. alarmList:[],
  538. eliminateList:[]
  539. },
  540. {
  541. name:'湿度',
  542. alarm:'',
  543. eliminate:'',
  544. alarmTime:'',
  545. eliminateTime:'',
  546. alarmManner:'',
  547. alarmCondition:'',
  548. eliminateCondition:'',
  549. alarmList:[],
  550. eliminateList:[]
  551. },
  552. {
  553. name:'小时雨量',
  554. alarm:'',
  555. eliminate:'',
  556. alarmTime:'',
  557. eliminateTime:'',
  558. alarmManner:'',
  559. alarmCondition:'',
  560. eliminateCondition:'',
  561. alarmList:[],
  562. eliminateList:[]
  563. }
  564. ]
  565. )
  566. onMounted(() => {
  567. getAllRgDataList()
  568. setTimeout(() => {
  569. getList()
  570. }, 1000);
  571. })
  572. const dailyData = ref([])
  573. const taskData = ref([])
  574. function convertTimestampToDateTime(timestamp) {
  575. const date = new Date(timestamp * 1000); // JavaScript 的 Date 需要毫秒级时间戳
  576. const year = date.getFullYear();
  577. const month = String(date.getMonth() + 1).padStart(2, '0'); // 月份从 0 开始,所以加 1
  578. const day = String(date.getDate()).padStart(2, '0');
  579. const hours = String(date.getHours()).padStart(2, '0');
  580. const minutes = String(date.getMinutes()).padStart(2, '0');
  581. const seconds = String(date.getSeconds()).padStart(2, '0');
  582. return `${year}-${month}-${day} ${hours}:${minutes}:${seconds}`;
  583. }
  584. const rules = ref<any>(
  585. {
  586. name: [{ required: true, message: "任务名称不能为空", trigger: "blur" }],
  587. startTime: [{ required: true, message: "开始时间不能为空", trigger: "blur" }],
  588. endTime: [{ required: true, message: "结束时间不能为空", trigger: "blur" }],
  589. }
  590. );
  591. const dialog = reactive<any>({
  592. visible: false,
  593. title: '',
  594. isMode: true
  595. });
  596. const dialogTask = reactive<any>({
  597. visible: false,
  598. title: '',
  599. isMode: true
  600. });
  601. const dailyForm = ref<any>({
  602. relationship: "1",
  603. cycle:"",
  604. manner:""
  605. });
  606. const taskForm = ref<any>({
  607. relationship: "1",
  608. cycle:"",
  609. manner:"",
  610. name:"",
  611. startTime:"",
  612. endTime:"",
  613. type:""
  614. });
  615. /** 修改按钮操作 */
  616. const handleUpdateTask = async (row?: any) => {
  617. reset();
  618. dialogTask.visible = true;
  619. dialogTask.title = "策略管理";
  620. dialogTask.isMode = false;
  621. }
  622. const getAlarmCondition = (itemValue) => {
  623. if (itemValue === '1|1|0') {
  624. const time = itemValue.split('|');
  625. return time[0]
  626. }else if (typeof itemValue === 'string') {
  627. const alarm = itemValue.split(';');
  628. const time = alarm[0].split('|');
  629. return time[0]
  630. }
  631. return '0';
  632. }
  633. const getEliminateCondition = (itemValue) => {
  634. if (itemValue === '0|15') {
  635. const time = itemValue.split('|');
  636. return time[0]
  637. }else if (typeof itemValue === 'string') {
  638. const alarm = itemValue.split(';');
  639. const time = alarm[0].split('|');
  640. return time[0]
  641. }
  642. return '0';
  643. }
  644. const getAlarmManner = (itemValue)=>{
  645. if (itemValue === '1|1|0') {
  646. const time = itemValue.split('|');
  647. return time[2]
  648. }else if (typeof itemValue === 'string') {
  649. const alarm = itemValue.split(';');
  650. const time = alarm[0].split('|');
  651. return time[2]
  652. }
  653. return '';
  654. }
  655. const getAlarmTime = (itemValue)=>{
  656. if (itemValue === '1|1|0') {
  657. const time = itemValue.split('|');
  658. return time[1]
  659. }else if (typeof itemValue === 'string') {
  660. const alarm = itemValue.split(';');
  661. const time = alarm[0].split('|');
  662. return time[1]
  663. }
  664. return '';
  665. }
  666. const getEliminateTime = (itemValue)=>{
  667. if (itemValue === '0|15') {
  668. const time = itemValue.split('|');
  669. return time[1]
  670. }else if (typeof itemValue === 'string') {
  671. const alarm = itemValue.split(';');
  672. const time = alarm[0].split('|');
  673. return time[1]
  674. }
  675. return '';
  676. }
  677. const getAlarmMannerItemValue = (itemValue) => {
  678. if(itemValue==='0'){
  679. return '字幕提示'
  680. }else if(itemValue==='1'){
  681. return '声音提示'
  682. }
  683. return ''
  684. }
  685. const parseItemList = (itemValue) => {
  686. if (itemValue === '1|1|0'||itemValue === '0|15') {
  687. return [];
  688. }
  689. if (typeof itemValue === 'string') {
  690. const alarm = itemValue.split(';');
  691. const data = []
  692. for (var i = 1; i < alarm.length; i++) {
  693. data.push(getItemList(alarm[i]))
  694. }
  695. return data;
  696. }
  697. return [];
  698. }
  699. const parseItemValue = (itemValue) => {
  700. if (itemValue === '1|1|0'||itemValue === '0|15') {
  701. return '';
  702. }
  703. if (typeof itemValue === 'string') {
  704. const alarm = itemValue.split(';');
  705. let value = ''; // 初始化 value 为一个空字符串
  706. for (var i = 1; i < alarm.length; i++) { // 循环从数组的第二个元素开始
  707. if(i==1){
  708. value += getItemValue(alarm[i]) +' ';
  709. }else {
  710. value +=getCondition(alarm[0]) +' '+getItemValue(alarm[i]) +' ';
  711. }
  712. }
  713. // 如果需要在最后的结果中没有尾随空格,可以使用 trimEnd() 方法
  714. return value.trimEnd();
  715. }
  716. return '';
  717. }
  718. const getCondition=(itemValue)=>{
  719. const [element, operator, value] = itemValue.split('|');
  720. if(element==='0'){
  721. return '并且'
  722. }else if(element==='1'){
  723. return '或者'
  724. }else {
  725. return ''
  726. }
  727. }
  728. const getItemList=(itemValue)=>{
  729. const [element, operator, value] = itemValue.split('|');
  730. return {element:findDataName(element),operator:operatorDataName(operator),valueName:value}
  731. }
  732. const getItemValue=(itemValue)=>{
  733. const [element, operator, value] = itemValue.split('|');
  734. return `${findDataName(element)} ${operatorDataName(operator)} ${value}`;
  735. }
  736. const operatorDataName = (id) => {
  737. const item = operatorList?.find(item => item.value == parseInt(id));
  738. if (item) {
  739. return item.label;
  740. } else {
  741. return ''
  742. }
  743. };
  744. const operatorList= [
  745. {
  746. value: 0,
  747. label: '>',
  748. },
  749. {
  750. value: 1,
  751. label: '<',
  752. },
  753. {
  754. value: 2,
  755. label: '=',
  756. },
  757. {
  758. value: 3,
  759. label: '≠',
  760. }
  761. ]
  762. // 查询所有人工要素字典表
  763. const elementList =ref<any>([])
  764. const getAllRgDataList = async () => {
  765. const { data } = await getRgDataList();
  766. elementList.value = data.list
  767. };
  768. const findDataName = (id) => {
  769. const item = elementList.value?.find(item => item.data_id == parseInt(id));
  770. if (item) {
  771. return item.data_name;
  772. } else {
  773. return ''
  774. }
  775. };
  776. const itemData = ref({})
  777. /** 修改按钮操作 */
  778. const handleUpdate = async (row?: any) => {
  779. itemData.value = row
  780. dialog.visible = true;
  781. dialog.title = "策略管理";
  782. dialog.isMode = false;
  783. }
  784. /** 取消按钮 */
  785. const cancel = () => {
  786. reset();
  787. dialog.visible = false;
  788. }
  789. /** 表单重置 */
  790. const reset = () => {
  791. dailyForm.value = { ...dailyForm };
  792. formRef.value?.resetFields();
  793. }
  794. const formRef = ref<any>();
  795. const formInline = ref<any>({
  796. })
  797. /** 提交按钮 */
  798. const submitForm = () => {
  799. formRef.value?.validate(async (valid: boolean) => {
  800. if (valid) {
  801. }
  802. });
  803. }
  804. const radio1 = ref('日常策略')
  805. const processTableData = ref([]);
  806. // 表格配置项
  807. const columns = reactive<ColumnProps[]>([
  808. { prop: "name", label: "策略名称"},
  809. { prop: "alarm", label: "告警条件"},
  810. { prop: "eliminate", label: "消警条件" },
  811. { prop: "alarmTime", label: "告警时间" },
  812. { prop: "eliminateTime", label: "消警时间" },
  813. { prop: "alarmManner", label: "告警方式" },
  814. { prop: "operation", label: "操作", width:150,align: 'center' }
  815. ]);
  816. const processTableData2 = ref([
  817. ]);
  818. // 表格配置项
  819. const columns2 = reactive<ColumnProps[]>([
  820. { prop: "tact_name", label: "任务名称"},
  821. { prop: "tact_begin_dt_i", label: "开始时间"},
  822. { prop: "tact_end_dt_i", label: "结束时间" },
  823. { prop: "tact_njd_on", label: "能见度" },
  824. { prop: "tact_fs_on", label: "风速" },
  825. { prop: "tact_dqdc_on", label: "大气电场" },
  826. { prop: "tact_yl_on", label: "云量" },
  827. { prop: "tact_yg_on", label: "云高" },
  828. { prop: "tact_wd_on", label: "气温" },
  829. { prop: "tact_sd_on", label: "湿度" },
  830. { prop: "tact_xsyl_on", label: "降水" },
  831. { prop: "l", label: "启停" }
  832. ]);
  833. const processTableData3 = ref([
  834. ]);
  835. // 表格配置项
  836. const columns3 = reactive<ColumnProps[]>([
  837. { prop: "element", label: "消警要素"},
  838. { prop: "operator", label: "消警条件"},
  839. { prop: "valueName", label: "消警阈值" },
  840. // { prop: "operation", label: "操作", width:100,align: 'center' }
  841. ]);
  842. const processTableData4 = ref([
  843. ]);
  844. // 表格配置项
  845. const columns4 = reactive<ColumnProps[]>([
  846. { prop: "element", label: "消警要素"},
  847. { prop: "operator", label: "消警条件"},
  848. { prop: "valueName", label: "消警阈值" },
  849. // { prop: "operation", label: "操作", width:100,align: 'center' }
  850. ]);
  851. </script>
  852. <style scoped>
  853. .table-box{
  854. height: 100%;
  855. }
  856. .flex-center{
  857. display: flex;
  858. align-items: center
  859. }
  860. .tactics .el-form-item--default {
  861. margin-bottom: 0px;
  862. }
  863. </style>