TitleBar.vue 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513
  1. /* 标题栏 */
  2. <template>
  3. <div class="title-bar" onselectstart="return false">
  4. <el-row>
  5. <el-col :span="2">
  6. <img
  7. class="logo"
  8. src="../assets/img/main_window/logo.png"
  9. sytle="align-items"
  10. />
  11. </el-col>
  12. <el-col :span="1">
  13. <div>
  14. <el-dialog
  15. title="用户登录"
  16. v-model="dialogVisible"
  17. width="21%"
  18. :before-close="handleClose"
  19. :show-close="false"
  20. >
  21. <el-form :model="form">
  22. <el-form-item :label="loginMessage"> </el-form-item>
  23. <el-form-item label="用户名:" :label-width="formLabelWidth">
  24. <el-input
  25. v-model="form.name"
  26. autocomplete="off"
  27. type="text"
  28. placeholder="用户名"
  29. style="width: 80%"
  30. ></el-input>
  31. </el-form-item>
  32. <el-form-item label="密&emsp;码:" :label-width="formLabelWidth">
  33. <el-input
  34. v-model="form.psd"
  35. autocomplete="off"
  36. type="text"
  37. placeholder="密&emsp;码"
  38. style="width: 80%"
  39. show-password
  40. ></el-input>
  41. </el-form-item>
  42. <el-form-item
  43. label="验证码:"
  44. :label-width="formLabelWidth"
  45. style="display: none"
  46. >
  47. <el-input
  48. v-model="form.name"
  49. autocomplete="off"
  50. type="text"
  51. placeholder="验证码"
  52. style="width: 80%"
  53. ><template #append
  54. ><img
  55. src="../../src\assets\logo.png"
  56. style="width: 50px; height: 20px" /></template
  57. ></el-input>
  58. </el-form-item>
  59. </el-form>
  60. <template #footer>
  61. <span class="dialog-footer">
  62. <el-button
  63. @click="dialogVisible = false"
  64. style="
  65. background-color: rgb(100, 100, 100);
  66. color: rgb(220, 220, 220);
  67. "
  68. >取 消</el-button
  69. >
  70. <el-button type="primary" @click="login">登 录</el-button>
  71. </span>
  72. </template>
  73. </el-dialog>
  74. </div>
  75. </el-col>
  76. <el-col :span="19">
  77. <!-- <el-popover
  78. placement="bottom"
  79. :width="1416"
  80. trigger="hover"
  81. :show-arrow="false"
  82. offset="0"
  83. >
  84. <template #reference> -->
  85. <div class="titleinfoall">
  86. <div class="titleinfo">
  87. <ul>
  88. <li>
  89. <TitleBarCard
  90. title="装机容量"
  91. unit="MW"
  92. :value="installedCapacity"
  93. ></TitleBarCard>
  94. </li>
  95. </ul>
  96. </div>
  97. <div class="titleinfo">
  98. <ul>
  99. <li>
  100. <TitleBarCard
  101. title="实时功率"
  102. unit="MW"
  103. :value="totalPower"
  104. ></TitleBarCard>
  105. </li>
  106. </ul>
  107. </div>
  108. <div class="titleinfo">
  109. <ul>
  110. <li>
  111. <TitleBarCard
  112. title="日发电量"
  113. unit="kWh"
  114. :value="dailyPowerGeneration"
  115. ></TitleBarCard>
  116. </li>
  117. </ul>
  118. </div>
  119. <div class="titleinfo">
  120. <ul>
  121. <li>
  122. <TitleBarCard
  123. title="上网电量"
  124. unit="kWh"
  125. :value="gridPower"
  126. ></TitleBarCard>
  127. </li>
  128. </ul>
  129. </div>
  130. <div class="titleinfo">
  131. <ul>
  132. <li>
  133. <TitleBarCard
  134. title="月发电量"
  135. unit="kWh"
  136. :value="monthlyPowerGeneration"
  137. ></TitleBarCard>
  138. </li>
  139. </ul>
  140. </div>
  141. <div class="titleinfo">
  142. <ul>
  143. <li>
  144. <TitleBarCard
  145. title="年发电量"
  146. unit="kWh"
  147. :value="annualPowerGeneration"
  148. ></TitleBarCard>
  149. </li>
  150. </ul>
  151. </div>
  152. <div class="titleinfo">
  153. <ul>
  154. <li>
  155. <TitleBarCard
  156. title="月利用小时"
  157. unit="小时"
  158. :value="monthlyUtilizationHours"
  159. ></TitleBarCard>
  160. </li>
  161. </ul>
  162. </div>
  163. <div class="titleinfo">
  164. <ul>
  165. <li>
  166. <TitleBarCard
  167. title="年利用小时"
  168. unit="小时"
  169. :value="annualUtilizationHours"
  170. ></TitleBarCard>
  171. </li>
  172. </ul>
  173. </div>
  174. </div>
  175. <!-- </template>
  176. <el-table
  177. :data="tableData"
  178. border
  179. border-color="rgb(36,36,36)"
  180. :header-cell-style="{
  181. background: 'Black',
  182. color: 'rgb(220,220,220)',
  183. 'border-bottom':'solid 1px rgb(36,36,36)',
  184. fontSize:'14px',
  185. 'padding-top':'7px',
  186. 'padding-bottom':'7px'
  187. }"
  188. :cell-style="{ background: 'Black', color: 'rgb(220,220,220)','border-bottom':'solid 1px rgb(36,36,36)',fontSize:'14px','padding-top':'5px','padding-bottom':'5px'}"
  189. >
  190. <el-table-column
  191. align="center"
  192. prop="station"
  193. label="站点"
  194. width="80px">
  195. </el-table-column>
  196. <el-table-column
  197. align="center"
  198. prop="date"
  199. label="运行指标"
  200. width="120px">
  201. <el-table-column
  202. align="center"
  203. prop="date"
  204. label="日发电量(万kwh)"
  205. width="135px">
  206. </el-table-column>
  207. <el-table-column
  208. align="center"
  209. prop="name"
  210. label="&ensp;平均风速(m/s)&ensp;日照强度(w/m²)"
  211. width="130px">
  212. </el-table-column>
  213. <el-table-column
  214. align="center"
  215. prop="address"
  216. label="实时功率(MW)"
  217. width="120px">
  218. </el-table-column>
  219. <el-table-column
  220. align="center"
  221. prop="name"
  222. label="AGC有功设定(MW)"
  223. width="150px">
  224. </el-table-column>
  225. <el-table-column
  226. align="center"
  227. prop="name"
  228. label="理论功率(MW)"
  229. width="120px">
  230. </el-table-column>
  231. <el-table-column
  232. align="center"
  233. prop="name"
  234. label="预测功率(MW)"
  235. width="120px">
  236. </el-table-column>
  237. </el-table-column>
  238. <el-table-column
  239. align="center"
  240. prop="date"
  241. label="发电设备状态汇总"
  242. width="80px">
  243. <el-table-column
  244. align="center"
  245. prop="date"
  246. label="接入"
  247. width="80px">
  248. </el-table-column>
  249. <el-table-column
  250. align="center"
  251. prop="name"
  252. label="运行"
  253. width="80px">
  254. </el-table-column>
  255. <el-table-column
  256. align="center"
  257. prop="address"
  258. label="待机"
  259. width="80px">
  260. </el-table-column>
  261. <el-table-column
  262. align="center"
  263. prop="name"
  264. label="维护"
  265. width="80px">
  266. </el-table-column>
  267. <el-table-column
  268. align="center"
  269. prop="name"
  270. label="故障"
  271. width="80px">
  272. </el-table-column>
  273. <el-table-column
  274. align="center"
  275. prop="name"
  276. label="限电"
  277. width="80px">
  278. </el-table-column>
  279. <el-table-column
  280. align="center"
  281. prop="name"
  282. label="离线"
  283. width="80px">
  284. </el-table-column>
  285. </el-table-column>
  286. </el-table>
  287. </el-popover> -->
  288. </el-col>
  289. <el-col :span="1">
  290. <el-popover placement="bottom" :width="150" trigger="hover" :show-arrow="false">
  291. <template #reference>
  292. <el-button @click="userClick" style="top: 10px; right: 70px; color: #ffffff; position: absolute;background-color:black;border:none;font-size:16px;">{{usreName}}</el-button>
  293. </template>
  294. <div style="background-color: #363636;">
  295. <!-- <el-button class="loginoption">编&emsp;辑</el-button>
  296. <br> -->
  297. <el-button v-if="!isLogin" class="loginoption" @click="userClick">登&emsp;录</el-button>
  298. <br v-if="!isLogin">
  299. <el-button v-if="isLogin" class="loginoption" @click="logout">注&emsp;销</el-button>
  300. </div>
  301. </el-popover>
  302. <!-- <div @click="userClick" style="top: 18px; right: 100px; color: #ffffff; position: absolute">{{usreName}}</div> -->
  303. <!-- <el-button
  304. v-popover:loginref
  305. type="text"
  306. @click="dialogVisible = true"
  307. style="top:9px;right: 85px;color: #ffffff;position: absolute;">管理员</el-button> -->
  308. </el-col>
  309. <el-col :span="1">
  310. <div style="margin-top: 7px; position: absolute; right: 10px">
  311. <button class="closeButton" v-on:click="mainClose">×</button>
  312. </div>
  313. </el-col>
  314. </el-row>
  315. </div>
  316. </template>
  317. <script>
  318. import TitleBarCard from "./area/mainwindow/TitleBarCard.vue";
  319. import BackgroundData from "../assets/script/BackgroundData";
  320. export default {
  321. name: "TitleBar",
  322. components: {
  323. TitleBarCard
  324. },
  325. data() {
  326. return {
  327. dialogVisible: false,
  328. dialogFormVisible: false,
  329. isLogin:false,
  330. form: {
  331. name: "",
  332. psd: "",
  333. },
  334. usreName: "未登录...",
  335. loginMessage: "", // 登录提示
  336. formLabelWidth: "120px",
  337. totalPower: 0, // 实时功率
  338. dailyPowerGeneration: 0, // 日发电量
  339. gridPower: 0, // 上网电量
  340. monthlyPowerGeneration: 0, // 月发电量
  341. annualPowerGeneration: 0, // 年发电量
  342. installedCapacity: 734, // 装机容量
  343. tableData: [{
  344. station:'麻黄山',
  345. }, {
  346. station:'牛首山',
  347. }, {
  348. station:'青山',
  349. }, {
  350. station:'石板泉',
  351. }, {
  352. station:'香山',
  353. }, {
  354. station:'风场汇总',
  355. }, {
  356. station:'大武口',
  357. }, {
  358. station:'平罗',
  359. }, {
  360. station:'宣和',
  361. }, {
  362. station:'马场湖',
  363. }, {
  364. station:'海子井',
  365. }, {
  366. station:'光伏汇总',
  367. }
  368. ]
  369. };
  370. },
  371. computed: {
  372. monthlyUtilizationHours: function () {
  373. // 月利用小时数
  374. return (
  375. (this.monthlyPowerGeneration * 10) /
  376. this.installedCapacity
  377. ).toFixed(2);
  378. },
  379. annualUtilizationHours: function () {
  380. // 年利用小时数
  381. return (
  382. (this.annualPowerGeneration * 10) /
  383. this.installedCapacity
  384. ).toFixed(2);
  385. },
  386. },
  387. created() {
  388. this.refreshTimer = setInterval(this.refreshData, 2000);
  389. },
  390. methods: {
  391. handleClose(done) {
  392. done();
  393. },
  394. mainClose() {
  395. const { remote } = require("electron");
  396. remote.getCurrentWindow().destroy();
  397. },
  398. refreshData() {
  399. // todo 计算发电量的时候没有考虑光伏的,后续完善
  400. var bd = BackgroundData.getInstance();
  401. var val = bd.TopPoint;
  402. for (var v in val) {
  403. var pt = val[v];
  404. if (pt.pointName == "TotalPower") {
  405. this.totalPower = pt.value.toFixed(2);
  406. } else if (pt.pointName == "DailyPowerGeneration") {
  407. this.dailyPowerGeneration = pt.value.toFixed(2);
  408. } else if (pt.pointName == "GridPower") {
  409. this.gridPower = pt.value.toFixed(2);
  410. } else if (pt.pointName == "MonthlyPowerGeneration") {
  411. this.monthlyPowerGeneration = pt.value.toFixed(2);
  412. } else if (pt.pointName == "AnnualPowerGeneration") {
  413. this.annualPowerGeneration = pt.value.toFixed(2);
  414. }
  415. }
  416. },
  417. /* 登录 */
  418. login() {
  419. var bd = BackgroundData.getInstance();
  420. this.loginMessage='正在登录...';
  421. bd.login(this.form.name,this.form.psd,this.onLoged);
  422. },
  423. onLoged(msg){
  424. if(!msg.data){
  425. this.loginMessage=msg;
  426. return;
  427. }
  428. var user = msg.data;
  429. if (!user.isValid) {
  430. this.loginMessage = user.message;
  431. return;
  432. }
  433. BackgroundData.getInstance().LoginUser = user;
  434. this.usreName = user.name;
  435. this.dialogVisible = false;
  436. this.loginMessage = "";
  437. this.form.name = this.form.psd = "";
  438. this.isLogin=true;
  439. },
  440. /* 用户点击 */
  441. userClick() {
  442. this.dialogVisible = true;
  443. },
  444. /* 用户注销 */
  445. logout(){
  446. BackgroundData.getInstance().LoginUser=null;
  447. this.usreName = '未登录...';
  448. this.isLogin=false;
  449. }
  450. },
  451. };
  452. </script>
  453. <style scoped>
  454. .loginoption{
  455. font-size:16px;
  456. width:150px;
  457. background-color: #292929;
  458. border:none;
  459. color:rgb(220,220,220);
  460. }
  461. .title-bar {
  462. height: 5vh;
  463. background-color: #000000;
  464. margin-top: 0;
  465. margin-right: 0;
  466. margin-left: 0;
  467. }
  468. .logo {
  469. position: relative;
  470. top: 32%;
  471. margin-left: 10px;
  472. }
  473. .titleinfo {
  474. background-color: rgb(20, 20, 20);
  475. height: auto;
  476. padding: 13px;
  477. border-radius: 6px;
  478. margin-top: 5px;
  479. margin-bottom: 5px;
  480. margin-left: -9px;
  481. }
  482. .closeButton {
  483. font-size: 30px;
  484. color: white;
  485. background: rgb(41, 41, 41);
  486. width: 44px;
  487. height: 44px;
  488. border-radius: 8px;
  489. border: none;
  490. }
  491. .titleinfoall{
  492. display: flex;;
  493. }
  494. </style>