maintain.vue 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531
  1. <template>
  2. <div>
  3. <div class="title-list">
  4. <div class="search">
  5. <div class="date" style="white-space: nowrap">风场:</div>
  6. <el-select class="inputs" v-model="selectValue" placeholder="请选择" @change="handleChange()">
  7. <el-option v-for="item in stationList" :key="item.aname" :label="item.aname" :value="item.id">
  8. </el-option>
  9. </el-select>
  10. </div>
  11. <div class="search">
  12. <div class="date" style="white-space: nowrap">机组:</div>
  13. <el-select class="inputs" clearable v-model="groupId" placeholder="请选择">
  14. <el-option v-for="item in groupList" :key="item.code" :label="item.code" :value="item.id">
  15. </el-option>
  16. </el-select>
  17. </div>
  18. <div class="query-item">
  19. <div class="lable" style="white-space: nowrap">开始日期:</div>
  20. <div class="search-input">
  21. <el-date-picker v-model="timeValue" type="datetimerange" range-separator="至"
  22. start-placeholder="开始日期" end-placeholder="结束日期">
  23. </el-date-picker>
  24. </div>
  25. </div>
  26. <div class="search">
  27. <div class="date" style="white-space: nowrap">内报/外报:</div>
  28. <el-select class="inputs" clearable v-model="nwb" placeholder="请选择">
  29. <el-option v-for="item in reportList" :key="item.id" :label="item.name" :value="item.id">
  30. </el-option>
  31. </el-select>
  32. </div>
  33. <div class="query-actions" style="white-space:nowrap">
  34. <button class="button" @click="getDatas">查询</button>
  35. <button class="button" @click="add">新增</button>
  36. <button class="button" @click="exportExcel">导出</button>
  37. </div>
  38. </div>
  39. <div>
  40. <el-table height="90vh" ref="multipleTable" empty-text="暂无数据" :data="tableList" stripe
  41. style="width: 100%; margin-bottom: 10px">
  42. <el-table-column prop="projectname" label="期次" align="center" width="220" sortable></el-table-column>
  43. <el-table-column label="场站名称" prop="wpname" align="center" sortable>
  44. </el-table-column>
  45. <el-table-column label="风机名称" prop="wtname" align="center" sortable>
  46. </el-table-column>
  47. <el-table-column label="开始时间" prop="showbegindate" align="center" sortable>
  48. </el-table-column>
  49. <el-table-column label="结束时间" prop="showenddate" align="center" sortable>
  50. </el-table-column>
  51. <el-table-column label="维护内容" prop="defecteliminating" align="center" sortable>
  52. </el-table-column>
  53. <el-table-column label="损失电量" prop="powerloss" align="center" sortable>
  54. </el-table-column>
  55. <el-table-column label="故障时长" prop="faultduration" align="center" sortable>
  56. </el-table-column>
  57. <el-table-column label="时长影响容量" prop="impactcapacity" align="center" sortable>
  58. </el-table-column>
  59. <el-table-column label="内报/外报" prop="type" align="center" sortable>
  60. </el-table-column>
  61. <el-table-column label="操作" align="center">
  62. <template #default="scope">
  63. <el-button type="text" style="color: #597ef7" @click="handleEdit(scope.row)">编辑</el-button>
  64. <el-button type="text" style="color: #b3bdc0" @click="handleDelete(scope.row)">删除</el-button>
  65. </template>
  66. </el-table-column>
  67. </el-table>
  68. </div>
  69. <el-dialog v-model="dialogVisible" title="逆变器详情" width="45%" top="10vh" :show-close="true">
  70. <div class="table-list">
  71. <div class="lists">
  72. <div class="rows">
  73. <div class="rows-name">开始时间:</div>
  74. <el-date-picker v-model="sendData.begindate" type="datetime" placeholder="选择开始时间">
  75. </el-date-picker>
  76. </div>
  77. <div class="rows">
  78. <div class="rows-name">结束时间:</div>
  79. <el-date-picker v-model="sendData.enddate" type="datetime" placeholder="选择结束时间">
  80. </el-date-picker>
  81. </div>
  82. </div>
  83. <div class="lists">
  84. <div class="rows">
  85. <div class="rows-name">维护内容:</div>
  86. <el-input type="textarea" class="rows-input" v-model="sendData.defecteliminating"
  87. placeholder="请输入维护内容"></el-input>
  88. </div>
  89. </div>
  90. <div class="lists" style="margin-bottom: 40px">
  91. <div class="rows">
  92. <div class="rows-name">损失电量:</div>
  93. <el-input class="rows-inputs" v-model="sendData.powerloss" placeholder="请输入损失电量"></el-input>
  94. </div>
  95. <div class="rows">
  96. <div class="rows-name">内报/外报:</div>
  97. <el-select class="inputs" clearable v-model="sendData.type" placeholder="请选择">
  98. <el-option v-for="item in typesList" :key="item.name" :label="item.name" :value="item.name">
  99. </el-option>
  100. </el-select>
  101. </div>
  102. </div>
  103. </div>
  104. <div class="submit">
  105. <el-button type="primary" plain @click="sunmit">提交</el-button>
  106. </div>
  107. </el-dialog>
  108. </div>
  109. </template>
  110. <script>
  111. import api from "api/index";
  112. import dayjs from "dayjs";
  113. import XLSX from "xlsx";
  114. export default {
  115. data() {
  116. return {
  117. timeValue: [],
  118. groupId: '',
  119. groupList: [
  120. ],
  121. stationList: [
  122. {
  123. "id":"WNS_FDC",
  124. "code":"WNS_FDC",
  125. "name":"太旗卧牛山风电场",
  126. "address":"太旗卧牛山风电场",
  127. "telephone":null,
  128. "capacity":148.5,
  129. "capacityunit":"MW",
  130. "quantity":99,
  131. "aname":"太旗卧牛山",
  132. "longitude":1000,
  133. "latitude":1000,
  134. "photo":null,
  135. "companyid":"1",
  136. "systemmanufact":null,
  137. "headfarm":null,
  138. "headfarmphone":null,
  139. "model":"UP77-1500/UP77-1500-1/UP77-1500-2",
  140. "ordernum":1,
  141. "altitude":1000,
  142. "height":null
  143. },
  144. {
  145. "id":"YY_FDC",
  146. "code":"YY_FDC",
  147. "name":"右玉高家堡风电场 ",
  148. "address":"右玉高家堡风电场 ",
  149. "telephone":null,
  150. "capacity":198,
  151. "capacityunit":"MW",
  152. "quantity":132,
  153. "aname":"右玉高家堡",
  154. "longitude":1000,
  155. "latitude":1000,
  156. "photo":null,
  157. "companyid":"1",
  158. "systemmanufact":null,
  159. "headfarm":null,
  160. "headfarmphone":null,
  161. "model":"UP82-1500/UP82-1500-1/UP86-1500/UP86-1500-1/UP86-1500-2/UP86-1500-3/UP86-1500-4/MY-1.5se",
  162. "ordernum":2,
  163. "altitude":1000,
  164. "height":null
  165. },
  166. {
  167. "id":"PL_FDC",
  168. "code":"PL_FDC",
  169. "name":"平鲁虎头山风电场 ",
  170. "address":"平鲁虎头山风电场 ",
  171. "telephone":null,
  172. "capacity":223.5,
  173. "capacityunit":"MW",
  174. "quantity":110,
  175. "aname":"平鲁虎头山",
  176. "longitude":1000,
  177. "latitude":1000,
  178. "photo":null,
  179. "companyid":"1",
  180. "systemmanufact":null,
  181. "headfarm":null,
  182. "headfarmphone":null,
  183. "model":"GW77-1500/GW82-1500/UP3000-120/GW109-2500",
  184. "ordernum":3,
  185. "altitude":1000,
  186. "height":null
  187. },
  188. ],
  189. defaultProps: {
  190. children: "data",
  191. label: 'code',
  192. value: 'id',
  193. },
  194. selectValue: '',
  195. typeList: [
  196. {
  197. name: '变频器',
  198. },
  199. {
  200. name: '发电机',
  201. },
  202. {
  203. name: '齿轮箱',
  204. },
  205. {
  206. name: '箱变',
  207. },
  208. {
  209. name: '偏航系统',
  210. },
  211. {
  212. name: '液压站',
  213. },
  214. {
  215. name: '电网',
  216. },
  217. {
  218. name: '风速风向',
  219. },
  220. {
  221. name: '主轴',
  222. },
  223. {
  224. name: '变桨系统',
  225. },
  226. {
  227. name: '安全链',
  228. },
  229. {
  230. name: '机舱柜',
  231. },
  232. {
  233. name: '塔底柜',
  234. },
  235. {
  236. name: '塔筒',
  237. },
  238. {
  239. name: '机舱',
  240. },
  241. {
  242. name: '其他',
  243. },
  244. ],
  245. tableList: [
  246. ],
  247. resultsList: [
  248. {
  249. name: '已处理'
  250. },
  251. {
  252. name: '未处理'
  253. }
  254. ],
  255. typesList: [
  256. {
  257. name: '内报'
  258. },
  259. {
  260. name: '外报'
  261. }
  262. ],
  263. nwb: '',
  264. reportList: [
  265. {
  266. id: '内报',
  267. name: '内报'
  268. },
  269. {
  270. id: '外报',
  271. name: '外报'
  272. }
  273. ],
  274. dialogVisible: false,
  275. sendData: {
  276. begindate: '',
  277. enddate: '',
  278. faultphenomenon: '',
  279. defecteliminating: '',
  280. processingresults: '',
  281. powerloss: '',
  282. type: '',
  283. },
  284. isEdit: false,
  285. };
  286. },
  287. created() {
  288. let date = new Date();
  289. this.timeValue[0] = new Date(new Date(new Date().toLocaleDateString()).getTime());
  290. this.timeValue[1] = date.getTime();
  291. this.getStation()
  292. },
  293. methods: {
  294. getStation() {
  295. api.getStation().then(res => {
  296. if (res.data) {
  297. let arr = [
  298. {
  299. id: "",
  300. aname: '全部',
  301. code: "",
  302. }
  303. ]
  304. this.stationList = [ ...arr , ...res.data.data]
  305. console.log(this.stationList);
  306. this.getGroupList(this.stationList[0].code)
  307. this.selectValue = this.stationList[0].id
  308. this.getDatas()
  309. }
  310. })
  311. },
  312. getGroupList(groupId) {
  313. api.getGroupList({
  314. wpid: groupId
  315. }).then(res => {
  316. this.groupList = res.data.data
  317. })
  318. },
  319. handleChange() {
  320. this.getGroupList(this.selectValue)
  321. },
  322. getDatas() {
  323. api.mainrecord({
  324. wpid: this.selectValue,
  325. wtid: this.groupId,
  326. begin: new Date(this.timeValue[0]).getTime(),
  327. end: new Date(this.timeValue[1]).getTime(),
  328. type: this.nwb
  329. }).then(res => {
  330. if (res.data) {
  331. res.data.data.forEach(item => {
  332. item.showbegindate = dayjs(item.begindate).format("YYYY-MM-DD HH:mm:ss")
  333. item.showenddate = dayjs(item.enddate).format("YYYY-MM-DD HH:mm:ss")
  334. })
  335. this.tableList = res.data.data
  336. }
  337. })
  338. },
  339. add() {
  340. if (this.groupId) {
  341. this.sendData = {
  342. begindate: '',
  343. enddate: '',
  344. defecteliminating: '',
  345. powerloss: '',
  346. type: '',
  347. }
  348. this.dialogVisible = true
  349. this.isEdit = false
  350. } else {
  351. this.$message({
  352. message: '请选择风机',
  353. type: 'warning'
  354. });
  355. }
  356. },
  357. sunmit() {
  358. if (this.isEdit) {
  359. this.sendData.begindate = new Date(this.sendData.begindate).getTime()
  360. this.sendData.enddate = new Date(this.sendData.enddate).getTime()
  361. let pairs = this.sendData
  362. api.mainrecordEdit(pairs).then(res => {
  363. if (res.data) {
  364. this.$message({
  365. type: 'success',
  366. message: '修改成功!'
  367. });
  368. this.dialogVisible = false
  369. this.getDatas()
  370. }
  371. })
  372. } else {
  373. this.sendData.wtid = this.groupId
  374. this.sendData.begindate = new Date(this.sendData.begindate).getTime()
  375. this.sendData.enddate = new Date(this.sendData.enddate).getTime()
  376. let pairs = this.sendData
  377. api.mainrecordAdd(pairs).then(res => {
  378. if (res.data) {
  379. this.$message({
  380. type: 'success',
  381. message: '添加成功!'
  382. });
  383. this.dialogVisible = false
  384. this.getDatas()
  385. }
  386. })
  387. }
  388. },
  389. handleEdit(val) {
  390. this.isEdit = true
  391. this.sendData = val
  392. this.dialogVisible = true
  393. },
  394. handleDelete(val) {
  395. this.$confirm('此操作将永久删除该数据, 是否继续?', '提示', {
  396. confirmButtonText: '确定',
  397. cancelButtonText: '取消',
  398. type: 'warning'
  399. }).then(() => {
  400. api.mainrecordDel({
  401. id: val.id
  402. }).then(res => {
  403. if (res.data) {
  404. this.$message({
  405. type: 'success',
  406. message: '删除成功!'
  407. });
  408. this.getDatas()
  409. }
  410. })
  411. }).catch(() => {
  412. this.$message({
  413. type: 'info',
  414. message: '已取消删除'
  415. });
  416. });
  417. },
  418. exportExcel() {
  419. // 数据源
  420. let data = [];
  421. this.tableList.forEach((item) => {
  422. let values = {
  423. 期次: item.projectname,
  424. 场站名称: item.wpname,
  425. 风机名称: item.wtname,
  426. 开始时间: item.showbegindate,
  427. 结束时间: item.showenddate,
  428. 维护内容: item.defecteliminating,
  429. 损失电量: item.powerloss,
  430. 故障时长: item.faultduration,
  431. 时长影响容量: item.impactcapacity,
  432. 内报外报: item.type,
  433. };
  434. data.push(values);
  435. });
  436. // 下载的路径
  437. let fileName = `维护录入.xlsx`;
  438. let filePath = fileName;
  439. // 新建workbook
  440. const wb = XLSX.utils.book_new();
  441. // 新建worksheet,并载入数据
  442. const ws = XLSX.utils.json_to_sheet(data);
  443. // 设置每列的列宽,10代表10个字符,注意中文占2个字符
  444. ws["!cols"] = [{ wch: 10 }, { wch: 10 }, { wch: 10 }, { wch: 25 }, { wch: 25 },];
  445. // 生成xlsx文件(workbook,worksheet数据,sheet命名)
  446. XLSX.utils.book_append_sheet(wb, ws, "Sheet1");
  447. // 写文件(workbook,xlsx文件路径+文件名)
  448. XLSX.writeFile(wb, filePath);
  449. },
  450. },
  451. }
  452. </script>
  453. <style lang="less" scoped>
  454. .title-list {
  455. display: flex;
  456. flex-direction: row;
  457. align-items: center;
  458. margin-top: 10px;
  459. .search {
  460. display: flex;
  461. flex-direction: row;
  462. align-items: center;
  463. margin-left: 30px;
  464. .date {
  465. margin-right: 20px;
  466. font-size: 18px;
  467. }
  468. }
  469. .query-item {
  470. display: flex;
  471. flex-direction: row;
  472. align-items: center;
  473. margin-left: 30px;
  474. .lable {
  475. margin-right: 20px;
  476. font-size: 18px;
  477. }
  478. }
  479. .button {
  480. width: 80px;
  481. height: 40px;
  482. margin-left: 30px;
  483. }
  484. }
  485. .table-list {
  486. min-height: 40vh;
  487. }
  488. .lists {
  489. width: 90%;
  490. display: flex;
  491. flex-direction: row;
  492. align-items: center;
  493. justify-content: space-between;
  494. margin: 0 5% 20px 5%;
  495. }
  496. .rows {
  497. display: flex;
  498. flex-direction: row;
  499. align-items: center;
  500. .rows-name {
  501. width: 100px;
  502. }
  503. .rows-input {
  504. width: 400px;
  505. }
  506. .rows-inputs {
  507. width: 220px;
  508. }
  509. }
  510. .submit {
  511. position: absolute;
  512. right: 20px;
  513. bottom: 20px;
  514. }
  515. </style>