custom.vue 8.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277
  1. <template>
  2. <el-row type="flex" justify="space-between">
  3. <div class="handle-box" style="margin-bottom: 10px">
  4. <el-button type="primary" icon="el-icon-lx-add" class="handle-edit mr10" @click="handleInsert">
  5. 新增记录
  6. </el-button>
  7. <el-button type="primary" icon="el-icon-lx-down" class="handle-edit mr10" @click="export2Excel">
  8. 批量导出</el-button>
  9. <el-button type="primary" icon="el-icon-lx-down" class="handle-edit mr10" @click="outExe">
  10. 模板下载</el-button>
  11. <el-upload class="handle-edit mr10" style=" display: inline;" action="/sharding/alertrule2/import"
  12. :headers="token" :show-file-list="false" :on-success="handleSuccess" :on-progress="handleProgress"
  13. :on-error="handleError">
  14. <el-button type="primary" icon="el-icon-lx-top" @click="exportShow = true">
  15. 批量导入</el-button>
  16. </el-upload>
  17. </div>
  18. <div style="display: flex; flex-direction: row; margin-bottom: 10px">
  19. <el-select v-if="!isStation" v-model="query.category" class="mr10" style="width: 150px" popper-class="select">
  20. <el-option key="1" label="风机" value="1"></el-option>
  21. <el-option key="2" label="电气" value="2"></el-option>
  22. </el-select>
  23. <el-select v-if="!isStation" v-model="query.station" clearable class="mr10" style="width: 150px"
  24. placeholder="全部场站" popper-class="select" @change="changeStation()">
  25. <el-option v-for="item in stationList" :key="item.id" :value="item.id" :label="item.name"></el-option>
  26. </el-select>
  27. <el-select v-model="query.modelId" clearable class="mr10" style="width: 150px" placeholder="全部机型"
  28. popper-class="select">
  29. <el-option v-for="item in state.modelList" :key="item" :value="item" :label="item"></el-option>
  30. </el-select>
  31. <el-select v-model="query.rank" clearable class="mr10" style="width: 150px" placeholder="全部级别"
  32. popper-class="select">
  33. <el-option v-for="item in state.rankList" :key="item.id" :value="item.id" :label="item.name"></el-option>
  34. </el-select>
  35. <el-input placeholder="请输入名称" v-model="query.name" style="width: 150px" class="mr10" clearable></el-input>
  36. <el-button icon="el-icon-search" type="primary" @click="getData">搜索</el-button>
  37. </div>
  38. </el-row>
  39. <el-table :data="state.tableData" border class="table" header-cell-name="table-header"
  40. :highlight-current-row="true">
  41. <el-table-column label="编码" align="center" prop="id" min-width="50" />
  42. <el-table-column label="场站" align="center" prop="windPowerStation.name" min-width="50" />
  43. <el-table-column label="机型" align="center" prop="modelId" min-width="50" />
  44. <el-table-column label="名称" align="left" prop="name" min-width="50" />
  45. <el-table-column label="表达式" align="left">
  46. <template #default="scope">
  47. {{ scope.row.expressionShow }}
  48. </template>
  49. </el-table-column>
  50. <el-table-column label="级别" align="center" prop="rank" min-width="20">
  51. <template #default="scope">{{ rankConvert(scope.row.rank) }}</template>
  52. </el-table-column>
  53. <el-table-column label="类型" align="center" prop="category" min-width="20">
  54. <template #default="scope">{{
  55. categoryConvert(scope.row.category)
  56. }}</template>
  57. </el-table-column>
  58. <el-table-column label="描述" align="left">
  59. <template #default="scope">
  60. {{ scope.row.descriptionShow }}
  61. </template>
  62. </el-table-column>
  63. <el-table-column label="是否启用" align="center" prop="enabled" min-width="20">
  64. <template #default="scope">
  65. {{ enabledConvert(scope.row.enabled) }}
  66. </template>
  67. </el-table-column>
  68. <el-table-column label="所属部件" align="center" prop="relatedParts" min-width="30">
  69. <template #default="scope">
  70. <span>{{ scope.row.datadictionary?.name }}</span>
  71. </template>
  72. </el-table-column>
  73. <el-table-column label="操作" align="center" width="100">
  74. <template #default="scope">
  75. <el-button type="primary" plain round size="mini" icon="el-icon-lx-edit"
  76. :disabled="notEdit || scope.row.range == 1" @click="handleEditClick(scope.row)">编辑</el-button>
  77. <!-- <el-button type="primary" plain round size="mini" icon="el-icon-search" @click="handleViewClick(scope.$index, scope.row)">查看</el-button> -->
  78. </template>
  79. </el-table-column>
  80. </el-table>
  81. <div class="pagination">
  82. <el-pagination background layout="total, prev, pager, next" hide-on-single-page :current-page="query.pagenum"
  83. :page-size="query.pagesize" :total="total" @current-change="handlePageChange"></el-pagination>
  84. </div>
  85. <customcomponents @close="dialogclose" :isVisible="state.visible" :form="state.form" />
  86. </template>
  87. <script setup>
  88. import { custombj_fetchTableData, getStationinfo } from "/@/api/api.js";
  89. import { outExportExcel } from "/@/utils/exportExcel"; //引入文件
  90. import { ref, onMounted, provide, computed, reactive, watch } from "vue";
  91. import { useStore } from "vuex";
  92. import { ElMessageBox, ElMessage } from "element-plus";
  93. import customcomponents from "./custom_components.vue";
  94. import { common } from "/@/composables/common";
  95. const { notEdit } = common();
  96. const token = { 'token': sessionStorage.getItem('token') }
  97. const store = useStore();
  98. const stationList = computed(() => store.state.stationList);
  99. const isStation = computed(() => store.getters.isStation);
  100. const state = reactive({
  101. tableData: [],
  102. modelList: [],
  103. rankList: [
  104. {
  105. id: 1,
  106. name: "低",
  107. },
  108. {
  109. id: 2,
  110. name: "中低",
  111. },
  112. {
  113. id: 3,
  114. name: "中",
  115. },
  116. {
  117. id: 4,
  118. name: "中高",
  119. },
  120. {
  121. id: 5,
  122. name: "高",
  123. },
  124. ],
  125. visible: false,
  126. form: {},
  127. });
  128. const query = reactive({
  129. pagenum: 1,
  130. pagesize: 10,
  131. name: "",
  132. station: "",
  133. rank: "",
  134. modelId: "",
  135. category: "1",
  136. });
  137. let total = ref(0);
  138. onMounted(() => {
  139. getData();
  140. getequipmentmodel_list()
  141. });
  142. const dialogclose = () => {
  143. state.visible = false
  144. getData()
  145. }
  146. const getData = async () => {
  147. const res = await custombj_fetchTableData(query);
  148. state.tableData = res.records;
  149. total.value = res.total;
  150. };
  151. const handleEditClick = (row) => {
  152. let obj = Object.assign({}, row)
  153. state.form = obj;
  154. state.visible = true;
  155. };
  156. const handleInsert = () => {
  157. state.visible = true;
  158. };
  159. //changeStation
  160. const changeStation = async () => {
  161. query.modelId = "";
  162. await getequipmentmodel_list();
  163. };
  164. // 机型
  165. const getequipmentmodel_list = async () => {
  166. const { data } = await getStationinfo(query.station);
  167. if (query.station == '') {
  168. let arr = []
  169. data.forEach(e => {
  170. arr.push(...e.modelList)
  171. });
  172. state.modelList = [...new Set(arr)]
  173. } else {
  174. state.modelList = data[0].modelList;
  175. }
  176. };
  177. // 分页导航
  178. const handlePageChange = (val) => {
  179. query.pagenum = val;
  180. getData();
  181. };
  182. const tableHeader = [
  183. "id",
  184. "规则名称",
  185. "报警类别(1:风气;2:电气)",
  186. "报警级别(1:低;2:中低;3:中;4:中高;5:高)",
  187. "是否启用(0:停用;1:启用)",
  188. "风场",
  189. "风机类型",
  190. "所属部件",
  191. "表达式",
  192. "规则描述",
  193. ];
  194. const tableKey = [
  195. "id",
  196. "name",
  197. "category",
  198. "rank",
  199. "enabled",
  200. "station",
  201. "modelId",
  202. "relatedParts",
  203. "expressionShow",
  204. "descriptionShow",
  205. ];
  206. // 批量导出
  207. const export2Excel = async () => {
  208. let { name, station, rank, modelId, category } = query;
  209. const res = await custombj_fetchTableData({
  210. pagenum: 1,
  211. pagesize: 999999,
  212. name,
  213. station,
  214. rank,
  215. modelId,
  216. category,
  217. });
  218. ElMessage.success(`导出成功!`);
  219. outExportExcel(tableHeader, tableKey, res.records, "自定义预警配置导出excel");
  220. };
  221. // 模板下载
  222. const outExe = () => {
  223. const data = [];
  224. ElMessage.success(`导出成功!`);
  225. outExportExcel(tableHeader, tableKey, data, "自定义报警模板");
  226. };
  227. // 批量导入
  228. const handleSuccess = (response, file, fileList) => {
  229. ElMessage.success("导入成功!");
  230. getData();
  231. };
  232. const handleProgress = (response, file, fileList) => { };
  233. const handleError = (response, file, fileList) => {
  234. ElMessage.success("导入失败!");
  235. };
  236. const rankConvert = (val) => {
  237. if (val === "1") {
  238. return "低";
  239. } else if (val === "2") {
  240. return "中低";
  241. } else if (val === "3") {
  242. return "中";
  243. } else if (val === "4") {
  244. return "中高";
  245. } else if (val === "5") {
  246. return "高";
  247. }
  248. };
  249. // 类型
  250. const categoryConvert = (val) => {
  251. if (val === "1") {
  252. return "风机";
  253. } else if (val === "2") {
  254. return "电气";
  255. }
  256. };
  257. // 状态
  258. const enabledConvert = (val) => {
  259. if (val === 0) {
  260. return "停用";
  261. } else if (val === 1) {
  262. return "启用";
  263. }
  264. };
  265. </script>
  266. <style scoped>
  267. .mr10 {
  268. margin-right: 10px;
  269. }
  270. .el-button+.el-button {
  271. margin-left: 10px;
  272. }
  273. </style>