TabNav.vue 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194
  1. <template>
  2. <div
  3. class="tabs"
  4. :style="{ marginTop: marginTop + 'px', marginBottom: marginBottom + 'px',fontSize:fontSize + 'px' }">
  5. <ul v-if="Array.isArray(tabList)" :class="borderType">
  6. <template v-for="(item, i) in tabList">
  7. <li
  8. :class="{ active: i === currTab }"
  9. :key="item.name"
  10. @click="selTab(i)"
  11. :style="{ minWidth: liWidth + 'px',height: liHeight + 'px',lineHeight: liHeight + 'px', marginRight: marginRight + 'px' }"
  12. v-if="!item.hasOwnProperty('isShow') || item.isShow">
  13. <div>{{ item.name }}</div>
  14. </li>
  15. </template><li
  16. v-for="item in comRemaining"
  17. :key="item" class="unclickable"
  18. :style="{
  19. minWidth: liWidth + 'px',
  20. lineHeight: liHeight + 'px',
  21. marginRight: marginRight + 'px',
  22. }">
  23. <div>{{ item }}</div>
  24. </li>
  25. </ul>
  26. <ul v-else>
  27. <li
  28. :class="{ active: i === currTab }"
  29. v-for="(val, i) in Object.keys(tabList)"
  30. :key="i"
  31. @click="selTab(val)"
  32. :style="{ minWidth: liWidth + 'px', marginRight: marginRight + 'px' }">
  33. <div>{{ val }}</div>
  34. </li>
  35. </ul>
  36. </div>
  37. </template>
  38. <script>
  39. export default {
  40. props: {
  41. // color: {
  42. // type: String,
  43. // },
  44. borderType:{
  45. type: String,
  46. default: 'noBorder',
  47. },
  48. fontSize: {
  49. type: Number,
  50. default: 14,
  51. },
  52. marginTop: {
  53. type: Number,
  54. default: 0,
  55. },
  56. marginBottom: {
  57. type: Number,
  58. default: 10,
  59. },
  60. liWidth: {
  61. type: Number,
  62. default: 0,
  63. },
  64. liHeight: {
  65. type: Number,
  66. default: 28,
  67. },
  68. marginRight: {
  69. type: Number,
  70. default: 0,
  71. },
  72. currTab: {
  73. type: [Number, String],
  74. default: 0,
  75. },
  76. tabList: {
  77. type: [Array, Object],
  78. default: () => {
  79. return []
  80. },
  81. },
  82. allPrintTab: {
  83. type: [Array, Object],
  84. default: () => {
  85. return []
  86. },
  87. },
  88. },
  89. data() {
  90. return {
  91. textColor: 'red',
  92. }
  93. },
  94. computed: {
  95. comRemaining() {
  96. const mapTabList = this.tabList.map(i => i.name)
  97. return this.allPrintTab.filter(element => !mapTabList.includes(element))
  98. },
  99. },
  100. methods: {
  101. selTab(i) {
  102. this.$emit('update:currTab', i)
  103. this.$emit('handle')
  104. },
  105. },
  106. }
  107. </script>
  108. <style lang="scss" scoped>
  109. $deep-grey:#63676b;
  110. $deep-blue:#004a9b;
  111. $light-grey:#797979;
  112. .tabs {
  113. display: inline-block;
  114. ul {
  115. margin: 0;
  116. list-style: none;
  117. li {
  118. user-select: none;
  119. display: inline-flex;
  120. flex-direction: row;
  121. align-items: center;
  122. text-align: center;
  123. cursor: pointer;
  124. transition: all 0.4s;
  125. background-color: #f1f4f9;
  126. div {
  127. flex: 1;
  128. display: inline-block;
  129. margin: 0 15px;
  130. }
  131. }
  132. }
  133. .allBorder{
  134. color: $deep-grey;
  135. font-weight: 700;
  136. li{
  137. border-width: 1px;
  138. border-style: solid;
  139. border-color: rgba(155,155,155);
  140. background-color: #f1f4f9;
  141. border-radius: 4px;
  142. box-shadow: 0.5px 0.5px 0px 0.2px rgba(155,155,155);
  143. &.active {
  144. color: #fff;
  145. background-color: $deep-blue;
  146. border-color: $deep-blue;
  147. box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.15);
  148. }
  149. }
  150. }
  151. .incompleteBorder{
  152. color: #aaa;
  153. font-weight: 700;
  154. li{
  155. border-width: 1px;
  156. border-style: solid;
  157. border-color: #eee #eee $deep-blue;
  158. border-top-left-radius: 4px;
  159. border-top-right-radius: 4px;
  160. &:hover {
  161. background-color: rgba(0, 74, 155, 0.3);
  162. }
  163. &.active {
  164. color: $deep-blue;
  165. background-color: #fff;
  166. border-color: $deep-blue $deep-blue #fff;
  167. }
  168. }
  169. }
  170. .noBorder{
  171. color: #00213b;
  172. li{
  173. border-color: #eee;
  174. border-radius: 4px;
  175. &:hover {
  176. background-color: #797979;
  177. }
  178. &.active {
  179. color: #fff;
  180. background-color: $light-grey;
  181. border-color: $deep-blue;
  182. }
  183. }
  184. }
  185. }
  186. .unclickable{
  187. background-color: rgb(245,245,245) !important;
  188. cursor: not-allowed;
  189. border-color: #999 !important;
  190. border-style: dashed !important;
  191. }
  192. </style>