index.vue 8.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307
  1. <template>
  2. <view class="page">
  3. <image src="../../static/imgs/home_top.png" mode="widthFix" class="home_top"></image>
  4. <view class="content">
  5. <image src="../../static/imgs/home_title.png" mode="widthFix" class="title"></image>
  6. <view class="intro">
  7. 合肥市传秀科技有限公司成立于<span>2013</span>年。公司专注于工业互联网平台及行业应用产品技术研发和服务,为<span>城市安全、零碳园区、智慧校园、智能工厂、行业数字化转型、大数据管理服务、专业化信息化运维服务等两化融合、两业融合等提供整体解决方案。</span>目前已服务于全国10+省级政府部门,50+制造(工业)园区,拥有20+化工、新材料、新能源等企业客户,沉淀了千万级工业互联网平台用户。以科技赋能“智”造 ,引领行业标杆,争做产业智慧化的领先者 ,智慧产业化的创新者!
  8. </view>
  9. <view class="solutions">
  10. <view class="s_header">
  11. <view class="sh_top">
  12. <image src="../../static/imgs/icon_home_left.png"></image>
  13. <p>产品服务</p>
  14. <image src="../../static/imgs/icon_home_right.png"></image>
  15. </view>
  16. <view class="sh_tip">以数赋智,为客户深挖更大价值</view>
  17. </view>
  18. <view class="list">
  19. <view class="item" v-for="(item,index) in solutionList" :key="index" @click="toTurn(item.path)">
  20. <image class="img" :src="item.img"></image>
  21. <view class="texts">
  22. <view class="name">{{item.name}}</view>
  23. <view class="memo">{{item.memo}}</view>
  24. </view>
  25. </view>
  26. </view>
  27. </view>
  28. </view>
  29. <tabbar :tabbarIndex="0"></tabbar>
  30. </view>
  31. </template>
  32. <script>
  33. export default {
  34. data() {
  35. return {
  36. solutionList: [{
  37. img: '../../static/imgs/home_type1.png',
  38. name: 'FMCS厂务系统',
  39. memo: '提升工厂运营管理效率',
  40. path: '/pages/solution/fmcs'
  41. },
  42. {
  43. img: '../../static/imgs/home_type31.png',
  44. name: '智能化维保管理系统',
  45. memo: '解决维修、保养、点检管理…',
  46. path: '/pages/solution/zhwb'
  47. },
  48. {
  49. img: '../../static/imgs/home_type3.png',
  50. name: '智慧视频',
  51. memo: 'AI算法,视频安防管理更智能',
  52. path: '/pages/solution/smartVideo'
  53. },
  54. {
  55. img: '../../static/imgs/home_type4.png',
  56. name: '仓储管理平台',
  57. memo: '数字化智能仓储,一体化应…',
  58. path: '/pages/solution/zncc'
  59. },
  60. {
  61. img: '../../static/imgs/home_type30.png',
  62. name: '安灯系统',
  63. memo: '可快速实现设备异常自动呼…',
  64. path: '/pages/solution/lampSms'
  65. },
  66. {
  67. img: '../../static/imgs/home_type6.png',
  68. name: '智能排产系统',
  69. memo: '按需生产,精益制造,柔性…',
  70. path: '/pages/solution/znpc'
  71. },
  72. {
  73. img: '../../static/imgs/home_type14.png',
  74. name: '智慧能碳管理系统',
  75. memo: '智慧能耗/设备设施/…',
  76. path: '/pages/solution/zhnt'
  77. },
  78. {
  79. img: '../../static/imgs/home_type2.png',
  80. name: '智慧运维系统',
  81. memo: '设备管理、物联网安全',
  82. path: '/pages/solution/smartOpration'
  83. },
  84. {
  85. img: '../../static/imgs/home_type10.png',
  86. name: '零碳智慧园区解决方案',
  87. memo: '智慧安防/智慧消防/...',
  88. path: '/pages/solution/ltzhyq'
  89. },
  90. {
  91. img: '../../static/imgs/home_type7.png',
  92. name: '零碳智慧校园解决方案',
  93. memo: '智慧安防/智慧消防',
  94. path: '/pages/solution/ltzhxy'
  95. },
  96. {
  97. img: '../../static/imgs/home_type11.png',
  98. name: '智慧楼宇解决方案',
  99. memo: '智慧安防/设备设施',
  100. path: '/pages/solution/zhly'
  101. },
  102. {
  103. img: '../../static/imgs/home_type16.png',
  104. name: '空间数字孪生IOC解决方案',
  105. memo: '智慧安防/智慧消防/...',
  106. path: '/pages/solution/ioc'
  107. },
  108. // {
  109. // img: '../../static/imgs/home_type15.png',
  110. // name: '物流园区解决方案',
  111. // memo: '智慧安防/智慧消防'
  112. // },
  113. // {
  114. // img: '../../static/imgs/home_type22.png',
  115. // name: '智慧停车业务运营解决方案',
  116. // memo: '智慧通行'
  117. // },
  118. // {
  119. // img: '../../static/imgs/home_type19.png',
  120. // name: '智慧通行管理平台',
  121. // memo: '智慧通行'
  122. // },
  123. {
  124. img: '../../static/imgs/home_type24.png',
  125. name: '智慧消防综合解决方案',
  126. memo: '智慧消防/设备设施',
  127. path: '/pages/solution/zhxf'
  128. },
  129. // {
  130. // img: '../../static/imgs/home_type25.png',
  131. // name: '烟雾识别监测',
  132. // memo: 'AI智能/智慧安防/...'
  133. // },
  134. // {
  135. // img: '../../static/imgs/home_type26.png',
  136. // name: '区域人员密度超标告警',
  137. // memo: 'AI智能/智慧安防/社...'
  138. // },
  139. // {
  140. // img: '../../static/imgs/home_type27.png',
  141. // name: '人员跌倒监测解决方案',
  142. // memo: 'AI智能/智慧安防/社...'
  143. // },
  144. // {
  145. // img: '../../static/imgs/home_type28.png',
  146. // name: '人员区域入侵监测解决方案',
  147. // memo: 'AI智能/智慧安防/人...'
  148. // }
  149. ]
  150. }
  151. },
  152. methods: {
  153. toTurn(url) {
  154. if (!url) return
  155. uni.navigateTo({
  156. url
  157. })
  158. }
  159. }
  160. }
  161. </script>
  162. <style scoped lang="less">
  163. .page {
  164. background: #E1EDFF;
  165. .home_top {
  166. width: 100%;
  167. }
  168. .content {
  169. width: 100%;
  170. padding: 0 24rpx;
  171. box-sizing: border-box;
  172. background: url(../../static/imgs/home_bg.png) no-repeat;
  173. background-position: top left;
  174. background-size: contain;
  175. display: flex;
  176. flex-direction: column;
  177. align-items: center;
  178. margin-top: -12rpx;
  179. .title {
  180. width: 288rpx;
  181. }
  182. .intro {
  183. margin-top: 16rpx;
  184. width: 100%;
  185. padding: 0 12rpx;
  186. box-sizing: border-box;
  187. font-family: PingFangSC, PingFang SC;
  188. font-weight: 400;
  189. font-size: 28rpx;
  190. color: #FFFFFF;
  191. line-height: 42rpx;
  192. text-align: justify;
  193. font-style: normal;
  194. text-indent: 2rem;
  195. letter-spacing: 2rpx;
  196. span {
  197. color: #67F1FF;
  198. font-weight: bold;
  199. }
  200. }
  201. .solutions {
  202. margin-top: 60rpx;
  203. display: flex;
  204. flex-direction: column;
  205. align-items: center;
  206. .s_header {
  207. display: flex;
  208. flex-direction: column;
  209. align-items: center;
  210. .sh_top {
  211. display: flex;
  212. align-items: center;
  213. image {
  214. width: 36rpx;
  215. height: 27rpx;
  216. }
  217. p {
  218. font-family: PingFang-SC, PingFang-SC;
  219. font-weight: bold;
  220. font-size: 36rpx;
  221. color: #FFFFFF;
  222. line-height: 50rpx;
  223. text-align: center;
  224. font-style: normal;
  225. margin: 0 10rpx;
  226. }
  227. }
  228. .sh_tip {
  229. font-family: PingFangSC, PingFang SC;
  230. font-weight: 400;
  231. font-size: 26rpx;
  232. color: #FFFFFF;
  233. line-height: 37rpx;
  234. text-align: center;
  235. font-style: normal;
  236. margin-top: 5rpx;
  237. }
  238. }
  239. .list {
  240. width: 100%;
  241. margin-top: 3rpx;
  242. display: flex;
  243. justify-content: space-between;
  244. flex-wrap: wrap;
  245. .item {
  246. width: calc(50% - 9rpx);
  247. background: #FFFFFF;
  248. border-radius: 12rpx;
  249. margin-top: 24rpx;
  250. .img {
  251. width: 100%;
  252. height: 186rpx;
  253. border-radius: 12rpx 12rpx 0 0;
  254. }
  255. .texts {
  256. width: 100%;
  257. padding: 14rpx 14rpx 16rpx;
  258. box-sizing: border-box;
  259. .name {
  260. font-family: PingFang-SC, PingFang-SC;
  261. font-weight: bold;
  262. font-size: 26rpx;
  263. color: #111111;
  264. line-height: 36rpx;
  265. text-align: left;
  266. overflow: hidden;
  267. text-overflow: ellipsis;
  268. white-space: nowrap;
  269. }
  270. .memo {
  271. font-family: PingFangSC, PingFang SC;
  272. font-weight: 400;
  273. font-size: 24rpx;
  274. color: #777777;
  275. line-height: 32rpx;
  276. text-align: left;
  277. margin-top: 8rpx;
  278. overflow: hidden;
  279. text-overflow: ellipsis;
  280. white-space: nowrap;
  281. }
  282. }
  283. }
  284. }
  285. }
  286. }
  287. }
  288. </style>