index.vue 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598
  1. <template>
  2. <!-- 水质报警 -->
  3. <div class="page-container">
  4. <el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px"
  5. class="search-form_container">
  6. <!-- <el-form-item label="报警内容" prop="unknown">
  7. <el-input v-model="queryParams.question" placeholder="请输入问题内容" clearable @keyup.enter.native="handleQuery" />
  8. </el-form-item> -->
  9. <el-form-item label="报警类型" prop="category">
  10. <el-select v-model="queryParams.category">
  11. <el-option value="" label="全部"></el-option>
  12. <el-option key="出水COD" value="出水COD" label="出水COD"></el-option>
  13. <el-option key="出水SS" value="出水SS" label="出水SS"></el-option>
  14. <el-option key="出水总氮" value="出水总氮" label="出水总氮"></el-option>
  15. <el-option key="出水总磷" value="出水总磷" label="出水总磷"></el-option>
  16. <el-option key="出水氨氮" value="出水氨氮" label="出水氨氮"></el-option>
  17. </el-select>
  18. </el-form-item>
  19. <!-- <el-form-item label="报警原因" prop="reason">
  20. <el-select v-model="queryParams.reason">
  21. <el-option value="" label="全部"></el-option>
  22. <el-option key="出水总磷" value="出水总磷" label="出水总磷"></el-option>
  23. <el-option key="出水总磷" value="出水总磷" label="出水总磷"></el-option>
  24. <el-option key="出水总磷" value="出水总磷" label="出水总磷"></el-option>
  25. <el-option key="出水总磷" value="出水总磷" label="出水总磷"></el-option>
  26. </el-select>
  27. </el-form-item> -->
  28. <el-form-item label="报警状态" prop="warningStatus">
  29. <el-select v-model="queryParams.warningStatus">
  30. <el-option value="" label="全部"></el-option>
  31. <el-option :key="item.label" :value="item.val" :label="item.label" v-for="item in warningStatus"></el-option>
  32. </el-select>
  33. </el-form-item>
  34. <el-form-item>
  35. <el-button type="primary" icon="search" size="small" @click="handleQuery">搜索</el-button>
  36. <el-button icon="refresh" size="small" @click="resetQuery">重置</el-button>
  37. </el-form-item>
  38. </el-form>
  39. <el-card shadow="never" body-class="card-table_container">
  40. <el-row :gutter="10" class="mb8">
  41. <!-- <el-col :span="1.5">
  42. <el-button type="primary" plain icon="plus" size="small" @click="handleAdd">新增</el-button>
  43. </el-col>
  44. <el-col :span="1.5">
  45. <el-button type="success" plain icon="edit" size="small" :disabled="single"
  46. @click="handleUpdate">修改</el-button>
  47. </el-col> -->
  48. <el-col :span="1.5">
  49. <el-button type="danger" plain icon="delete" size="small" :disabled="multiple"
  50. @click="handleDelete">删除</el-button>
  51. </el-col>
  52. <el-col :span="1.5">
  53. <el-button type="warning" plain icon="download" size="small" @click="handleExport">导出</el-button>
  54. </el-col>
  55. <right-toolbar v-model:showSearch="showSearch" @queryTable="getList"></right-toolbar>
  56. </el-row>
  57. <el-table v-loading="loading" :data="recordList" @selection-change="handleSelectionChange">
  58. <el-table-column type="selection" width="55" align="center" />
  59. <el-table-column label="类型" align="center" prop="category" />
  60. <el-table-column label="报警原因" align="center" prop="reason" />
  61. <el-table-column label="报警值" align="center" prop="warningVal">
  62. <template #default="scope">
  63. <span style="color: red;">{{ Number(scope.row.warningVal.toFixed(2)) }} mg/L</span>
  64. </template>
  65. </el-table-column>
  66. <el-table-column label="标准值" align="center" prop="designVal">
  67. <template #default="scope">
  68. <span>{{ scope.row.designVal }} mg/L</span>
  69. </template>
  70. </el-table-column>
  71. <el-table-column label="报警级别" align="center" prop="level" />
  72. <el-table-column label="报警次数" align="center" prop="counts" />
  73. <el-table-column label="报警发起时间" align="center" prop="createTime" />
  74. <el-table-column label="报警关闭时间" align="center" prop="offTime" />
  75. <el-table-column label="状态" align="center" prop="status" />
  76. <el-table-column label="操作" align="center" class-name="small-padding fixed-width" width="160">
  77. <template #default="scope">
  78. <el-button type="primary" text size="small" icon="view" @click="handleRecordDetails(scope)">查看记录</el-button>
  79. <!-- <el-button size="small" type="text" icon="edit" @click="handleUpdate(scope.row)">修改</el-button> -->
  80. <!-- <el-button size="small" type="primary" text icon="delete" @click="handleDelete(scope.row)">删除</el-button> -->
  81. </template>
  82. </el-table-column>
  83. </el-table>
  84. <pagination v-show="total > 0" :total="total" v-model:page="queryParams.pageNum"
  85. v-model:limit="queryParams.pageSize" @pagination="getList" />
  86. </el-card>
  87. <el-dialog title="水质报警记录" v-model="recordVisible" width="880px" append-to-body class="chat-dialog_container">
  88. <el-scrollbar height="600px">
  89. <ChatBaseCard>
  90. <div class="waring-answer-wrapper">
  91. <dl class="message-inner warning-info_medium flex flex-col justify-between">
  92. <dt class="mb-[2px] font-bold text-[#1A2029]">{{ textDataSources?.title }}</dt>
  93. <dd v-for="item, index in textDataSources?.list" :key="index"><span
  94. :class="{ 'text-[#F44C49]': item.isWarning }">{{ item.label }}: {{ item.value }}</span></dd>
  95. </dl>
  96. <div class="table-inner">
  97. <div class="warning-table">
  98. <div class="title">
  99. <span>当前进水数据:</span>
  100. </div>
  101. <div class="main">
  102. <el-table :data="jsTableData" style="width: 100%" size="small">
  103. <el-table-column prop="流量" label="流量(m³/h)">
  104. <template #default="scope">
  105. <span :style="{ color: scope.row['流量'].exceed ? 'red' : '' }">{{
  106. Number(scope.row['流量'].value.toFixed(2)) }}</span>
  107. </template>
  108. </el-table-column>
  109. <el-table-column label="COD(mg/L)">
  110. <template #default="scope">
  111. <span :style="{ color: scope.row['COD'].exceed ? 'red' : '' }">{{
  112. Number(scope.row['COD'].value.toFixed(2)) }}</span>
  113. </template>
  114. </el-table-column>
  115. <el-table-column label="TN(mg/L)">
  116. <template #default="scope">
  117. <span :style="{ color: scope.row['TN'].exceed ? 'red' : '' }">{{
  118. Number(scope.row['TN'].value.toFixed(2)) }}</span>
  119. </template>
  120. </el-table-column>
  121. <el-table-column label="NH3-N(mg/L)">
  122. <template #default="scope">
  123. <span :style="{ color: scope.row['NH3-N'].exceed ? 'red' : '' }">{{
  124. Number(scope.row['NH3-N'].value.toFixed(2)) }}</span>
  125. </template>
  126. </el-table-column>
  127. <el-table-column label="TP(mg/L)">
  128. <template #default="scope">
  129. <span :style="{ color: scope.row['TP'].exceed ? 'red' : '' }">{{
  130. Number(scope.row['TP'].value.toFixed(2)) }}</span>
  131. </template>
  132. </el-table-column>
  133. <el-table-column label="SS(mg/L)">
  134. <template #default="scope">
  135. <span :style="{ color: scope.row['SS'].exceed ? 'red' : '' }">{{
  136. Number(scope.row['SS'].value.toFixed(2)) }}</span>
  137. </template>
  138. </el-table-column>
  139. </el-table>
  140. </div>
  141. </div>
  142. <div class="warning-table">
  143. <div class="title">
  144. <span>当前出水数据:</span>
  145. </div>
  146. <div class="main">
  147. <el-table :data="csTableData" style="width: 100%" size="small">
  148. <el-table-column prop="流量" label="流量(m³/h)">
  149. <template #default="scope">
  150. <span :style="{ color: scope.row['流量'].exceed ? 'red' : '' }">{{
  151. Number(scope.row['流量'].value.toFixed(2)) }}</span>
  152. </template>
  153. </el-table-column>
  154. <el-table-column label="COD(mg/L)">
  155. <template #default="scope">
  156. <span :style="{ color: scope.row['COD'].exceed ? 'red' : '' }">{{
  157. Number(scope.row['COD'].value.toFixed(2)) }}</span>
  158. </template>
  159. </el-table-column>
  160. <el-table-column label="TN(mg/L)">
  161. <template #default="scope">
  162. <span :style="{ color: scope.row['TN'].exceed ? 'red' : '' }">{{
  163. Number(scope.row['TN'].value.toFixed(2)) }}</span>
  164. </template>
  165. </el-table-column>
  166. <el-table-column label="NH3-N(mg/L)">
  167. <template #default="scope">
  168. <span :style="{ color: scope.row['NH3-N'].exceed ? 'red' : '' }">{{
  169. Number(scope.row['NH3-N'].value.toFixed(2)) }}</span>
  170. </template>
  171. </el-table-column>
  172. <el-table-column label="TP(mg/L)">
  173. <template #default="scope">
  174. <span :style="{ color: scope.row['TP'].exceed ? 'red' : '' }">{{
  175. Number(scope.row['TP'].value.toFixed(2)) }}</span>
  176. </template>
  177. </el-table-column>
  178. <el-table-column label="SS(mg/L)">
  179. <template #default="scope">
  180. <span :style="{ color: scope.row['SS'].exceed ? 'red' : '' }">{{
  181. Number(scope.row['SS'].value.toFixed(2)) }}</span>
  182. </template>
  183. </el-table-column>
  184. </el-table>
  185. </div>
  186. </div>
  187. </div>
  188. </div>
  189. </ChatBaseCard>
  190. <section v-for="item, index in answerResult" :key="index">
  191. <template v-if="item.biz === 'DECISION_REPORT'">
  192. <ChatAnswer :loading="item.loading" :delay-loading="item.delayLoading" :toggleVisibleIcons="false" :content="item.answer"></ChatAnswer>
  193. </template>
  194. <template v-if="item.biz === 'DECISION_ALERT'">
  195. <ChatBaseCard :loading="item.loading" :delay-loading="item.delayLoading" :toggleVisibleIcons="false">
  196. <p class="mb-[15px] font-bold text-[#1A2029]">需要确定以下问题,完成决策方案:</p>
  197. <ul class="radio-wrapper space-y-[14px]">
  198. <li class="flex items-center" v-for="val, i in item.list" :key="i">
  199. <p class="mr-[14px]">{{ val.mainContent }}</p>
  200. <p class="radio-btn-group space-x-[14px]">
  201. <span v-for="option, index in val.options"
  202. :class="['radio-btn', { active: val.isActive === index }]"
  203. >{{ option }}</span>
  204. <!-- @click="358(item, val, index)" -->
  205. </p>
  206. </li>
  207. </ul>
  208. </ChatBaseCard>
  209. </template>
  210. <template v-if="item.biz === 'DECISION_SIMULATE'">
  211. <button class="
  212. px-[30px] py-[10px] mb-[20px]
  213. rounded-[8px]
  214. bg-white text-[13px]
  215. text-[#5E5E5E] hover:text-[#2454FF]" :disabled="item.isDisable" @click="handleModelVisible">
  216. 水质预测推演
  217. </button>
  218. </template>
  219. <template v-if="item.biz === 'DECISION_TABLE'">
  220. <ChatAnswer :loading="item.loading" :delay-loading="item.delayLoading" :toggleVisibleIcons="false">
  221. <div class="markdown-body text-[15px] break-all">
  222. <strong class="block mb-[16px]">推荐指标调整:</strong>
  223. <div class="custom-table-wrapper">
  224. <table>
  225. <thead>
  226. <tr>
  227. <th v-for="text in item.table.header" :key="text">{{ text }}</th>
  228. </tr>
  229. </thead>
  230. <tbody class="text-center">
  231. <tr>
  232. <td v-for="text in item.table.body" :key="text">{{ text }}</td>
  233. </tr>
  234. </tbody>
  235. </table>
  236. </div>
  237. <strong class="block mb-[16px]">预测推演结果:</strong>
  238. <span>以上指标达成后,预计三小时内{{ flowParams.category }}可以达到:{{ item.content }}</span>
  239. </div>
  240. </ChatAnswer>
  241. <button class="
  242. px-[30px] py-[10px] mb-[20px]
  243. rounded-[8px]
  244. bg-white text-[13px]
  245. text-[#5E5E5E] hover:text-[#2454FF]" :disabled="item.isDisable" @click="handleModelVisible">
  246. 水质预测推演
  247. </button>
  248. </template>
  249. </section>
  250. </el-scrollbar>
  251. </el-dialog>
  252. </div>
  253. </template>
  254. <script>
  255. import { listWarn, getWarn, delRecord } from "@/api/business/water";
  256. import { formatToData } from "@/utils/format";
  257. import { getRecord, addRecord, updateRecord } from "@/api/business/record";
  258. import { ChatAsk, ChatAnswer, ChatBaseCard } from "@/components/chat"
  259. export default {
  260. name: "Record",
  261. components: { ChatAsk, ChatAnswer, ChatBaseCard },
  262. data() {
  263. return {
  264. // 遮罩层
  265. loading: true,
  266. // 选中数组
  267. ids: [],
  268. // 非单个禁用
  269. single: true,
  270. // 非多个禁用
  271. multiple: true,
  272. // 显示搜索条件
  273. showSearch: true,
  274. // 总条数
  275. total: 0,
  276. // 信义大模型问答记录表格数据
  277. recordList: [],
  278. // 弹出层标题
  279. title: "",
  280. // 是否显示弹出层
  281. open: false,
  282. // 查询参数
  283. queryParams: {
  284. pageNum: 1,
  285. pageSize: 10,
  286. sessionId: null,
  287. type: null,
  288. module: null,
  289. userId: null,
  290. showVal: null,
  291. question: null,
  292. answer: null,
  293. warningId: null,
  294. counts: null,
  295. isStrong: null,
  296. isSatisfied: null,
  297. isShutdown: null,
  298. revision: null,
  299. },
  300. // 表单参数
  301. form: {},
  302. // 表单校验
  303. rules: {
  304. },
  305. warningStatus: [
  306. {
  307. val: 0,
  308. label: '报警中'
  309. },
  310. {
  311. val: 1,
  312. label: '历史报警'
  313. },
  314. ],
  315. recordVisible: false,
  316. textDataSources: [],
  317. jsTableData: [],
  318. csTableData: [],
  319. answerResult: []
  320. };
  321. },
  322. created() {
  323. this.getList();
  324. },
  325. methods: {
  326. // 查看详情
  327. handleRecordDetails({ row }) {
  328. getWarn(row.id).then(({ data }) => {
  329. const showVal = JSON.parse(data.showVal);
  330. const { basic, jsData, csData } = showVal;
  331. this.answerResult = [];
  332. try {
  333. const answer = JSON.parse(data.answer);
  334. const reportList = [];
  335. const alertList = [];
  336. let simulateObj = null;
  337. answer.map(item => {
  338. const answerObjItem = JSON.parse(item);
  339. switch (answerObjItem.biz) {
  340. case "DECISION_REPORT":
  341. reportList.push(answerObjItem.message);
  342. break
  343. case "DECISION_ALERT":
  344. alertList.push(answerObjItem);
  345. break
  346. case "DECISION_SIMULATE":
  347. if (row.status !== 0) return;
  348. const { off, on, pred } = JSON.parse(answerObjItem.message);
  349. simulateObj = {
  350. biz: 'DECISION_SIMULATE',
  351. off,
  352. on,
  353. pred,
  354. isDisable: false
  355. }
  356. modalData.value = simulateObj;
  357. }
  358. })
  359. if (reportList.length) {
  360. this.answerResult.push({
  361. biz: 'DECISION_REPORT',
  362. answer: reportList.join(""),
  363. loading: false,
  364. delayLoading: false
  365. })
  366. }
  367. if (alertList.length) {
  368. const [parseAnswer] = alertList.map(item => {
  369. item.message = Object.keys(item.message).map(key => ({ ...item.message[key], isActive: null }));
  370. return item;
  371. })
  372. this.answerResult.push({
  373. biz: 'DECISION_ALERT',
  374. loading: false,
  375. delayLoading: false,
  376. isAllSelect: false,
  377. list: parseAnswer?.message
  378. })
  379. }
  380. if (simulateObj) {
  381. this.answerResult.push(simulateObj);
  382. }
  383. } catch (error) {
  384. this.answerResult.push({
  385. biz: 'DECISION_REPORT',
  386. answer: data.answer,
  387. loading: false,
  388. delayLoading: false
  389. })
  390. console.log("error", error);
  391. }
  392. basic.title = row.title;
  393. this.jsTableData = [jsData]
  394. this.csTableData = [csData];
  395. this.textDataSources = formatToData(basic, '报警值');
  396. })
  397. this.recordVisible = true;
  398. },
  399. /** 查询信义大模型问答记录列表 */
  400. getList() {
  401. this.loading = true;
  402. const enumType = {
  403. '0': { color: 'tips_warning', label: '报警中' },
  404. '1': { color: 'tips_success', label: '用户关闭' },
  405. '2': { color: 'tips_close', label: '系统关闭' },
  406. '3': { color: 'tips_warning', label: '应急处理中' }
  407. }
  408. listWarn({ ...this.queryParams, type: 0 }).then(response => {
  409. this.recordList = response.rows.map(item => ({
  410. ...item,
  411. status: enumType[item.status].label
  412. }));
  413. this.total = response.total;
  414. this.loading = false;
  415. });
  416. },
  417. // 取消按钮
  418. cancel() {
  419. this.open = false;
  420. this.reset();
  421. },
  422. // 表单重置
  423. reset() {
  424. this.form = {
  425. id: null,
  426. sessionId: null,
  427. type: null,
  428. module: null,
  429. userId: null,
  430. showVal: null,
  431. question: null,
  432. answer: null,
  433. warningId: null,
  434. counts: null,
  435. isStrong: null,
  436. isSatisfied: null,
  437. isShutdown: null,
  438. delFlag: null,
  439. revision: null,
  440. createBy: null,
  441. createTime: null,
  442. updateBy: null,
  443. updateTime: null,
  444. remark: null
  445. };
  446. this.resetForm("form");
  447. },
  448. /** 搜索按钮操作 */
  449. handleQuery() {
  450. this.queryParams.pageNum = 1;
  451. this.getList();
  452. },
  453. /** 重置按钮操作 */
  454. resetQuery() {
  455. this.resetForm("queryForm");
  456. this.handleQuery();
  457. },
  458. // 多选框选中数据
  459. handleSelectionChange(selection) {
  460. this.ids = selection.map(item => item.id)
  461. this.single = selection.length !== 1
  462. this.multiple = !selection.length
  463. },
  464. /** 新增按钮操作 */
  465. handleAdd() {
  466. this.reset();
  467. this.open = true;
  468. this.title = "添加信义大模型问答记录";
  469. },
  470. /** 修改按钮操作 */
  471. handleUpdate(row) {
  472. this.reset();
  473. const id = row.id || this.ids
  474. getRecord(id).then(response => {
  475. this.form = response.data;
  476. this.open = true;
  477. this.title = "修改信义大模型问答记录";
  478. });
  479. },
  480. /** 提交按钮 */
  481. submitForm() {
  482. this.$refs["form"].validate(valid => {
  483. if (valid) {
  484. if (this.form.id != null) {
  485. updateRecord(this.form).then(response => {
  486. this.$modal.msgSuccess("修改成功");
  487. this.open = false;
  488. this.getList();
  489. });
  490. } else {
  491. addRecord(this.form).then(response => {
  492. this.$modal.msgSuccess("新增成功");
  493. this.open = false;
  494. this.getList();
  495. });
  496. }
  497. }
  498. });
  499. },
  500. /** 删除按钮操作 */
  501. handleDelete(row) {
  502. const ids = row.id || this.ids;
  503. this.$modal.confirm('是否确认删除该数据项?').then(function () {
  504. return delRecord(ids);
  505. }).then(() => {
  506. this.getList();
  507. this.$modal.msgSuccess("删除成功");
  508. }).catch(() => { });
  509. },
  510. /** 导出按钮操作 */
  511. handleExport() {
  512. this.download('business/record/export', {
  513. ...this.queryParams
  514. }, `record_${new Date().getTime()}.xlsx`)
  515. }
  516. }
  517. };
  518. </script>
  519. <style lang="scss" scoped>
  520. .waring-answer-wrapper {
  521. display: flex;
  522. justify-content: space-between;
  523. // align-items: flex-start;
  524. .message-inner {
  525. width: 210px;
  526. flex-shrink: 0;
  527. span {
  528. white-space: nowrap;
  529. }
  530. }
  531. .table-inner {
  532. width: 100%;
  533. padding-left: 20px;
  534. .warning-table {
  535. width: 100%;
  536. .title {
  537. margin-bottom: 8px;
  538. line-height: 16px;
  539. font-size: 12px;
  540. font-weight: bold;
  541. color: #1A2029;
  542. }
  543. }
  544. }
  545. }
  546. .radio-wrapper {
  547. .radio-btn-group {
  548. display: flex;
  549. align-items: center;
  550. justify-content: center;
  551. font-size: 14px;
  552. text-align: center;
  553. color: #5E5E5E;
  554. .radio-btn {
  555. width: 62px;
  556. height: 28px;
  557. border-radius: 4px;
  558. background: #F4F6F8;
  559. font-size: 14px;
  560. line-height: 26px;
  561. cursor: pointer;
  562. &.active,
  563. &:hover {
  564. color: #2454FF;
  565. background: #E2F1FF;
  566. }
  567. &.active {
  568. background: #E2F1FF url('@/assets/images/chat/bg-raido-check.png') right bottom no-repeat;
  569. }
  570. }
  571. }
  572. }
  573. </style>