hjyd的手机端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

78 lines
2.2 KiB

2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
  1. <template>
  2. <div class="about_us_card_container">
  3. <HeadLine themeTitle="关于" title="我们" line1="ABOUT US" :theme="theme" />
  4. <div :class="isHard ? 'hard_color tag' : theme ? 'theme_color tag' : 'tag'">
  5. <span class="fontscale">专业从事研发13年</span>
  6. </div>
  7. <article class="article">
  8. 产品梦工厂作为一家资深的研发公司主导了大量产品从需求产品定义策划
  9. 结构硬件嵌软软件全功能样机模具批量灰度测试产能爬坡全流
  10. 程经验核心团队有工业控制/物联网领域/机械传动领域的专家组成在机器视觉
  11. 动化控制行业有多年的从业经验是行业领先的智慧创新产品服务提供商为客户提供一体化研发服务聚焦产品创新研发服务对于硬件软件机械传动结构wifi
  12. zigbee蓝牙射频工业机器视觉等源码级别开发
  13. </article>
  14. </div>
  15. </template>
  16. <script setup>
  17. import HeadLine from 'cpns/HeadLine'
  18. import { onMounted, ref } from 'vue'
  19. import { useRoute } from 'vue-router'
  20. const route = useRoute()
  21. const isHard = ref(false)
  22. onMounted(() => {
  23. if (route.path.indexOf('/hardware') != -1) {
  24. isHard.value = true
  25. }
  26. })
  27. const props = defineProps({
  28. theme: {
  29. type: Boolean,
  30. default: false,
  31. },
  32. })
  33. </script>
  34. <style lang="scss" scoped>
  35. .about_us_card_container {
  36. padding: 0 31px;
  37. background: #ffffff;
  38. display: flex;
  39. flex-direction: column;
  40. align-items: center;
  41. .tag {
  42. width: 90px;
  43. height: 17px;
  44. background: $home-color;
  45. display: flex;
  46. align-items: center;
  47. justify-content: center;
  48. font-family: Source Han Sans CN;
  49. font-weight: 400;
  50. color: #ffffff;
  51. border-radius: 8px;
  52. .fontscale {
  53. font-size: 14px;
  54. transform: scale(0.5);
  55. white-space: nowrap;
  56. }
  57. }
  58. .hard_color {
  59. background: $hardware-theme;
  60. }
  61. .theme_color {
  62. background: $theme-color;
  63. }
  64. .article {
  65. font-family: Source Han Sans CN;
  66. font-weight: 300;
  67. color: #595959;
  68. line-height: 20px;
  69. font-size: 14px;
  70. transform: scale(0.5);
  71. width: 200%;
  72. max-height: 66px;
  73. }
  74. }
  75. </style>