index.vue 8.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319
  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_type0.png',
  38. name: '双碳感知管理平台',
  39. memo: '零碳/AI智能/物联网',
  40. path: '/pages/solution/stgz'
  41. },{
  42. img: '../../static/imgs/home_type1.png',
  43. name: 'FMCS厂务系统',
  44. memo: '提升工厂运营管理效率',
  45. path: '/pages/solution/fmcs'
  46. },
  47. {
  48. img: '../../static/imgs/home_type31.png',
  49. name: '智能化维保管理系统',
  50. memo: '解决维修、保养、点检管理…',
  51. path: '/pages/solution/zhwb'
  52. },
  53. // {
  54. // img: '../../static/imgs/home_type3.png',
  55. // name: '智慧视频',
  56. // memo: 'AI算法,视频安防管理更智能',
  57. // path: '/pages/solution/smartVideo'
  58. // },
  59. {
  60. img: '../../static/imgs/home_type4.png',
  61. name: '仓储管理平台',
  62. memo: '数字化智能仓储,一体化应…',
  63. path: '/pages/solution/zncc'
  64. },
  65. {
  66. img: '../../static/imgs/home_type30.png',
  67. name: '安灯系统',
  68. memo: '可快速实现设备异常自动呼…',
  69. path: '/pages/solution/lampSms'
  70. },
  71. {
  72. img: '../../static/imgs/home_type6.png',
  73. name: '智能排产系统',
  74. memo: '按需生产,精益制造,柔性…',
  75. path: '/pages/solution/znpc'
  76. },
  77. // {
  78. // img: '../../static/imgs/home_type14.png',
  79. // name: '智慧能碳管理系统',
  80. // memo: '智慧能耗/设备设施/…',
  81. // path: '/pages/solution/zhnt'
  82. // },
  83. {
  84. img: '../../static/imgs/home_type2.png',
  85. name: '智慧运维系统',
  86. memo: '设备管理、物联网安全',
  87. path: '/pages/solution/smartOpration'
  88. },
  89. {
  90. img: '../../static/imgs/home_type10.png',
  91. name: '零碳智慧园区解决方案',
  92. memo: '智慧安防/智慧消防/...',
  93. path: '/pages/solution/ltzhyq'
  94. },
  95. // {
  96. // img: '../../static/imgs/home_type7.png',
  97. // name: '零碳智慧校园解决方案',
  98. // memo: '智慧安防/智慧消防',
  99. // path: '/pages/solution/ltzhxy'
  100. // },
  101. {
  102. img: '../../static/imgs/home_type11.png',
  103. name: '智慧楼宇解决方案',
  104. memo: '智慧安防/设备设施',
  105. path: '/pages/solution/zhly'
  106. },
  107. {
  108. img: '../../static/imgs/home_type16.png',
  109. name: '空间数字孪生IOC解决方案',
  110. memo: '智慧安防/智慧消防/...',
  111. path: '/pages/solution/ioc'
  112. },
  113. // {
  114. // img: '../../static/imgs/home_type15.png',
  115. // name: '物流园区解决方案',
  116. // memo: '智慧安防/智慧消防'
  117. // },
  118. // {
  119. // img: '../../static/imgs/home_type22.png',
  120. // name: '智慧停车业务运营解决方案',
  121. // memo: '智慧通行',
  122. // path: '/pages/solution/zhtc'
  123. // },
  124. // {
  125. // img: '../../static/imgs/home_type19.png',
  126. // name: '智慧通行管理平台',
  127. // memo: '智慧通行'
  128. // },
  129. {
  130. img: '../../static/imgs/home_type24.png',
  131. name: '智慧消防综合解决方案',
  132. memo: '智慧消防/设备设施',
  133. path: '/pages/solution/zhxf'
  134. },
  135. // {
  136. // img: '../../static/imgs/home_type25.png',
  137. // name: '烟雾识别监测',
  138. // memo: 'AI智能/智慧安防/...'
  139. // },
  140. // {
  141. // img: '../../static/imgs/home_type26.png',
  142. // name: '区域人员密度超标告警',
  143. // memo: 'AI智能/智慧安防/社...'
  144. // },
  145. // {
  146. // img: '../../static/imgs/home_type27.png',
  147. // name: '人员跌倒监测解决方案',
  148. // memo: 'AI智能/智慧安防/社...'
  149. // },
  150. // {
  151. // img: '../../static/imgs/home_type28.png',
  152. // name: '人员区域入侵监测解决方案',
  153. // memo: 'AI智能/智慧安防/人...'
  154. // },
  155. {
  156. img: '../../static/imgs/home_type32.png',
  157. name: '智慧文旅',
  158. memo: '“互联网+全域旅游”',
  159. path: '/pages/solution/zhwl'
  160. }
  161. ]
  162. }
  163. },
  164. methods: {
  165. toTurn(url) {
  166. if (!url) return
  167. uni.navigateTo({
  168. url
  169. })
  170. }
  171. }
  172. }
  173. </script>
  174. <style scoped lang="less">
  175. .page {
  176. background: #E1EDFF;
  177. .home_top {
  178. width: 100%;
  179. }
  180. .content {
  181. width: 100%;
  182. padding: 0 24rpx;
  183. box-sizing: border-box;
  184. background: url(../../static/imgs/home_bg.png) no-repeat;
  185. background-position: top left;
  186. background-size: contain;
  187. display: flex;
  188. flex-direction: column;
  189. align-items: center;
  190. margin-top: -12rpx;
  191. .title {
  192. width: 288rpx;
  193. }
  194. .intro {
  195. margin-top: 16rpx;
  196. width: 100%;
  197. padding: 0 12rpx;
  198. box-sizing: border-box;
  199. font-family: PingFangSC, PingFang SC;
  200. font-weight: 400;
  201. font-size: 28rpx;
  202. color: #FFFFFF;
  203. line-height: 42rpx;
  204. text-align: justify;
  205. font-style: normal;
  206. text-indent: 2rem;
  207. letter-spacing: 2rpx;
  208. span {
  209. // color: #67F1FF;
  210. font-weight: bold;
  211. }
  212. }
  213. .solutions {
  214. margin-top: 60rpx;
  215. display: flex;
  216. flex-direction: column;
  217. align-items: center;
  218. .s_header {
  219. display: flex;
  220. flex-direction: column;
  221. align-items: center;
  222. .sh_top {
  223. display: flex;
  224. align-items: center;
  225. image {
  226. width: 36rpx;
  227. height: 27rpx;
  228. }
  229. p {
  230. font-family: PingFang-SC, PingFang-SC;
  231. font-weight: bold;
  232. font-size: 36rpx;
  233. color: #FFFFFF;
  234. line-height: 50rpx;
  235. text-align: center;
  236. font-style: normal;
  237. margin: 0 10rpx;
  238. }
  239. }
  240. .sh_tip {
  241. font-family: PingFangSC, PingFang SC;
  242. font-weight: 400;
  243. font-size: 26rpx;
  244. color: #FFFFFF;
  245. line-height: 37rpx;
  246. text-align: center;
  247. font-style: normal;
  248. margin-top: 5rpx;
  249. }
  250. }
  251. .list {
  252. width: 100%;
  253. margin-top: 3rpx;
  254. display: flex;
  255. justify-content: space-between;
  256. flex-wrap: wrap;
  257. .item {
  258. width: calc(50% - 9rpx);
  259. background: #FFFFFF;
  260. border-radius: 12rpx;
  261. margin-top: 24rpx;
  262. .img {
  263. width: 100%;
  264. height: 186rpx;
  265. border-radius: 12rpx 12rpx 0 0;
  266. }
  267. .texts {
  268. width: 100%;
  269. padding: 14rpx 14rpx 16rpx;
  270. box-sizing: border-box;
  271. .name {
  272. font-family: PingFang-SC, PingFang-SC;
  273. font-weight: bold;
  274. font-size: 26rpx;
  275. color: #111111;
  276. line-height: 36rpx;
  277. text-align: left;
  278. overflow: hidden;
  279. text-overflow: ellipsis;
  280. white-space: nowrap;
  281. }
  282. .memo {
  283. font-family: PingFangSC, PingFang SC;
  284. font-weight: 400;
  285. font-size: 24rpx;
  286. color: #777777;
  287. line-height: 32rpx;
  288. text-align: left;
  289. margin-top: 8rpx;
  290. overflow: hidden;
  291. text-overflow: ellipsis;
  292. white-space: nowrap;
  293. }
  294. }
  295. }
  296. }
  297. }
  298. }
  299. }
  300. </style>