index.vue 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237
  1. <template>
  2. <div class="heeaderNav">
  3. <div class="tab-box">
  4. <div
  5. class="tab-item"
  6. v-for="(tab, index) of tabs"
  7. :key="index"
  8. :class="{ active1: activeTab == tab.id }"
  9. @click.stop="headerCheck(tab.id, tab.show)"
  10. >
  11. <span
  12. class="svg-icon svg-icon-sm"
  13. :class="activeTab == tab.id ? 'svg-icon-green' : 'svg-icon-write'"
  14. >
  15. <SvgIcon :svgid="tab.icon"></SvgIcon>
  16. </span>
  17. <span>{{ tab.text }}</span>
  18. </div>
  19. </div>
  20. <!-- <div class="rightTitle" v-if="wpId != 'KGDL_FGS'">
  21. <div
  22. class="all-enterprise"
  23. :class="{ active1: enterpriseIndex == 'all' }"
  24. @click="handleClickEnterprise('all', '清洁能源')"
  25. >
  26. <i
  27. class="svg-icon svg-icon-sm"
  28. :class="
  29. $store.state.themeName === 'dark'
  30. ? enterpriseIndex == 'all'
  31. ? 'svg-icon-green'
  32. : 'svg-icon-write'
  33. : 'svg-icon-black'
  34. "
  35. >
  36. <SvgIcon svgid="svg-enterprise"></SvgIcon>
  37. </i>
  38. <span>清洁能源</span>
  39. </div>
  40. <div
  41. :class="{ active1: enterpriseIndex == item.nemCode }"
  42. class="enterprise-item"
  43. v-for="(item, index) in childNode"
  44. :key="index"
  45. @click="handleClickEnterprise(item.nemCode, item.aname)"
  46. >
  47. <span>{{ item.aname }}</span>
  48. </div>
  49. </div> -->
  50. </div>
  51. </template>
  52. <script>
  53. import SvgIcon from "@/components/coms/icon/svg-icon.vue";
  54. import { headerCompany } from "@/api/headerNav/header.js";
  55. export default {
  56. name: "HomeNav", //首页标题栏
  57. props: {
  58. isAll: {
  59. type: Boolean,
  60. default: false,
  61. },
  62. wpId: {
  63. type: String,
  64. default: "",
  65. },
  66. companyid: { type: String, default: "SXJ_RGN" },
  67. currents: { type: Number, default: 0 },
  68. },
  69. components: { SvgIcon },
  70. data() {
  71. return {
  72. OrganizationList: [],
  73. activeTab: 0,
  74. headerIndexs: -1,
  75. wpIds: "",
  76. tabs: [
  77. {
  78. icon: "svg-all",
  79. text: "全部",
  80. show: "all",
  81. id: 0,
  82. },
  83. {
  84. icon: "svg-wind-site",
  85. text: "风电",
  86. show: "fc",
  87. id: -1,
  88. },
  89. {
  90. icon: "svg-photovoltaic",
  91. text: "光伏",
  92. show: "gf",
  93. id: -2,
  94. },
  95. ],
  96. enterpriseIndex: "all",
  97. companyName: "山西",
  98. showType: "all",
  99. childNode: [],
  100. regionList: [
  101. { name: "全国", key: "KGDL_FGS" },
  102. { name: "山西", key: "SXJ_RGN" },
  103. { name: "内蒙", key: "NMM_RGN" },
  104. ],
  105. };
  106. },
  107. created() {
  108. this.$nextTick(() => {
  109. this.$emit("firstRender", this.activeTab, this.showType, this.wpId);
  110. });
  111. },
  112. watch: {
  113. wpId: {
  114. handler(val) {
  115. let region = this.regionList.find((item) => item.key == val);
  116. if ((val && (region || this.currents == 1)) || this.isAll) {
  117. this.getOrganizationList();
  118. }
  119. },
  120. immediate: true,
  121. },
  122. },
  123. methods: {
  124. getOrganizationList() {
  125. if (this.currents == 1 && this.wpId.includes("SXJ")) {
  126. headerCompany({ regionid: "SXJ_RGN" }).then(({ data }) => {
  127. this.childNode = data.data;
  128. });
  129. } else {
  130. headerCompany({ regionid: this.wpId }).then(({ data }) => {
  131. this.childNode = data.data;
  132. });
  133. }
  134. },
  135. handleClickEnterprise(enterprise, name) {
  136. this.companyName = name;
  137. this.enterpriseIndex = enterprise;
  138. this.$emit("typeFlag", this.showType, this.enterpriseIndex);
  139. this.$emit(
  140. "firstRender",
  141. this.activeTab,
  142. this.showType,
  143. enterprise == "all" ? "SXJ_RGN" : enterprise,
  144. enterprise == "all" ? "清洁能源" : name
  145. );
  146. },
  147. headerCheck(index, showType) {
  148. this.activeTab = index;
  149. this.showType = showType;
  150. this.$emit(
  151. "firstRender",
  152. this.activeTab,
  153. this.showType,
  154. this.wpId,
  155. this.wpId == "KGDL_FGS" ? "" : this.companyName
  156. );
  157. this.$emit("typeFlag", this.showType, this.enterpriseIndex);
  158. },
  159. },
  160. };
  161. </script>
  162. <style lang="less" scoped>
  163. .heeaderNav {
  164. height: 35px;
  165. display: flex;
  166. align-items: center;
  167. margin: 16px 0 16px 30px;
  168. }
  169. .tab-box {
  170. display: inline-block;
  171. z-index: 2;
  172. display: flex;
  173. .tab-item {
  174. display: flex;
  175. align-items: center;
  176. justify-content: center;
  177. font-size: 14px;
  178. font-family: Microsoft YaHei;
  179. cursor: pointer;
  180. padding: 3px 14px;
  181. margin-right: 5px;
  182. &.active1 {
  183. color: @green;
  184. position: relative;
  185. background: rgba(84, 183, 90, 0.16);
  186. border-radius: 16px;
  187. &::after {
  188. content: "";
  189. position: absolute;
  190. width: 100%;
  191. height: 0.463vh;
  192. border-top: 0;
  193. left: 0;
  194. bottom: 0;
  195. box-sizing: border-box;
  196. }
  197. }
  198. .svg-icon {
  199. margin-right: 12px;
  200. margin-top: 2px;
  201. }
  202. }
  203. }
  204. .rightTitle {
  205. display: flex;
  206. margin-left: 72px;
  207. z-index: 5;
  208. .active1 {
  209. // background: rgba(84, 183, 90, 0.4);
  210. color: #05bb4c;
  211. }
  212. div {
  213. display: flex;
  214. padding: 0 14px;
  215. align-items: center;
  216. height: 25px;
  217. line-height: 25px;
  218. font-size: 15px;
  219. font-family: Microsoft YaHei;
  220. background: rgba(84, 183, 90, 0.16);
  221. border-radius: 16px;
  222. text-align: center;
  223. margin-right: 15px;
  224. cursor: pointer;
  225. .svg-icon {
  226. margin-right: 12px;
  227. }
  228. }
  229. }
  230. </style>