index.vue 12 KB

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