TitleBar.vue 10.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370
  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="2.3">
  77. <div class="titleinfo">
  78. <ul>
  79. <li>
  80. <TitleBarCard
  81. title="装机容量"
  82. unit="MW"
  83. :value="installedCapacity"
  84. ></TitleBarCard>
  85. </li>
  86. </ul>
  87. </div>
  88. </el-col>
  89. <el-col :span="2.3">
  90. <div class="titleinfo">
  91. <ul>
  92. <li>
  93. <TitleBarCard
  94. title="实时功率"
  95. unit="MW"
  96. :value="totalPower"
  97. ></TitleBarCard>
  98. </li>
  99. </ul>
  100. </div>
  101. </el-col>
  102. <el-col :span="2.3">
  103. <div class="titleinfo">
  104. <ul>
  105. <li>
  106. <TitleBarCard
  107. title="日发电量"
  108. unit="kWh"
  109. :value="dailyPowerGeneration"
  110. ></TitleBarCard>
  111. </li>
  112. </ul>
  113. </div>
  114. </el-col>
  115. <el-col :span="2.3">
  116. <div class="titleinfo">
  117. <ul>
  118. <li>
  119. <TitleBarCard
  120. title="上网电量"
  121. unit="kWh"
  122. :value="gridPower"
  123. ></TitleBarCard>
  124. </li>
  125. </ul>
  126. </div>
  127. </el-col>
  128. <el-col :span="2.3">
  129. <div class="titleinfo">
  130. <ul>
  131. <li>
  132. <TitleBarCard
  133. title="月发电量"
  134. unit="kWh"
  135. :value="monthlyPowerGeneration"
  136. ></TitleBarCard>
  137. </li>
  138. </ul>
  139. </div>
  140. </el-col>
  141. <el-col :span="2.3">
  142. <div class="titleinfo">
  143. <ul>
  144. <li>
  145. <TitleBarCard
  146. title="年发电量"
  147. unit="kWh"
  148. :value="annualPowerGeneration"
  149. ></TitleBarCard>
  150. </li>
  151. </ul>
  152. </div>
  153. </el-col>
  154. <el-col :span="2.3">
  155. <div class="titleinfo">
  156. <ul>
  157. <li>
  158. <TitleBarCard
  159. title="月利用小时"
  160. unit="小时"
  161. :value="monthlyUtilizationHours"
  162. ></TitleBarCard>
  163. </li>
  164. </ul>
  165. </div>
  166. </el-col>
  167. <el-col :span="2.3">
  168. <div class="titleinfo">
  169. <ul>
  170. <li>
  171. <TitleBarCard
  172. title="年利用小时"
  173. unit="小时"
  174. :value="annualUtilizationHours"
  175. ></TitleBarCard>
  176. </li>
  177. </ul>
  178. </div>
  179. </el-col>
  180. <el-col :span="1.6">
  181. <el-popover placement="bottom" :width="150" trigger="hover" :show-arrow="false">
  182. <template #reference>
  183. <el-button @click="userClick" style="top: 10px; right: 76px; color: #ffffff; position: absolute;background-color:black;border:none;font-size:16px;">{{usreName}}</el-button>
  184. </template>
  185. <div style="background-color: #363636;">
  186. <!-- <el-button class="loginoption">编&emsp;辑</el-button>
  187. <br> -->
  188. <el-button v-if="!isLogin" class="loginoption" @click="userClick">登&emsp;录</el-button>
  189. <br v-if="!isLogin">
  190. <el-button v-if="isLogin" class="loginoption" @click="logout">注&emsp;销</el-button>
  191. </div>
  192. </el-popover>
  193. <!-- <div @click="userClick" style="top: 18px; right: 100px; color: #ffffff; position: absolute">{{usreName}}</div> -->
  194. <!-- <el-button
  195. v-popover:loginref
  196. type="text"
  197. @click="dialogVisible = true"
  198. style="top:9px;right: 85px;color: #ffffff;position: absolute;">管理员</el-button> -->
  199. </el-col>
  200. <el-col :span="1">
  201. <div style="margin-top: 7px; position: absolute; right: 10px">
  202. <button class="closeButton" v-on:click="mainClose">×</button>
  203. </div>
  204. </el-col>
  205. </el-row>
  206. </div>
  207. </template>
  208. <script>
  209. import TitleBarCard from "./area/mainwindow/TitleBarCard.vue";
  210. import BackgroundData from "../assets/script/BackgroundData";
  211. export default {
  212. name: "TitleBar",
  213. components: {
  214. TitleBarCard,
  215. },
  216. data() {
  217. return {
  218. dialogVisible: false,
  219. dialogFormVisible: false,
  220. isLogin:false,
  221. form: {
  222. name: "",
  223. psd: "",
  224. },
  225. usreName: "未登录...",
  226. loginMessage: "", // 登录提示
  227. formLabelWidth: "120px",
  228. totalPower: 0, // 实时功率
  229. dailyPowerGeneration: 0, // 日发电量
  230. gridPower: 0, // 上网电量
  231. monthlyPowerGeneration: 0, // 月发电量
  232. annualPowerGeneration: 0, // 年发电量
  233. installedCapacity: 734, // 装机容量
  234. };
  235. },
  236. computed: {
  237. monthlyUtilizationHours: function () {
  238. // 月利用小时数
  239. return (
  240. (this.monthlyPowerGeneration * 10) /
  241. this.installedCapacity
  242. ).toFixed(2);
  243. },
  244. annualUtilizationHours: function () {
  245. // 年利用小时数
  246. return (
  247. (this.annualPowerGeneration * 10) /
  248. this.installedCapacity
  249. ).toFixed(2);
  250. },
  251. },
  252. created() {
  253. this.refreshTimer = setInterval(this.refreshData, 2000);
  254. },
  255. methods: {
  256. handleClose(done) {
  257. done();
  258. },
  259. mainClose() {
  260. const { remote } = require("electron");
  261. remote.getCurrentWindow().destroy();
  262. },
  263. refreshData() {
  264. // todo 计算发电量的时候没有考虑光伏的,后续完善
  265. var bd = BackgroundData.getInstance();
  266. var val = bd.TopPoint;
  267. for (var v in val) {
  268. var pt = val[v];
  269. if (pt.pointName == "TotalPower") {
  270. this.totalPower = pt.value.toFixed(2);
  271. } else if (pt.pointName == "DailyPowerGeneration") {
  272. this.dailyPowerGeneration = pt.value.toFixed(2);
  273. } else if (pt.pointName == "GridPower") {
  274. this.gridPower = pt.value.toFixed(2);
  275. } else if (pt.pointName == "MonthlyPowerGeneration") {
  276. this.monthlyPowerGeneration = pt.value.toFixed(2);
  277. } else if (pt.pointName == "AnnualPowerGeneration") {
  278. this.annualPowerGeneration = pt.value.toFixed(2);
  279. }
  280. }
  281. },
  282. /* 登录 */
  283. login() {
  284. var bd = BackgroundData.getInstance();
  285. this.loginMessage='正在登录...';
  286. bd.login(this.form.name,this.form.psd,this.onLoged);
  287. },
  288. onLoged(msg){
  289. if(!msg.data){
  290. this.loginMessage=msg;
  291. return;
  292. }
  293. var user = msg.data;
  294. if (!user.isValid) {
  295. this.loginMessage = user.message;
  296. return;
  297. }
  298. BackgroundData.getInstance().LoginUser = user;
  299. this.usreName = user.name;
  300. this.dialogVisible = false;
  301. this.loginMessage = "";
  302. this.form.name = this.form.psd = "";
  303. this.isLogin=true;
  304. },
  305. /* 用户点击 */
  306. userClick() {
  307. this.dialogVisible = true;
  308. },
  309. /* 用户注销 */
  310. logout(){
  311. BackgroundData.getInstance().LoginUser=null;
  312. this.usreName = '未登录...';
  313. this.isLogin=false;
  314. }
  315. },
  316. };
  317. </script>
  318. <style scoped>
  319. .loginoption{
  320. font-size:16px;
  321. width:150px;
  322. background-color: #292929;
  323. border:none;
  324. color:rgb(220,220,220);
  325. }
  326. .title-bar {
  327. height: 5vh;
  328. background-color: #000000;
  329. margin-top: 0;
  330. margin-right: 0;
  331. margin-left: 0;
  332. }
  333. .logo {
  334. position: relative;
  335. top: 33%;
  336. margin-left: 10px;
  337. }
  338. .titleinfo {
  339. background-color: rgb(20, 20, 20);
  340. height: auto;
  341. padding: 13px;
  342. border-radius: 6px;
  343. margin-top: 5px;
  344. margin-bottom: 5px;
  345. margin-left: -9px;
  346. }
  347. .closeButton {
  348. font-size: 30px;
  349. color: white;
  350. background: rgb(41, 41, 41);
  351. width: 44px;
  352. height: 44px;
  353. border-radius: 8px;
  354. border: none;
  355. }
  356. </style>