移动端
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

4 年前
4 年前
4 年前
4 年前
4 年前
4 年前
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216
  1. <template>
  2. <div class="app-container">
  3. <workbenchHeader></workbenchHeader>
  4. <!--测试 需要做成组件-->
  5. <div class="work-module">
  6. <div class="head">
  7. <p class="l-title">协同效率</p>
  8. </div>
  9. <div class="main-body">
  10. <ul class="work-item clear">
  11. <li>
  12. <router-link to="/"
  13. ><p class="icon-wrap">
  14. <van-image
  15. :src="iconList.attendance"
  16. :width="iconWidthHeight"
  17. :height="iconWidthHeight"
  18. />
  19. </p>
  20. <p class="text-wrap">签到</p></router-link
  21. >
  22. </li>
  23. <li>
  24. <router-link to="/"
  25. ><p class="icon-wrap">
  26. <van-image
  27. :src="iconList.attendance"
  28. :width="iconWidthHeight"
  29. :height="iconWidthHeight"
  30. />
  31. </p>
  32. <p class="text-wrap">签到</p></router-link
  33. >
  34. </li>
  35. <li>
  36. <router-link to="/"
  37. ><p class="icon-wrap">
  38. <van-image
  39. :src="iconList.attendance"
  40. :width="iconWidthHeight"
  41. :height="iconWidthHeight"
  42. />
  43. </p>
  44. <p class="text-wrap">考勤打卡</p></router-link
  45. >
  46. </li>
  47. <li>
  48. <router-link to="/"
  49. ><p class="icon-wrap">
  50. <van-image
  51. :src="iconList.attendance"
  52. :width="iconWidthHeight"
  53. :height="iconWidthHeight"
  54. />
  55. </p>
  56. <p class="text-wrap">签到</p></router-link
  57. >
  58. </li>
  59. <li>
  60. <router-link to="/"
  61. ><p class="icon-wrap">
  62. <van-image
  63. :src="iconList.attendance"
  64. :width="iconWidthHeight"
  65. :height="iconWidthHeight"
  66. />
  67. </p>
  68. <p class="text-wrap">签到</p></router-link
  69. >
  70. </li>
  71. <li>
  72. <router-link to="/"
  73. ><p class="icon-wrap">
  74. <van-image
  75. :src="iconList.attendance"
  76. :width="iconWidthHeight"
  77. :height="iconWidthHeight"
  78. />
  79. </p>
  80. <p class="text-wrap">签到</p></router-link
  81. >
  82. </li>
  83. <li>
  84. <router-link to="/"
  85. ><p class="icon-wrap">
  86. <van-image
  87. :src="iconList.attendance"
  88. :width="iconWidthHeight"
  89. :height="iconWidthHeight"
  90. />
  91. </p>
  92. <p class="text-wrap">签到</p></router-link
  93. >
  94. </li>
  95. </ul>
  96. </div>
  97. </div>
  98. <!--测试 需要做成组件-->
  99. <div class="work-module">
  100. <div class="head">
  101. <p class="l-title">协同效率</p>
  102. </div>
  103. <div class="main-body">
  104. <ul class="work-item clear">
  105. <li>
  106. <router-link to="/"
  107. ><p class="icon-wrap">
  108. <van-image
  109. :src="iconList.attendance"
  110. :width="iconWidthHeight"
  111. :height="iconWidthHeight"
  112. />
  113. </p>
  114. <p class="text-wrap">签到</p></router-link
  115. >
  116. </li>
  117. <li>
  118. <router-link to="/"
  119. ><p class="icon-wrap">
  120. <van-image
  121. :src="iconList.attendance"
  122. :width="iconWidthHeight"
  123. :height="iconWidthHeight"
  124. />
  125. </p>
  126. <p class="text-wrap">签到</p></router-link
  127. >
  128. </li>
  129. <li>
  130. <router-link to="/"
  131. ><p class="icon-wrap">
  132. <van-image
  133. :src="iconList.attendance"
  134. :width="iconWidthHeight"
  135. :height="iconWidthHeight"
  136. />
  137. </p>
  138. <p class="text-wrap">考勤打卡</p></router-link
  139. >
  140. </li>
  141. <li>
  142. <router-link to="/"
  143. ><p class="icon-wrap">
  144. <van-image
  145. :src="iconList.attendance"
  146. :width="iconWidthHeight"
  147. :height="iconWidthHeight"
  148. />
  149. </p>
  150. <p class="text-wrap">签到</p></router-link
  151. >
  152. </li>
  153. </ul>
  154. </div>
  155. </div>
  156. </div>
  157. </template>
  158. <script>
  159. import workbenchHeader from "@/components/workbench/index/header";
  160. export default {
  161. name: "workbench",
  162. components: { workbenchHeader },
  163. data() {
  164. return {
  165. iconWidthHeight: "1.2rem",
  166. iconList: {
  167. attendance: "../../static/images/icon.png",
  168. },
  169. };
  170. },
  171. mounted() {},
  172. methods: {},
  173. };
  174. </script>
  175. <style scoped lang="scss">
  176. .app-container {
  177. padding-top: 85px;
  178. .work-module {
  179. margin: 18px;
  180. padding: 18px;
  181. background: #fff;
  182. border-radius: 15px;
  183. .head {
  184. line-height: 50px;
  185. height: 50px;
  186. margin-bottom: 8px;
  187. .l-title {
  188. font-size: 32px;
  189. padding-left: 24px;
  190. }
  191. }
  192. .main-body {
  193. width: 100%;
  194. .work-item {
  195. box-sizing: border-box;
  196. padding-top: 10px;
  197. li {
  198. width: 20%;
  199. float: left;
  200. margin-bottom: 20px;
  201. text-align: center;
  202. a {
  203. color: #333;
  204. }
  205. .text-wrap {
  206. font-size: 26px;
  207. margin-top: 10px;
  208. }
  209. }
  210. }
  211. }
  212. }
  213. }
  214. </style>