index.vue 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209
  1. <template>
  2. <div class="performance">
  3. <div class="main-container">
  4. <div class="card" v-for="(item, index) in titleList" :class="index === active ? 'actived' : 'isActived'"
  5. :key="index" @click="getDetails(index)">
  6. <div class="card-t">{{ item.sysOrgName }}</div>
  7. <div class="card-b">
  8. <div class="box" v-for="(items, ind) in item.tab" :key="ind" @click="getToggle(ind,item)">
  9. <div class="img"> <img :src="items.src" alt="" /> </div>
  10. <div class="text">{{ items.text }}</div>
  11. <div class="num">{{ items.num }}</div>
  12. </div>
  13. </div>
  14. </div>
  15. </div>
  16. </div>
  17. </template>
  18. <script lang="ts" setup>
  19. import { reactive, ref, onMounted } from 'vue';
  20. import { useRouter } from 'vue-router';
  21. import leftImg from '../../../../assets/images/files/homes/file.svg';
  22. import rightImg from '../../../../assets/images/files/homes/sp.svg';
  23. import { list } from './fileIndex.api';
  24. let router = useRouter(); //路由
  25. let active = ref(); //当前选中项
  26. let titleList = reactive<any[]>([]);
  27. let homeParam = reactive({
  28. sysOrgCode: '',
  29. bpmStatus: null,
  30. flag:''
  31. })
  32. //获取首页数据
  33. let getPageList = async () => {
  34. let data = await list();
  35. console.log(data, '首页数据');
  36. if (data.length !== 0) {
  37. let datas = data.map((el) => {
  38. return {
  39. sysOrgName: el.sysOrgName,
  40. sysOrgCode: el.sysOrgCode,
  41. flag:el.flag,
  42. tab: [
  43. { src: leftImg, text: '文档总数', num: el.tolalNum },
  44. { src: rightImg, text: '待审批数', num: el.approveNum },
  45. ],
  46. };
  47. });
  48. titleList.push(...datas);
  49. console.log(titleList, '123456');
  50. }
  51. };
  52. //切换选项
  53. let getDetails = (index) => {
  54. active.value = index;
  55. };
  56. // //切换左右选项
  57. let getToggle = (ind,item) => {
  58. console.log(ind,'审批状态索引');
  59. console.log(item,'item')
  60. homeParam.sysOrgCode = item.sysOrgCode
  61. homeParam.flag=item.flag
  62. if(ind){
  63. homeParam.bpmStatus=2
  64. }else {
  65. homeParam.bpmStatus=homeParam.flag ? '' : 'All'
  66. }
  67. console.log(homeParam,'home0000000000')
  68. router.push({
  69. path:'/fileManager/fileDetail/home',
  70. query:{sysOrgCode:homeParam.sysOrgCode,bpmStatus:homeParam.bpmStatus,flag:homeParam.flag}
  71. });
  72. };
  73. onMounted(() => {
  74. getPageList();
  75. });
  76. </script>
  77. <style lang="less" scoped>
  78. @font-face {
  79. font-family: 'douyuFont';
  80. src: url(../../../../assets/images/files/douyuFont.otf);
  81. }
  82. .performance {
  83. width: 100%;
  84. height: 100%;
  85. padding: 15px;
  86. position: relative;
  87. box-sizing: border-box;
  88. background: url(../../../../assets/images/files/homes/bd.png) no-repeat center;
  89. .main-container {
  90. width: 100%;
  91. height: calc(100% - 30px);
  92. display: flex;
  93. flex-direction: row;
  94. // justify-content: flex-start;
  95. // align-items: flex-start;
  96. justify-content: center;
  97. align-items: center;
  98. flex-wrap: wrap;
  99. .card {
  100. width: 331px;
  101. height: 235px;
  102. background: url(../../../../assets/images/files/homes/default.png) no-repeat center;
  103. background-size: 100% 100%;
  104. margin: 0px 23px 15px 23px;
  105. cursor: pointer;
  106. .card-t {
  107. height: 50px;
  108. display: flex;
  109. justify-content: center;
  110. align-items: center;
  111. font-family: '思源黑体', 'Microsoft Yahei';
  112. font-size: 20px;
  113. color: #fff;
  114. }
  115. .card-b {
  116. height: calc(100% - 65px);
  117. margin-top: 15px;
  118. display: flex;
  119. flex-direction: row;
  120. .box {
  121. display: flex;
  122. flex: 1;
  123. flex-direction: column;
  124. justify-content: flex-start;
  125. align-items: center;
  126. &:first-child .img {
  127. position: relative;
  128. width: 72px;
  129. height: 78px;
  130. background: url(../../../../assets/images/files/homes/file1.png) no-repeat center;
  131. img {
  132. position: absolute;
  133. left: 50%;
  134. top: 50%;
  135. transform: translate(-50%, -75%);
  136. }
  137. }
  138. &:last-child .img {
  139. position: relative;
  140. width: 72px;
  141. height: 78px;
  142. background: url(../../../../assets/images/files/homes/sp.png) no-repeat center;
  143. img {
  144. position: absolute;
  145. left: 50%;
  146. top: 50%;
  147. transform: translate(-50%, -75%);
  148. }
  149. }
  150. .text {
  151. margin: 5px 0px;
  152. font-family: '思源黑体', 'Microsoft Yahei';
  153. color: #fff;
  154. font-size: 14px;
  155. }
  156. &:first-child .num {
  157. width: 120px;
  158. height: 30px;
  159. font-family: 'douyuFont';
  160. color: #fff;
  161. font-size: 20px;
  162. display: flex;
  163. justify-content: center;
  164. align-items: center;
  165. background: url(../../../../assets/images/files/homes/file2.png) no-repeat center;
  166. }
  167. &:last-child .num {
  168. width: 120px;
  169. height: 30px;
  170. font-family: 'douyuFont';
  171. color: #fff;
  172. font-size: 20px;
  173. display: flex;
  174. justify-content: center;
  175. align-items: center;
  176. background: url(../../../../assets/images/files/homes/sp2.png) no-repeat center;
  177. }
  178. }
  179. }
  180. }
  181. .actived {
  182. background: url(../../../../assets/images/files/homes/mouse.png) no-repeat center;
  183. background-size: 100% 100%;
  184. }
  185. .isActived {
  186. background: url(../../../../assets/images/files/homes/default.png) no-repeat center;
  187. background-size: 100% 100%;
  188. }
  189. }
  190. }</style>