index.vue 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803
  1. <template>
  2. <div class="history-warning">
  3. <div class="form-wrapper">
  4. <div class="search-wrapper">
  5. <div class="search-item">
  6. <span class="label">类型:</span>
  7. <div class="search-content">
  8. <el-select
  9. v-model="state.typeVal"
  10. clearable
  11. size="mini"
  12. placeholder="全部"
  13. popper-class="select"
  14. @change="
  15. () => {
  16. getStationList();
  17. typechange();
  18. }
  19. "
  20. >
  21. <el-option
  22. v-for="item in state.typeList"
  23. :key="item.value"
  24. :value="item.value"
  25. :label="item.label"
  26. >
  27. </el-option>
  28. </el-select>
  29. </div>
  30. </div>
  31. <div class="search-item">
  32. <span class="label">{{
  33. state.isshowwindturbineName ? "场站:" : "升压站:"
  34. }}</span>
  35. <div class="search-content">
  36. <el-select
  37. v-model="state.stationId"
  38. clearable
  39. size="mini"
  40. placeholder="全部"
  41. popper-class="select"
  42. @change="getWindturbineList"
  43. >
  44. <el-option
  45. v-for="item in stationList"
  46. :key="item.id"
  47. :value="item.id"
  48. :label="item.name"
  49. ></el-option>
  50. </el-select>
  51. </div>
  52. </div>
  53. <div class="search-item" v-if="state.isshowwindturbineName">
  54. <span class="label">机组:</span>
  55. <div class="search-content">
  56. <el-select
  57. v-model="state.deviceId"
  58. clearable
  59. size="mini"
  60. placeholder="全部"
  61. popper-class="select"
  62. >
  63. <el-option
  64. v-for="item in state.windturbineList"
  65. :key="item.id"
  66. :value="item.id"
  67. :label="item.name"
  68. >
  69. </el-option>
  70. </el-select>
  71. </div>
  72. </div>
  73. <div class="search-item" v-if="state.isshowwindturbineName">
  74. <span class="label">型号:</span>
  75. <div class="search-content">
  76. <el-select
  77. v-model="state.modelId"
  78. clearable
  79. size="mini"
  80. placeholder="全部"
  81. popper-class="select"
  82. >
  83. <el-option
  84. v-for="item in modelList"
  85. :key="item.id"
  86. :value="item.id"
  87. :label="item.name"
  88. >
  89. </el-option>
  90. </el-select>
  91. </div>
  92. </div>
  93. <div class="search-item" v-if="state.isshowwindturbineName">
  94. <span class="label">部件:</span>
  95. <div class="search-content">
  96. <el-select
  97. v-model="state.components"
  98. clearable
  99. size="mini"
  100. placeholder="全部"
  101. popper-class="select"
  102. >
  103. <el-option
  104. v-for="item in componentList"
  105. :key="item.id"
  106. :value="item.id"
  107. :label="item.name"
  108. >
  109. </el-option>
  110. </el-select>
  111. </div>
  112. </div>
  113. <div class="search-item">
  114. <span class="label">描述:</span>
  115. <div class="search-content"></div>
  116. <el-input
  117. v-model="state.description"
  118. placeholder="请输入..."
  119. size="mini"
  120. ></el-input>
  121. </div>
  122. <div class="search-item">
  123. <span class="label">日期:</span>
  124. <div class="search-content">
  125. <el-date-picker
  126. v-model="state.dateTime"
  127. size="mini"
  128. type="datetimerange"
  129. range-separator="-"
  130. format="YYYY-MM-DD HH:mm:ss"
  131. value-format="YYYY-MM-DD HH:mm:ss"
  132. start-placeholder="开始"
  133. end-placeholder="结束"
  134. popper-class="date-select"
  135. >
  136. </el-date-picker>
  137. </div>
  138. </div>
  139. </div>
  140. <div class="btns">
  141. <el-button class="buttons" round size="mini" @click="getAlarmHistoryt"
  142. >查询</el-button
  143. >
  144. <el-button
  145. size="mini"
  146. class="buttons"
  147. @click="export2Excel"
  148. round
  149. :disabled="state.tableData?.length == 0 ? true : false"
  150. >
  151. 导出</el-button
  152. >
  153. <el-button
  154. class="buttons"
  155. round
  156. size="mini"
  157. :disabled="!state.tableData?.length"
  158. @click="confirmItem(state.tableData)"
  159. >确认本页</el-button
  160. >
  161. </div>
  162. </div>
  163. <div class="table-wrapper">
  164. <div class="leftContent">
  165. <span>{{ pageTitle }}</span>
  166. </div>
  167. <el-table
  168. size="mini"
  169. :data="state.tableData"
  170. height="calc(100% - 35px - 55px)"
  171. style="width: 100%"
  172. stripe
  173. >
  174. <template v-if="state.isshowwindturbineName">
  175. <el-table-column
  176. v-for="item in state.tableHeader"
  177. :label="item.title"
  178. :prop="item.code"
  179. :key="item.code"
  180. :width="item.width || ''"
  181. show-overflow-tooltip
  182. :align="
  183. item.code == 'description' || item.code == 'faultCause'
  184. ? 'left'
  185. : 'center'
  186. "
  187. >
  188. <template #default="scope">
  189. <p :style="item.style && item.style(scope.row)">
  190. <span v-if="item.code == 'rank'">
  191. {{ tableFilter(scope.row.rank) }}
  192. </span>
  193. <span v-else-if="item.code == 'alarmtype'">
  194. {{ tableFilter(scope.row.alarmtype) }}
  195. </span>
  196. <span v-else-if="item.code == 'ts'">
  197. {{ formatTime(scope.row.ts) }}
  198. </span>
  199. <span
  200. :style="`color:${
  201. scope.row.confirmed ? '#05bb4c' : 'var(--el-color-danger)'
  202. }`"
  203. v-else-if="item.code == 'confirmed'"
  204. >
  205. {{ scope.row.confirmed ? "是" : "否" }}
  206. </span>
  207. <span v-else>
  208. {{
  209. scope.row[item.code] != "NULL" ? scope.row[item.code] : "--"
  210. }}
  211. </span>
  212. </p>
  213. </template>
  214. </el-table-column>
  215. <el-table-column
  216. label="操作"
  217. width="100"
  218. header-align="center"
  219. align="center"
  220. >
  221. <template #default="scope">
  222. <el-button
  223. type="text"
  224. style="color: #05bb4c"
  225. @click="confirmItem([scope.row])"
  226. >确认本条</el-button
  227. >
  228. </template>
  229. </el-table-column>
  230. </template>
  231. <template v-else>
  232. <el-table-column
  233. v-for="item in state.tableHeader1"
  234. :label="item.title"
  235. :prop="item.code"
  236. :key="item.code"
  237. :width="item.width || ''"
  238. show-overflow-tooltip
  239. header-align="center"
  240. >
  241. <template #default="scope">
  242. <p :style="item.style && item.style(scope.row)">
  243. <span v-if="item.code == 'rank'">
  244. {{ tableFilter(scope.row.rank) }}
  245. </span>
  246. <span v-else-if="item.code == 'alarmtype'">
  247. {{ tableFilter(scope.row.alarmtype) }}
  248. </span>
  249. <span v-else-if="item.code == 'ts'">
  250. {{ formatTime(scope.row.ts) }}
  251. </span>
  252. <span
  253. :style="`color:${
  254. scope.row.confirmed ? '#05bb4c' : 'var(--el-color-danger)'
  255. }`"
  256. v-else-if="item.code == 'confirmed'"
  257. >
  258. {{ scope.row.confirmed ? "是" : "否" }}
  259. </span>
  260. <span v-else>
  261. {{
  262. scope.row[item.code] != "NULL" ? scope.row[item.code] : "--"
  263. }}
  264. </span>
  265. </p>
  266. </template>
  267. </el-table-column>
  268. <el-table-column
  269. label="操作"
  270. width="100"
  271. header-align="center"
  272. align="center"
  273. fixed="right"
  274. >
  275. <template #default="scope">
  276. <el-button
  277. type="text"
  278. style="color: #05bb4c"
  279. @click="confirmItem([scope.row])"
  280. >确认本条</el-button
  281. >
  282. </template>
  283. </el-table-column>
  284. </template>
  285. </el-table>
  286. <div class="pagination-wrapper">
  287. <el-pagination
  288. layout="total, sizes, prev, pager, next"
  289. :current-page="query.page"
  290. :page-size="query.limit"
  291. :page-sizes="[21, 100, 500, 1000]"
  292. :total="query.pageTotal"
  293. @size-change="
  294. (value) => {
  295. query.page = 1;
  296. query.limit = value;
  297. getAlarmHistoryt();
  298. }
  299. "
  300. @current-change="handlePageChange"
  301. ></el-pagination>
  302. </div>
  303. </div>
  304. </div>
  305. </template>
  306. <script setup name="historyWarning">
  307. import { watch, reactive, nextTick, computed, onMounted, ref } from "vue";
  308. import { useRouter, useRoute } from "vue-router";
  309. import BASE from "@/tools/basicTool.js";
  310. import dayjs from "dayjs";
  311. import {
  312. alarm_history,
  313. new_alarm_history,
  314. fetchWindturbineList,
  315. fetchModel,
  316. fetchRelatePartAndAlarmType,
  317. getWpList,
  318. confirmAlart,
  319. } from "@/api/zhbj/index.js";
  320. import { ElMessageBox, ElMessage } from "element-plus";
  321. import { outExportExcel } from "@/tools/excel/exportExcel.js"; //引入文件
  322. import { useStore } from "vuex";
  323. const pageTitle = "报警查询";
  324. const store = useStore();
  325. const route = useRoute();
  326. onMounted(() => {
  327. state.dateTime = [
  328. dayjs().startOf("day").format("YYYY-MM-DD HH:mm:ss"),
  329. dayjs().format("YYYY-MM-DD HH:mm:ss"),
  330. ];
  331. if (route.query.deviceType != "booststation") {
  332. state.deviceId = route.query.deviceId || "";
  333. state.alarmId = route.query.alarmId || "";
  334. state.typeVal = route.query.deviceType || "windturbine";
  335. state.modelId = route.query.modelId || "";
  336. } else {
  337. state.stationName = route.query.deviceId;
  338. state.deviceId = "";
  339. state.alarmId = route.query.alarmId || "";
  340. state.typeVal = route.query.deviceType || "booststation";
  341. }
  342. state.isshowwindturbineName = state.typeVal == "booststation" ? false : true;
  343. // if (route.query.ts) {
  344. // state.dateTime = [
  345. // `${dayjs(Number(route.query.ts)).format("YYYY-MM-DD")} 00:00:00`,
  346. // dayjs(Number(route.query.ts)).format("YYYY-MM-DD HH:mm:ss"),
  347. // ];
  348. // }
  349. // getStationList(); //场站
  350. getequipmentmodel_list(); //机型
  351. getfetchRelatePart(); //部件
  352. });
  353. // 机型
  354. const getequipmentmodel_list = async () => {
  355. const { data } = await fetchModel();
  356. state.modelListAll = data;
  357. };
  358. //所属部件
  359. const getfetchRelatePart = async () => {
  360. const { data } = await fetchRelatePartAndAlarmType();
  361. state.fetchListAll = data;
  362. };
  363. const confirmItem = (alarmItem) => {
  364. ElMessageBox("您确定要执行此操作吗?", "提示", {
  365. confirmButtonText: "确定",
  366. cancelButtonText: "取消",
  367. type: "warning",
  368. })
  369. .then(() => {
  370. confirmAlart(alarmItem)
  371. .then((res) => {
  372. if (res.code === 200) {
  373. ElMessage.success("确认成功");
  374. store.commit("removeWarning", alarmItem);
  375. getAlarmHistoryt();
  376. }
  377. })
  378. .catch(() => {
  379. ElMessage.error("确认失败,请重试");
  380. });
  381. })
  382. .catch(() => {});
  383. };
  384. const getColumnStyle = (columnItem) => {
  385. let style = "color:";
  386. if (columnItem.endts) {
  387. style += " #05bb4c";
  388. } else {
  389. style += "var(--el-color-danger)";
  390. }
  391. return style;
  392. };
  393. const state = reactive({
  394. typeList: [
  395. {
  396. label: "升压站",
  397. value: "booststation",
  398. },
  399. // {
  400. // label: "自定义",
  401. // value: "custom",
  402. // },
  403. {
  404. label: "风机",
  405. value: "windturbine",
  406. },
  407. {
  408. label: "光伏",
  409. value: "inverter",
  410. },
  411. ],
  412. typeVal: "windturbine",
  413. stationId: "",
  414. stationName: "",
  415. alarmId: "",
  416. windturbineList: [],
  417. deviceId: "",
  418. modelListAll: {},
  419. fetchListAll: {},
  420. modelId: "", //型号
  421. components: "", //部件
  422. description: "", //描述
  423. dateTime: [],
  424. startDate: null,
  425. endDate: null,
  426. tableData: [],
  427. isshowwindturbineName: true,
  428. ts: "",
  429. tableHeader: [
  430. { title: "时间", code: "ts", width: "150" },
  431. { title: "场站", code: "stationname", width: "150" },
  432. { title: "机组", code: "devicename", width: "150" },
  433. { title: "报警信息", code: "description", width: "180" },
  434. { title: "故障原因", code: "faultCause" },
  435. // { title: "级别", code: "rank", width: "80" },
  436. { title: "故障编码", code: "nemCode", width: "100" },
  437. // { title: "故障解决方法", code: "resolvent" },
  438. { title: "报警解除时间", code: "endtsName", width: "150" },
  439. {
  440. title: "状态",
  441. code: "isCloseName",
  442. // width: "80",
  443. style: getColumnStyle,
  444. width: 100,
  445. },
  446. { title: "是否确认", code: "confirmed", width: "100" },
  447. { title: "类型", code: "alarmTypeName", width: "80" },
  448. ],
  449. tableHeader1: [
  450. { title: "时间", code: "ts", width: "150" },
  451. { title: "升压站", code: "stationname", width: "150" },
  452. { title: "报警信息", code: "description" },
  453. // { title: "级别", code: "rank", width: "80" },
  454. { title: "报警解除时间", code: "endtsName", width: "150" },
  455. {
  456. title: "状态",
  457. code: "isCloseName",
  458. style: getColumnStyle,
  459. width: 100,
  460. // width: "80",
  461. },
  462. { title: "是否确认", code: "confirmed", width: "100" },
  463. { title: "类型", code: "alarmTypeName", width: "80" },
  464. ],
  465. });
  466. // 场站列表/升压站列表
  467. const stationList = ref([]);
  468. //获取场站列表
  469. const getStationList = async () => {
  470. const { data } = await getWpList(state.typeVal);
  471. stationList.value = data;
  472. if (state.deviceId && state.typeVal != "booststation") {
  473. let station = data.find((i) => {
  474. let st = i.id.split("_")[2];
  475. let dt = state.deviceId.split("_")[2];
  476. if (st == dt) {
  477. return i;
  478. }
  479. });
  480. state.stationId = station?.id;
  481. } else if (state.typeVal == "booststation") {
  482. let station = data.find((i) => i.name == state.stationName);
  483. state.stationId = station ? station?.id : data[0]?.id;
  484. } else {
  485. state.stationId = data[0]?.id;
  486. }
  487. state.stationId = route.query.stationId || state.stationId;
  488. route.query.stationId ? (state.modelId = modelList.value?.[0]?.id || "") : "";
  489. if (stationList.value.length) {
  490. getWindturbineList();
  491. }
  492. };
  493. // watch(
  494. // () => stationList,
  495. // (val, old) => {
  496. // val?.value?.length &&
  497. // nextTick(async () => {
  498. // await getWindturbineList();
  499. // });
  500. // },
  501. // {
  502. // deep: true,
  503. // immediate: true,
  504. // }
  505. // );
  506. watch(
  507. () => route,
  508. (val, old) => {
  509. if (route.query.deviceType != "booststation") {
  510. state.deviceId = route.query.deviceId || "";
  511. state.alarmId = route.query.alarmId || "";
  512. state.typeVal = route.query.deviceType || "windturbine";
  513. state.modelId = route.query.modelId || "";
  514. } else {
  515. state.stationName = route.query.deviceId;
  516. state.deviceId = "";
  517. state.alarmId = route.query.alarmId || "";
  518. state.typeVal = route.query.deviceType || "booststation";
  519. }
  520. state.isshowwindturbineName =
  521. state.typeVal == "booststation" ? false : true;
  522. getStationList();
  523. },
  524. {
  525. deep: true,
  526. immediate: true,
  527. }
  528. );
  529. //型号列表
  530. const modelList = computed(() => {
  531. if (state.typeVal != "booststation") {
  532. if (state.stationId == "") {
  533. return [];
  534. } else {
  535. state.modelId = route.query.deviceId
  536. ? route.query.modelId
  537. : state.modelListAll[state.stationId]?.[0]?.id || "";
  538. return state.modelListAll[state.stationId];
  539. }
  540. } else {
  541. return [];
  542. }
  543. });
  544. //部件列表
  545. const componentList = computed(() => {
  546. if (state.typeVal != "booststation") {
  547. if (state.stationId == "") {
  548. return [];
  549. } else {
  550. if (state.stationId.includes("FDC")) {
  551. return state.fetchListAll?.fjbj;
  552. } else {
  553. return state.fetchListAll?.gfbj;
  554. }
  555. }
  556. } else {
  557. return [];
  558. }
  559. });
  560. //get 风机
  561. const getWindturbineList = async () => {
  562. const { data } = await fetchWindturbineList(state.stationId);
  563. state.windturbineList = data;
  564. // state.modelId = modelList.value?.[0]?.id || "";
  565. await getAlarmHistoryt();
  566. };
  567. const query = reactive({
  568. page: 1,
  569. limit: 21,
  570. pageTotal: null,
  571. });
  572. // 获取历史记录表
  573. const getAlarmHistoryt = async () => {
  574. // if (route.params.deviceId && route.params.alarmId) {
  575. // state.stationId = "";
  576. // }
  577. BASE.showLoading();
  578. let params = {
  579. pageNum: query.page,
  580. pageSize: query.limit,
  581. alarmId: state.alarmId,
  582. alarmType: state.typeVal,
  583. stationid: state.stationId,
  584. deviceid: state.typeVal == "booststation" ? "" : state.deviceId,
  585. modelId: state.typeVal == "booststation" ? "" : state.modelId,
  586. components: state.components,
  587. description: state.description,
  588. begin: state.dateTime[0],
  589. end: state.dateTime[1],
  590. };
  591. const { data } = await alarm_history(params);
  592. BASE.closeLoading();
  593. query.pageTotal = data?.total;
  594. data?.ls?.forEach((ele) => {
  595. ele.isCloseName = ele.endts ? "已解除" : "未解除";
  596. ele.alarmTypeName =
  597. ele.alarmType === "booststation"
  598. ? "升压站"
  599. : ele.alarmType === "windturbine"
  600. ? "风机"
  601. : ele.alarmType === "inverter"
  602. ? "光伏"
  603. : "";
  604. ele.endtsName = ele.endts > 0 ? formatTime(ele.endts) : "--";
  605. });
  606. state.tableData = data?.ls;
  607. };
  608. //报警类型变化
  609. const typechange = () => {
  610. state.alarmId = "";
  611. state.deviceId = "";
  612. state.isshowwindturbineName = state.typeVal == "booststation" ? false : true;
  613. };
  614. // 批量导出
  615. const export2Excel = async () => {
  616. let params = {
  617. pageNum: query.page,
  618. pageSize: query.pageTotal,
  619. alarmType: state.typeVal,
  620. stationid: state.stationId,
  621. deviceid: state.typeVal == "booststation" ? "" : state.deviceId,
  622. modelId: state.modelId,
  623. components: state.components,
  624. description: state.description,
  625. begin: state.dateTime[0],
  626. end: state.dateTime[1],
  627. };
  628. if (state.dateTime[1] - state.dateTime[0] > 6 * 24 * 60 * 60 * 1000) {
  629. this.$message({
  630. message: "导出时间范围不能大于7天",
  631. type: "warning",
  632. });
  633. } else {
  634. let tableHeader = [];
  635. let tableKey = [];
  636. const { data } = await alarm_history(params);
  637. if (state.isshowwindturbineName) {
  638. tableHeader = state.tableHeader.map((item) => item.title);
  639. tableKey = state.tableHeader.map((item) => item.code);
  640. } else {
  641. tableHeader = state.tableHeader1.map((item) => item.title);
  642. tableKey = state.tableHeader1.map((item) => item.code);
  643. }
  644. const stationName = stationList.value.find((ele) => {
  645. return ele.id === state.stationId;
  646. }).name;
  647. const fileName = `${stationName} ${state.dateTime[0]} ~ ${state.dateTime[1]} 数据表`;
  648. outExportExcel(
  649. tableHeader,
  650. tableKey,
  651. data.ls.map((item) => {
  652. return {
  653. ...item,
  654. ts: formatTime(item.ts),
  655. rank: tableFilter(item.rank),
  656. alarmTypeName:
  657. item.alarmType === "booststation"
  658. ? "升压站"
  659. : item.alarmType === "windturbine"
  660. ? "风机"
  661. : item.alarmType === "inverter"
  662. ? "光伏"
  663. : "",
  664. endtsName: item.endts > 0 ? formatTime(item.endts) : "--",
  665. isCloseName: item.endts ? "已解除" : "未解除",
  666. confirmed: item.confirmed ? "是" : "否",
  667. };
  668. }),
  669. fileName
  670. );
  671. ElMessage.success(`导出成功!`);
  672. }
  673. };
  674. // 分页导航
  675. const handlePageChange = (val) => {
  676. query.page = val;
  677. getAlarmHistoryt();
  678. };
  679. // 时间格式化
  680. const formatTime = (val) => {
  681. return dayjs(val).format("YYYY-MM-DD HH:mm:ss");
  682. };
  683. // 格式化
  684. const obj = {
  685. 1: "低级",
  686. 2: "低中级",
  687. 3: "中级",
  688. 4: "中高级",
  689. 5: "高级",
  690. booststation: "升压站",
  691. inverter: "光伏",
  692. windturbine: "风机",
  693. };
  694. const messageTypeObj = {
  695. 1: "触发",
  696. 3: "解除",
  697. };
  698. const tableFilter = (val) => {
  699. return obj[val];
  700. };
  701. const messageTypeFilter = (val) => {
  702. return messageTypeObj[val];
  703. };
  704. </script>
  705. <style scoped lang="less">
  706. p {
  707. padding: 0;
  708. margin: 0;
  709. }
  710. .history-warning {
  711. height: 100%;
  712. width: 100%;
  713. padding: 0 20px;
  714. padding-bottom: 10px;
  715. .form-wrapper ::v-deep {
  716. display: flex;
  717. flex-direction: column;
  718. padding-top: 10px;
  719. position: relative;
  720. .search-wrapper {
  721. display: flex;
  722. align-items: center;
  723. font-size: 14px;
  724. font-family: Microsoft YaHei;
  725. font-weight: 400;
  726. color: #b3b3b3;
  727. margin-bottom: 10px;
  728. .search-item {
  729. display: flex;
  730. margin-right: 10px;
  731. max-width: 450px;
  732. align-items: center;
  733. .label {
  734. margin-right: 10px;
  735. text-align: right;
  736. white-space: nowrap;
  737. // width: 60px;
  738. }
  739. .search-content {
  740. flex: 1;
  741. }
  742. }
  743. }
  744. .btns {
  745. display: flex;
  746. justify-content: flex-end;
  747. margin-right: 10px;
  748. position: absolute;
  749. right: 0;
  750. top: 53px;
  751. }
  752. .buttons {
  753. background-color: rgba(5, 187, 76, 0.2);
  754. border: 1px solid #3b6c53;
  755. color: #b3b3b3;
  756. font-size: 14px;
  757. &:hover {
  758. background-color: rgba(5, 187, 76, 0.5);
  759. color: #ffffff;
  760. }
  761. }
  762. }
  763. .table-wrapper {
  764. height: calc(100% - 43px);
  765. width: 100%;
  766. .leftContent {
  767. width: 242px;
  768. height: 41px;
  769. display: flex;
  770. align-items: center;
  771. background: url("~@/assets/imgs/title_left_bg1.png") no-repeat;
  772. span {
  773. font-size: 16px;
  774. font-family: Microsoft YaHei;
  775. font-weight: 400;
  776. color: #05bb4c;
  777. margin-left: 25px;
  778. }
  779. }
  780. .pagination-wrapper :deep {
  781. text-align: right;
  782. margin-top: 10px;
  783. }
  784. }
  785. }
  786. </style>