windturbine_components.vue 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483
  1. <template>
  2. <el-dialog
  3. v-model="isShow"
  4. width="800px"
  5. :before-close="dialogClose"
  6. @closed="resetOptions"
  7. >
  8. <el-form
  9. :model="dialogOptions"
  10. :rules="rules"
  11. label-width="120px"
  12. ref="formRef"
  13. inline
  14. >
  15. <el-form-item label="报警类别" prop="deviceType">
  16. <el-select
  17. v-model="dialogOptions.deviceType"
  18. filterable
  19. placeholder="请选择"
  20. @change="
  21. (res) => {
  22. dialogOptions.stationId = '';
  23. dialogOptions.characteristic =
  24. dialogOptions.deviceType == 'booststation'
  25. ? '报警'
  26. : '正常停机';
  27. checkRules();
  28. getWpList();
  29. }
  30. "
  31. >
  32. <el-option
  33. v-for="item in categoryArray"
  34. :key="item.id"
  35. :label="item.label"
  36. :value="item.id"
  37. />
  38. </el-select>
  39. </el-form-item>
  40. <el-form-item label="序列号">
  41. <el-input
  42. v-model="dialogOptions.id"
  43. placeholder="自动生成"
  44. clearable
  45. readonly
  46. />
  47. </el-form-item>
  48. <el-form-item label="场站" prop="stationId">
  49. <el-select
  50. v-model="dialogOptions.stationId"
  51. filterable
  52. placeholder="请选择"
  53. :disabled="!wpArray?.length"
  54. @change="
  55. (res) => {
  56. dialogOptions.modelId = '';
  57. getWtModel();
  58. }
  59. "
  60. >
  61. <el-option
  62. v-for="item in wpArray"
  63. :key="item.id"
  64. :label="item.aname"
  65. :value="item.id"
  66. />
  67. </el-select>
  68. </el-form-item>
  69. <el-form-item
  70. label="设备型号"
  71. prop="modelId"
  72. v-if="dialogOptions.deviceType !== 'booststation'"
  73. >
  74. <el-select
  75. v-model="dialogOptions.modelId"
  76. filterable
  77. placeholder="请选择"
  78. :disabled="!modelArray?.length"
  79. >
  80. <el-option
  81. v-for="item in modelArray"
  82. :key="item"
  83. :label="item"
  84. :value="item"
  85. />
  86. </el-select>
  87. </el-form-item>
  88. <el-form-item label="统一编码" prop="uniformCode">
  89. <el-input v-model="dialogOptions.uniformCode" clearable />
  90. </el-form-item>
  91. <el-form-item label="特性" prop="characteristic">
  92. <el-select
  93. v-model="dialogOptions.characteristic"
  94. filterable
  95. placeholder="请选择"
  96. >
  97. <el-option
  98. v-for="item in dialogOptions.deviceType == 'booststation'
  99. ? characteristicArray1
  100. : characteristicArray"
  101. :key="item"
  102. :label="item"
  103. :value="item"
  104. />
  105. </el-select>
  106. </el-form-item>
  107. <el-form-item label="故障编码">
  108. <el-input v-model="dialogOptions.nemCode" clearable />
  109. </el-form-item>
  110. <el-form-item label="描述" prop="description">
  111. <el-input
  112. v-model="dialogOptions.description"
  113. placeholder="请输入"
  114. clearable
  115. />
  116. </el-form-item>
  117. <el-form-item label="报警级别">
  118. <el-select v-model="dialogOptions.rank" filterable placeholder="请选择">
  119. <el-option
  120. v-for="item in levelArray"
  121. :key="item.id"
  122. :label="item.label"
  123. :value="item.id"
  124. />
  125. </el-select>
  126. </el-form-item>
  127. <el-form-item
  128. label="测点"
  129. prop="tagId"
  130. v-if="dialogOptions.deviceType === 'booststation'"
  131. >
  132. <el-select
  133. v-model="dialogOptions.tagId"
  134. filterable
  135. placeholder="请选择"
  136. >
  137. <el-option
  138. v-for="item in pointArray"
  139. :key="item.nemCode"
  140. :label="item.name"
  141. :value="item.nemCode"
  142. />
  143. </el-select>
  144. </el-form-item>
  145. <el-form-item
  146. label="关键部件"
  147. prop="components"
  148. v-if="dialogOptions.deviceType !== 'booststation'"
  149. >
  150. <el-select v-model="dialogOptions.components" filterable>
  151. <el-option-group
  152. v-for="group in associatedComponentsArray"
  153. :key="group.label"
  154. :label="group.label"
  155. >
  156. <el-option
  157. v-for="item in group.options"
  158. :key="item.nemCode"
  159. :label="item.name"
  160. :value="item.nemCode"
  161. />
  162. </el-option-group>
  163. </el-select>
  164. </el-form-item>
  165. <el-form-item label="是否启用">
  166. <el-radio-group v-model="dialogOptions.enable">
  167. <el-radio-button :label="true">是</el-radio-button>
  168. <el-radio-button :label="false">否</el-radio-button>
  169. </el-radio-group>
  170. </el-form-item>
  171. <el-form-item label="是否可复位">
  172. <el-radio-group v-model="dialogOptions.resetTable">
  173. <el-radio-button :label="true">是</el-radio-button>
  174. <el-radio-button :label="false">否</el-radio-button>
  175. </el-radio-group>
  176. </el-form-item>
  177. </el-form>
  178. <template #footer>
  179. <span class="dialog-footer">
  180. <el-button @click="cancle">取 消</el-button>
  181. <el-button type="primary" @click="checkData">确 定</el-button>
  182. </span>
  183. </template>
  184. </el-dialog>
  185. </template>
  186. <script>
  187. import {
  188. getWpList,
  189. getBpList,
  190. getWtModel,
  191. getPointList,
  192. fetchRelatePartAndAlarmType,
  193. saveAlarmconfiguration,
  194. } from "/@/api/api.js";
  195. export default {
  196. props: {
  197. isVisible: {
  198. type: Boolean,
  199. default: () => false,
  200. },
  201. form: {
  202. type: Object,
  203. default: () => {},
  204. },
  205. },
  206. data() {
  207. return {
  208. isShow: false,
  209. dialogOptions: {
  210. deviceType: "",
  211. id: "",
  212. stationId: "",
  213. modelId: "",
  214. uniformCode: "",
  215. nemCode: "",
  216. characteristic: "",
  217. description: "",
  218. rank: 1,
  219. tagId: "",
  220. components: "",
  221. enable: false,
  222. resetTable: false,
  223. },
  224. rules: {
  225. deviceType: [
  226. {
  227. required: true,
  228. message: "报警类型不可为空",
  229. trigger: "change",
  230. },
  231. ],
  232. stationId: [
  233. {
  234. required: true,
  235. message: "场站不可为空",
  236. trigger: "change",
  237. },
  238. ],
  239. modelId: [
  240. {
  241. required: true,
  242. message: "设备型号不可为空",
  243. trigger: "change",
  244. },
  245. ],
  246. uniformCode: [
  247. {
  248. required: true,
  249. message: "统一编码不可为空",
  250. trigger: "change",
  251. },
  252. ],
  253. characteristic: [
  254. {
  255. required: true,
  256. message: "统一编码不可为空",
  257. trigger: "change",
  258. },
  259. ],
  260. tagId: [
  261. {
  262. required: true,
  263. message: "测点不可为空",
  264. trigger: "change",
  265. },
  266. ],
  267. description: [
  268. {
  269. required: true,
  270. message: "描述不可为空",
  271. trigger: "change",
  272. },
  273. ],
  274. components: [
  275. {
  276. required: true,
  277. message: "部件不可为空",
  278. trigger: "change",
  279. },
  280. ],
  281. },
  282. categoryArray: [
  283. { id: "windturbine", label: "风机报警" },
  284. { id: "booststation", label: "升压站报警" },
  285. { id: "inverter", label: "光伏报警" },
  286. ],
  287. wpArray: [],
  288. modelArray: [],
  289. characteristicArray: [
  290. "安全链停机",
  291. "启动禁止",
  292. "报警",
  293. "手动停机",
  294. "安全停机",
  295. "禁止启动",
  296. "电网故障",
  297. "电网停机故障",
  298. "记录",
  299. "紧急停机",
  300. "变桨停机",
  301. "正常停机",
  302. "偏航停机",
  303. "报警记录",
  304. "日志",
  305. "正常停机故障",
  306. "电网故障停机",
  307. "快速停机",
  308. "总故障",
  309. ],
  310. characteristicArray1: ["动作", "事故", "报警"],
  311. levelArray: [
  312. { id: 1, label: "低级" },
  313. { id: 2, label: "低中级" },
  314. { id: 3, label: "中级" },
  315. { id: 4, label: "中高级" },
  316. { id: 5, label: "高级" },
  317. ],
  318. pointArray: [],
  319. associatedComponentsArray: [],
  320. };
  321. },
  322. created() {
  323. this.isShow = this.isVisible;
  324. this.dialogOptions = Object.assign(this.dialogOptions, this.form);
  325. this.checkRules();
  326. this.getWpList();
  327. this.getfetchRelatePart();
  328. },
  329. methods: {
  330. dialogClose(done) {
  331. this.$confirm("确认关闭?")
  332. .then(() => {
  333. done();
  334. })
  335. .catch(() => {});
  336. },
  337. cancle() {
  338. this.$confirm("确认关闭?")
  339. .then(() => {
  340. this.isShow = false;
  341. })
  342. .catch(() => {});
  343. },
  344. checkRules() {
  345. const isBp = this.dialogOptions.deviceType === "booststation";
  346. const isWt = this.dialogOptions.deviceType === "windturbine";
  347. const isInv = this.dialogOptions.deviceType === "inverter";
  348. this.rules.tagId.forEach((ele) => {
  349. ele.required = isBp;
  350. });
  351. this.rules.modelId.forEach((ele) => {
  352. ele.required = !isBp;
  353. });
  354. this.rules.components.forEach((ele) => {
  355. ele.required = isWt || isInv;
  356. });
  357. },
  358. getWpList() {
  359. if (
  360. this.dialogOptions.deviceType === "windturbine" ||
  361. this.dialogOptions.deviceType === "inverter"
  362. ) {
  363. getWpList(this.dialogOptions.deviceType).then((res) => {
  364. this.dialogOptions.stationId = res?.data?.[0]?.id || "";
  365. this.wpArray = res.data;
  366. this.getWtModel();
  367. });
  368. } else {
  369. getBpList().then((res) => {
  370. this.dialogOptions.stationId = res?.data?.[0]?.id || "";
  371. this.wpArray = res.data;
  372. this.getWtModel();
  373. });
  374. }
  375. },
  376. getWtModel() {
  377. getWtModel(this.dialogOptions.stationId).then((res) => {
  378. this.dialogOptions.modelId = res?.data?.[0] || "";
  379. this.modelArray = res.data;
  380. if (this.dialogOptions.deviceType === "booststation") {
  381. this.getPointList();
  382. }
  383. });
  384. },
  385. getPointList() {
  386. getPointList({
  387. subId: this.dialogOptions.stationId,
  388. }).then((res) => {
  389. this.pointArray = res.data.total;
  390. });
  391. },
  392. getfetchRelatePart() {
  393. fetchRelatePartAndAlarmType().then((res) => {
  394. const keyMap = {
  395. fjbj: "风机部件",
  396. gfbj: "光伏部件",
  397. };
  398. let associatedComponentsArray = [];
  399. for (let key in keyMap) {
  400. associatedComponentsArray.push({
  401. id: key,
  402. label: keyMap[key],
  403. options: res.data[key] || [],
  404. });
  405. }
  406. this.dialogOptions.components =
  407. associatedComponentsArray?.[0]?.options?.[0]?.nemCode || "";
  408. this.associatedComponentsArray = associatedComponentsArray;
  409. });
  410. },
  411. checkData() {
  412. this.$refs.formRef.validate((valid, fields) => {
  413. if (valid) {
  414. saveAlarmconfiguration(
  415. Object.assign(this.dialogOptions, {
  416. alarmType:
  417. this.dialogOptions.alarmType || this.dialogOptions.deviceType,
  418. })
  419. ).then((res) => {
  420. if (res.code === 200) {
  421. this.BASE.showMsg({
  422. type: "success",
  423. msg: "提交成功",
  424. });
  425. this.isShow = false;
  426. }
  427. });
  428. }
  429. });
  430. },
  431. resetOptions() {
  432. this.dialogOptions = {
  433. deviceType: "",
  434. id: "",
  435. stationId: "",
  436. modelId: "",
  437. uniformCode: "",
  438. characteristic:
  439. this.dialogOptions.deviceType == "booststation" ? "报警" : "正常停机",
  440. nemCode: "",
  441. description: "",
  442. rank: 1,
  443. tagId: "",
  444. components: "",
  445. enable: false,
  446. resetTable: false,
  447. };
  448. this.resetForm();
  449. },
  450. resetForm() {
  451. this.$refs.formRef.resetFields();
  452. },
  453. },
  454. watch: {
  455. isVisible(value) {
  456. this.isShow = value;
  457. },
  458. form(value) {
  459. this.dialogOptions = value;
  460. console.log(this.dialogOptions);
  461. this.checkRules();
  462. this.getWpList();
  463. },
  464. },
  465. };
  466. </script>