index.vue 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475
  1. <template>
  2. <div class="app-container">
  3. <el-form
  4. :model="queryParams"
  5. ref="queryForm"
  6. size="small"
  7. :inline="true"
  8. v-show="showSearch"
  9. label-width="68px"
  10. >
  11. <el-form-item label="数据类型" prop="type">
  12. <el-select
  13. v-model="queryParams.type"
  14. placeholder="请选择数据类型"
  15. clearable
  16. filterable
  17. >
  18. <el-option
  19. v-for="dict in typeList"
  20. :key="dict.value + 'typeList'"
  21. :label="dict.label"
  22. :value="dict.value"
  23. />
  24. </el-select>
  25. </el-form-item>
  26. <el-form-item label="状态" prop="status">
  27. <el-select
  28. v-model="queryParams.status"
  29. placeholder="请选择状态"
  30. clearable
  31. filterable
  32. >
  33. <el-option
  34. v-for="dict in statusList"
  35. :key="dict.value + 'statusList'"
  36. :label="dict.label"
  37. :value="dict.value"
  38. />
  39. </el-select>
  40. </el-form-item>
  41. <el-form-item>
  42. <el-button
  43. type="primary"
  44. icon="el-icon-search"
  45. size="mini"
  46. @click="handleQuery"
  47. >搜索</el-button
  48. >
  49. <el-button icon="el-icon-refresh" size="mini" @click="resetQuery"
  50. >重置</el-button
  51. >
  52. </el-form-item>
  53. </el-form>
  54. <el-row :gutter="10" class="mb8">
  55. <right-toolbar
  56. :showSearch.sync="showSearch"
  57. @queryTable="getList"
  58. ></right-toolbar>
  59. </el-row>
  60. <el-table
  61. :data="GATHERWARNINGList"
  62. @selection-change="handleSelectionChange"
  63. >
  64. <!-- <el-table-column type="selection" width="55" align="center" /> -->
  65. <el-table-column label="数据类型" align="center" prop="type">
  66. <template slot-scope="scope">
  67. <span v-if="scope.row.type == 0">量化指标数据</span>
  68. <span v-else-if="scope.row.type == 1">月报表数据</span>
  69. </template>
  70. </el-table-column>
  71. <el-table-column label="指标名称" align="center" prop="gatherFeeName">
  72. <template slot-scope="scope">
  73. {{ scope.row.gatherFeeName }}
  74. </template>
  75. </el-table-column>
  76. <el-table-column label="采集参考值" align="center" prop="gatherFeeName">
  77. <template slot-scope="scope">
  78. <span v-if="scope.row.collValue">{{ scope.row.collValue }}</span>
  79. <span v-else>无</span>
  80. </template>
  81. </el-table-column>
  82. <el-table-column label="实际值" align="center" prop="errValue">
  83. <template slot-scope="scope">
  84. {{ scope.row.errValue }}
  85. </template>
  86. </el-table-column>
  87. <el-table-column label="处置人" align="center" prop="dealBy">
  88. <template slot-scope="scope">
  89. {{ scope.row.dealBy }}
  90. </template>
  91. </el-table-column>
  92. <el-table-column label="处置时间" align="center" prop="dealTime">
  93. <template slot-scope="scope">
  94. {{ scope.row.dealTime }}
  95. </template>
  96. </el-table-column>
  97. <el-table-column label="状态" align="center" prop="cancelBy">
  98. <template slot-scope="scope">
  99. <el-tag v-if="scope.row.status == 0" type="danger">预警</el-tag>
  100. <el-tag v-else-if="scope.row.status == 1" type="success">已解除</el-tag>
  101. <el-tag v-else-if="scope.row.status == 2" type="info">已取消</el-tag>
  102. </template>
  103. </el-table-column>
  104. <el-table-column label="取消人" align="center" prop="cancelBy">
  105. <template slot-scope="scope">
  106. {{ scope.row.cancelBy }}
  107. </template>
  108. </el-table-column>
  109. <el-table-column label="取消时间" align="center" prop="cancelTime">
  110. <template slot-scope="scope">
  111. {{ scope.row.cancelTime }}
  112. </template>
  113. </el-table-column>
  114. <el-table-column label="备注" align="center" prop="remark">
  115. <template slot-scope="scope">
  116. {{ scope.row.remark }}
  117. </template>
  118. </el-table-column>
  119. <el-table-column
  120. label="操作"
  121. align="center"
  122. class-name="small-padding fixed-width"
  123. >
  124. <!-- 状态是“已解除”时不显示 -->
  125. <template slot-scope="scope" v-if="scope.row.status != '1'">
  126. <el-button
  127. size="mini"
  128. type="text"
  129. @click="handleUpdate(scope.row)"
  130. v-hasPermi="['business:GATHERWARNING:edit']"
  131. >处理</el-button
  132. >
  133. <el-popconfirm
  134. title="确定取消吗?"
  135. @confirm="handleCancel(scope.row)"
  136. >
  137. <el-button
  138. style="margin-left: 5px;"
  139. size="mini"
  140. type="text"
  141. slot="reference"
  142. v-hasPermi="['business:GATHERWARNING:remove']"
  143. >取消</el-button
  144. >
  145. </el-popconfirm>
  146. </template>
  147. <!-- <template slot-scope="scope" v-if="scope.row.status != '1'">-->
  148. <!-- <el-popconfirm title="确定处理吗?" @confirm="handleDeal(scope.row)">-->
  149. <!-- <el-button-->
  150. <!-- size="mini"-->
  151. <!-- type="text"-->
  152. <!-- slot="reference"-->
  153. <!-- v-hasPermi="['business:GATHERWARNING:edit']"-->
  154. <!-- >处理</el-button-->
  155. <!-- >-->
  156. <!-- </el-popconfirm>-->
  157. <!-- <el-popconfirm-->
  158. <!-- title="确定取消吗?"-->
  159. <!-- @confirm="handleCancel(scope.row)"-->
  160. <!-- >-->
  161. <!-- <el-button-->
  162. <!-- style="margin-left: 5px;"-->
  163. <!-- size="mini"-->
  164. <!-- type="text"-->
  165. <!-- slot="reference"-->
  166. <!-- v-hasPermi="['business:GATHERWARNING:remove']"-->
  167. <!-- >取消</el-button-->
  168. <!-- >-->
  169. <!-- </el-popconfirm>-->
  170. <!-- </template>-->
  171. </el-table-column>
  172. </el-table>
  173. <pagination
  174. v-show="total > 0"
  175. :total="total"
  176. :page.sync="queryParams.pageNum"
  177. :limit.sync="queryParams.pageSize"
  178. @pagination="getList"
  179. />
  180. <!-- 添加或修改数据采集预警对话框 -->
  181. <el-dialog :title="title" :visible.sync="open" width="500px" append-to-body>
  182. <el-form ref="form" :model="form" :rules="rules" label-width="150px">
  183. <!-- <el-form-item label="数据类型(0=量化指标数据,1=月报表数据)" prop="type">-->
  184. <!-- <el-select v-model="form.type" placeholder="请选择数据类型(0=量化指标数据,1=月报表数据)" filterable>-->
  185. <!-- <el-option-->
  186. <!-- v-for="dict in dict.type.${dictType}"-->
  187. <!-- :key="dict.value"-->
  188. <!-- :label="dict.label"-->
  189. <!--:value="dict.value"-->
  190. <!-- ></el-option>-->
  191. <!-- </el-select>-->
  192. <!-- </el-form-item>-->
  193. <el-form-item label="数据类型">
  194. <template slot-scope="scope">
  195. <span v-if="form.type == 0">量化指标数据</span>
  196. <span v-else-if="form.type == 1">月报表数据</span>
  197. </template>
  198. </el-form-item>
  199. <el-form-item label="异常数据名称">
  200. {{form.gatherFeeName}}
  201. </el-form-item>
  202. <el-form-item label="采集参考值">
  203. <template slot-scope="scope">
  204. <span v-if="form.collValue">{{ form.collValue }}</span>
  205. <span v-else>无</span>
  206. </template>
  207. </el-form-item>
  208. <el-form-item label="实际值" prop="errValue">
  209. <el-input v-model="form.errValue" type="number"></el-input>
  210. </el-form-item>
  211. </el-form>
  212. <div slot="footer" class="dialog-footer">
  213. <el-button type="primary" @click="submitForm">确 定</el-button>
  214. <el-button @click="cancel">取 消</el-button>
  215. </div>
  216. </el-dialog>
  217. </div>
  218. </template>
  219. <script>
  220. import {
  221. listGATHERWARNING,
  222. getGATHERWARNING,
  223. delGATHERWARNING,
  224. addGATHERWARNING,
  225. updateGATHERWARNING,
  226. deal,
  227. cancel,
  228. } from "@/api/portal/GATHERWARNING/GATHERWARNING.js";
  229. export default {
  230. name: "GATHERWARNING",
  231. data() {
  232. return {
  233. typeList: [
  234. { label: "量化指标数据", value: "0" },
  235. { label: "月报表数据", value: "1" },
  236. ],
  237. //状态(0=预警,1=已解除,2已取消)
  238. statusList: [
  239. { label: "预警", value: "0" },
  240. { label: "已解除", value: "1" },
  241. { label: "已取消", value: "2" },
  242. ],
  243. // 根路径
  244. baseURL: process.env.VUE_APP_BASE_API,
  245. // 遮罩层
  246. loading: true,
  247. // 选中数组
  248. ids: [],
  249. // 非单个禁用
  250. single: true,
  251. // 非多个禁用
  252. multiple: true,
  253. // 显示搜索条件
  254. showSearch: true,
  255. // 总条数
  256. total: 0,
  257. // 数据采集预警表格数据
  258. GATHERWARNINGList: [],
  259. // 弹出层标题
  260. title: "",
  261. // 是否显示弹出层
  262. open: false,
  263. // 查询参数
  264. queryParams: {
  265. pageNum: 1,
  266. pageSize: 10,
  267. id: null,
  268. createTime: null,
  269. createBy: null,
  270. updateTime: null,
  271. updateBy: null,
  272. delFlag: null,
  273. deptId: null,
  274. type: null,
  275. getherId: null,
  276. getherfeeId: null,
  277. errValue: null,
  278. dealBy: null,
  279. dealTime: null,
  280. cancelBy: null,
  281. cancelTime: null,
  282. remark: null,
  283. },
  284. // 表单参数
  285. form: {},
  286. // 表单校验
  287. rules: {
  288. id: [{ required: true, message: "$comment不能为空", trigger: "blur" }],
  289. delFlag: [
  290. { required: true, message: "删除标识不能为空", trigger: "blur" },
  291. ],
  292. deptId: [
  293. { required: true, message: "部门id不能为空", trigger: "blur" },
  294. ],
  295. type: [
  296. {
  297. required: true,
  298. message: "数据类型(0=量化指标数据,1=月报表数据)不能为空",
  299. trigger: "change",
  300. },
  301. ],
  302. getherId: [
  303. { required: true, message: "异常数据id不能为空", trigger: "blur" },
  304. ],
  305. getherfeeId: [
  306. {
  307. required: true,
  308. message: "异常详细数据id不能为空",
  309. trigger: "blur",
  310. },
  311. ],
  312. errValue: [
  313. {
  314. required: true,
  315. message: "异常详细数据值不能为空",
  316. trigger: "blur",
  317. },
  318. ],
  319. dealBy: [
  320. { required: true, message: "处置人不能为空", trigger: "blur" },
  321. ],
  322. dealTime: [
  323. { required: true, message: "处置时间不能为空", trigger: "blur" },
  324. ],
  325. cancelBy: [
  326. { required: true, message: "取消人不能为空", trigger: "blur" },
  327. ],
  328. cancelTime: [
  329. { required: true, message: "取消时间不能为空", trigger: "blur" },
  330. ],
  331. remark: [{ required: true, message: "备注不能为空", trigger: "blur" }],
  332. collValue:[{ required: true, message: "修改值不能为空", trigger: "blur" }],
  333. },
  334. };
  335. },
  336. created() {
  337. this.getList();
  338. },
  339. methods: {
  340. /** 查询数据采集预警列表 */
  341. getList() {
  342. this.loading = true;
  343. listGATHERWARNING(this.queryParams).then((response) => {
  344. this.GATHERWARNINGList = response.rows;
  345. this.total = response.total;
  346. this.loading = false;
  347. });
  348. },
  349. //处理预警
  350. handleDeal(row) {
  351. this.title = "处理预警";
  352. // 是否显示弹出层
  353. this.open = true;
  354. // deal(row.id).then((res) => {
  355. // this.$modal.msgSuccess("处理成功");
  356. // this.getList();
  357. // });
  358. },
  359. //取消预警
  360. handleCancel(row) {
  361. cancel(row.id).then((res) => {
  362. this.$modal.msgSuccess("取消成功");
  363. this.getList();
  364. });
  365. },
  366. // 取消按钮
  367. cancel() {
  368. this.open = false;
  369. this.reset();
  370. },
  371. // 表单重置
  372. reset() {
  373. this.form = {
  374. id: null,
  375. delFlag: null,
  376. deptId: null,
  377. type: null,
  378. getherId: null,
  379. getherfeeId: null,
  380. errValue: null,
  381. dealBy: null,
  382. dealTime: null,
  383. cancelBy: null,
  384. cancelTime: null,
  385. remark: null,
  386. };
  387. this.resetForm("form");
  388. },
  389. /** 搜索按钮操作 */
  390. handleQuery() {
  391. this.queryParams.pageNum = 1;
  392. this.getList();
  393. },
  394. /** 重置按钮操作 */
  395. resetQuery() {
  396. this.resetForm("queryForm");
  397. this.handleQuery();
  398. },
  399. // 多选框选中数据
  400. handleSelectionChange(selection) {
  401. this.ids = selection.map((item) => item.id);
  402. this.single = selection.length !== 1;
  403. this.multiple = !selection.length;
  404. },
  405. /** 新增按钮操作 */
  406. handleAdd() {
  407. this.reset();
  408. this.open = true;
  409. this.title = "添加数据采集预警";
  410. },
  411. /** 修改按钮操作 */
  412. handleUpdate(row) {
  413. const id = row.id || this.ids;
  414. getGATHERWARNING(id).then((response) => {
  415. this.form = response.data;
  416. this.open = true;
  417. this.title = "修改数据采集预警";
  418. });
  419. },
  420. /** 提交按钮 */
  421. submitForm() {
  422. this.$refs["form"].validate((valid) => {
  423. if (valid) {
  424. if (this.form.id != null) {
  425. deal(this.form.id).then((response) => {
  426. this.$modal.msgSuccess("处理成功");
  427. this.open = false;
  428. this.getList();
  429. });
  430. } else {
  431. addGATHERWARNING(this.form).then((response) => {
  432. this.$modal.msgSuccess("新增成功");
  433. this.open = false;
  434. this.getList();
  435. });
  436. }
  437. }
  438. });
  439. },
  440. /** 删除按钮操作 */
  441. handleDelete(row) {
  442. const ids = row.id || this.ids;
  443. this.$modal
  444. .confirm('是否确认删除数据采集预警编号为"' + ids + '"的数据项?')
  445. .then(function () {
  446. return delGATHERWARNING(ids);
  447. })
  448. .then(() => {
  449. this.getList();
  450. this.$modal.msgSuccess("删除成功");
  451. })
  452. .catch(() => {});
  453. },
  454. /** 导出按钮操作 */
  455. handleExport() {
  456. this.download(
  457. "business/GATHERWARNING/export",
  458. {
  459. ...this.queryParams,
  460. },
  461. `GATHERWARNING_${new Date().getTime()}.xlsx`
  462. );
  463. },
  464. },
  465. };
  466. </script>