workbench_blank.vue 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176
  1. <template>
  2. <div class="workbenchblank_box">
  3. <!-- <router-view /> -->
  4. <el-row>
  5. <el-col :span="12" class="workbench_mobile" style="padding:30px 0 66px 170px"><img src="static/images/workbench_mobile.png" /></el-col>
  6. <el-col :span="12" style="padding:74px 0 152px;">
  7. <el-row>
  8. <el-col :span="24" class="worktitle">为了更好的体验</el-col>
  9. <el-col
  10. :span="24"
  11. class="downfont"
  12. style="position:relative;font-size:18px;font-weight:normal;color:#0d0c0c;font-family: Microsoft Yahei;padding-left: 60px;margin-bottom:42px;"
  13. >
  14. 我们建议您下载APP,在手机端操作更方便,扫码下载。
  15. </el-col>
  16. <!-- <el-col :span="24" style="font-size:16px;color:#666;margin:12px 0 42px;font-family: Microsoft Yahei;">下载功道云APP,解决<span style="color:#fc7676;margin:0 6px;font-weight:600;">企业管理执行难</span>的问题。</el-col> -->
  17. <el-col :span="5" class="secan_type android">
  18. <div class="wechat_code"><img src="static/images/workbench_android.png" /></div>
  19. <div class="wechat_code"><img src="static/images/android_code.jpg" /></div>
  20. <span class="name">
  21. <img src="static/images/workbench_android.png" />
  22. Android
  23. </span>
  24. </el-col>
  25. <el-col :span="5" class="secan_type ios">
  26. <div class="wechat_code"></div>
  27. <div class="wechat_code"><img src="static/images/ios_code.jpg" /></div>
  28. <span class="name">
  29. <img src="static/images/workbench_ios.png" />
  30. IOS
  31. </span>
  32. </el-col>
  33. </el-row>
  34. <el-col :span="24" style="font-size:20px;font-weight:bold;line-height:32px;color:#333;margin:60px 0 8px;font-family: Microsoft Yahei;">如何解决管理执行难的问题</el-col>
  35. <el-col :span="24" style="font-size:16px;color:#666;line-height:24px;margin:0px 0 0;font-family: Microsoft Yahei;">打开APP的“管理中心”,</el-col>
  36. <el-col :span="24" style="font-size:16px;color:#666;line-height:24px;margin:0px 0 32px;font-family: Microsoft Yahei;">B分、A分、录分、任务、奖票、绩效…应有尽有</el-col>
  37. <el-col :span="20" class="function">
  38. <el-row :gutter="32">
  39. <div>
  40. <el-col :span="4">
  41. <img src="static/images/index_apoint.png" />
  42. <span class="name">奖扣A分</span>
  43. </el-col>
  44. <el-col :span="4">
  45. <img src="static/images/index_bpoint.png" />
  46. <span class="name">奖扣B分</span>
  47. </el-col>
  48. <el-col :span="4">
  49. <img src="static/images/indexPPTask.png" />
  50. <span class="name">绩效任务</span>
  51. </el-col>
  52. <el-col :span="4">
  53. <img src="static/images/indexPTTask.png" />
  54. <span class="name">临时任务</span>
  55. </el-col>
  56. <el-col :span="4">
  57. <img src="static/images/indexRTask.png" />
  58. <span class="name">悬赏任务</span>
  59. </el-col>
  60. </div>
  61. </el-row>
  62. </el-col>
  63. </el-col>
  64. </el-row>
  65. </div>
  66. </template>
  67. <script>
  68. export default {
  69. data() {
  70. return {};
  71. },
  72. created() {},
  73. mounted() {},
  74. watch: {},
  75. methods: {}
  76. };
  77. </script>
  78. <style scoped lang="scss">
  79. .workbenchblank_box {
  80. margin-bottom: 20px;
  81. background: #fff;
  82. .secan_type {
  83. position: relative;
  84. width: 120px;
  85. height: 150px;
  86. margin-right: 120px;
  87. }
  88. .secan_type .wechat_code {
  89. display: block;
  90. position: absolute;
  91. width: 120px;
  92. height: 120px;
  93. background: transparent;
  94. border: 3px #e6e1e1 solid;
  95. transition: 0.35s ease-in-out;
  96. }
  97. .secan_type .wechat_code img {
  98. width: 100%;
  99. height: auto;
  100. border-radius: 6px;
  101. transition: 0.35s ease-in-out;
  102. }
  103. .secan_type .name {
  104. position: absolute;
  105. text-align: center;
  106. width: 100%;
  107. bottom: 0;
  108. font-size: 16px;
  109. color: #303133;
  110. }
  111. .secan_type .name img {
  112. display: none;
  113. position: relative;
  114. top: 4px;
  115. width: 20px;
  116. height: auto;
  117. margin-right: 6px;
  118. }
  119. // .android{
  120. // margin-right:56px;
  121. // background: url(static/images/android_code.jpg) no-repeat top;
  122. // background-size: 99%;
  123. // }
  124. // .ios{
  125. // background: url(static/images/ios_code.jpg) no-repeat top;
  126. // background-size: 99%;
  127. // }
  128. .function {
  129. margin: 0px auto 0px;
  130. }
  131. .function img {
  132. width: 100%;
  133. height: auto;
  134. }
  135. .function .name {
  136. display: block;
  137. text-align: center;
  138. padding-top: 10px;
  139. font-size: 14px;
  140. color: #303133;
  141. }
  142. .worktitle {
  143. font-size: 38px;
  144. line-height: 72px;
  145. font-weight: bold;
  146. letter-spacing: 2px;
  147. color: rgb(48, 49, 51);
  148. font-family: 'Microsoft Yahei';
  149. background: linear-gradient(120deg, #26a2ff, #7dc5fb);
  150. -webkit-background-clip: text;
  151. color: transparent;
  152. // text-shadow: 1px 2px 4px rgba(125,197,251,0.14);
  153. }
  154. .downfont:before {
  155. position: absolute;
  156. left: 0;
  157. bottom: 10px;
  158. content: ' ';
  159. width: 50px;
  160. border-bottom: 1px #999 solid;
  161. }
  162. .function /deep/ .el-col-4 img {
  163. opacity: 0.76;
  164. transition: 0.35s ease-in-out;
  165. }
  166. .function /deep/ .el-col-4:hover {
  167. cursor: pointer;
  168. }
  169. .function /deep/ .el-col-4:hover img {
  170. opacity: 1;
  171. transform: scale(1.05);
  172. transition: 0.35s ease-in-out;
  173. }
  174. }
  175. </style>