zhly.vue 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213
  1. <template>
  2. <view class="content">
  3. <!-- 顶部logo和菜单 -->
  4. <uTop></uTop>
  5. <!-- 标题和介绍 -->
  6. <uDesc :title="dTitle" :description="dMemo" :bg="descBg"></uDesc>
  7. <view class="question">
  8. <div class="title">楼宇系统面临的问题?</div>
  9. <block v-if="quetionList.length">
  10. <uFunction :showTitle="false" :title="item.title" :list="item.list" v-for="(item,index) in quetionList" :key="index"></uFunction>
  11. </block>
  12. </view>
  13. <view class="box">
  14. <view class="box1">
  15. <view class="b_title">方案亮点</view>
  16. <block v-if="faldList.length">
  17. <uFunction :showTitle="false" :title="item.title" :list="item.list" v-for="(item,index) in faldList" :key="index"></uFunction>
  18. </block>
  19. </view>
  20. <view class="box2">
  21. <view class="b_title">智慧楼宇5A架构</view>
  22. <image style="margin-top: 48rpx;" class="img" src="../../static/imgs/zhly_img2.png" mode="widthFix" @click="e=>showBigImg(e,'../../static/imgs/zhly_img2.png')"></image>
  23. <view class="b_head">可视、可控、可管智慧化管理平台</view>
  24. <image class="img" src="../../static/imgs/zhly_img3.png" mode="widthFix" @click="e=>showBigImg(e,'../../static/imgs/zhly_img3.png')"></image>
  25. <view class="b_head">构建可知可视可控、万物互联的智慧楼宇</view>
  26. <view class="b_tip">通过大屏和3D可视化系统的配合,颠覆传统,提升宣传展示能力,彰显综合实力;<br>通过可视化的智能设备管理,直感交互,可视管控,有效的提升运营与管理水平,帮助综合楼降本增效。</view>
  27. <image class="img" src="../../static/imgs/zhly_img4.png" mode="widthFix" @click="e=>showBigImg(e,'../../static/imgs/zhly_img4.png')"></image>
  28. </view>
  29. </view>
  30. <!-- 合作与咨询 -->
  31. <uForm></uForm>
  32. </view>
  33. </template>
  34. <script>
  35. export default {
  36. data(){
  37. return {
  38. dTitle:'智慧楼宇解决方案',
  39. dMemo:'实现对楼宇建筑进行AI安防监测、设备设施运维、无感通行、线上巡更、智慧能耗、智慧环境、消防联动、多场景联动等智能化场景落地。从而实现对楼宇管理的全方位优化和智能化管理。',
  40. descBg:'../../static/imgs/zhly_descbg.png',
  41. quetionList:[
  42. {
  43. list:[
  44. {
  45. title:'多业态的建筑,管理难度大',
  46. desc:'主要利用人工,管理效率偏低,事件响应缓慢,事件定位较难。'
  47. },
  48. {
  49. title:'基础设施管理效率不高',
  50. desc:'子系统多,品牌不一,设备信息不统一、维护难度高缺少直观的集中式监控与指挥管理。'
  51. },
  52. {
  53. title:'能耗消耗大',
  54. desc:'传统的能耗人工采集、人工控制照明、访客线下登记等场景用户体验差。'
  55. }
  56. ]
  57. }
  58. ],
  59. faldList:[
  60. {
  61. list:[
  62. {
  63. title:'打破信息孤岛,高效创造价值',
  64. desc:'解决楼宇各子系统单独管理现状,构建统一连接平台,实现数据与服务的互联互通。'
  65. },
  66. {
  67. title:'构建可知可视可控、万物互联的智慧楼宇',
  68. desc:'深入楼宇空间业务场景,融合物联网技术和AI能力,实现能耗、照明、安防、设备设施管理全方面智能化。'
  69. },
  70. {
  71. title:'全面信息化的物业管理应用',
  72. desc:'基于设备监测数据、融合AI能力助力构建楼宇权限的业务管理流程。'
  73. },
  74. {
  75. title:'全联接、深融合、泛智能',
  76. desc:'云端架构和应用,既满足单一项目应用场景落地,也满足多项目管控和复制需求。'
  77. }
  78. ]
  79. }
  80. ],
  81. }
  82. },
  83. created() {
  84. uni.setNavigationBarTitle({
  85. title:'智慧楼宇解决方案'
  86. })
  87. },
  88. methods:{
  89. showBigImg(e,imgUrl){
  90. let current = e.target.dataset.src;
  91. let that = this;
  92. uni.previewImage({
  93. current,
  94. urls:[imgUrl],
  95. longPressActions:{
  96. itemList:['保存图片'],
  97. success(data) {
  98. that.saveImage(imgUrl);
  99. },
  100. fail(err) {
  101. that.$showToast(err.errMsg);
  102. }
  103. }
  104. })
  105. },
  106. saveImage(url){
  107. let that = this;
  108. uni.downloadFile({
  109. url,
  110. success(res) {
  111. let filePath = res.tempFilePath;
  112. uni.saveImageToPhotosAlbum({
  113. filePath,
  114. success() {
  115. that.$showToast('保存成功');
  116. },
  117. fail(err) {
  118. that.$showToast('保存失败');
  119. }
  120. })
  121. }
  122. })
  123. }
  124. }
  125. }
  126. </script>
  127. <style scoped lang="less">
  128. ::v-deep .desc .title{
  129. margin-top: 12rpx;
  130. }
  131. ::v-deep .desc .memo{
  132. padding-right: 237rpx;
  133. margin-top: 10rpx;
  134. }
  135. .content{
  136. padding-bottom: 44rpx;
  137. .question{
  138. width: 100%;
  139. height: 770rpx;
  140. padding: 48rpx 30rpx 0;
  141. box-sizing: border-box;
  142. background: url(../../static/imgs/zhly_img1.png) no-repeat;
  143. background-size: 100% 100%;
  144. .title{
  145. font-family: PingFang-SC, PingFang-SC;
  146. font-weight: bold;
  147. font-size: 42rpx;
  148. color: #111111;
  149. line-height: 60rpx;
  150. text-align: center;
  151. padding: 0 198rpx;
  152. }
  153. }
  154. .box{
  155. width: 100%;
  156. padding: 0 30rpx;
  157. box-sizing: border-box;
  158. .b_title{
  159. font-family: PingFang-SC, PingFang-SC;
  160. font-weight: bold;
  161. font-size: 42rpx;
  162. color: #111111;
  163. line-height: 42rpx;
  164. text-align: center;
  165. margin-top: 64rpx;
  166. }
  167. .img{
  168. width: 100%;
  169. margin-top: 40rpx;
  170. }
  171. .b_head{
  172. font-family: PingFang-SC, PingFang-SC;
  173. font-weight: bold;
  174. font-size: 32rpx;
  175. color: #111111;
  176. line-height: 45rpx;
  177. text-align: left;
  178. padding-left: 18rpx;
  179. margin-top: 64rpx;
  180. position: relative;
  181. &:before{
  182. content: '';
  183. width: 6rpx;
  184. height: 36rpx;
  185. background: #1460CA;
  186. position: absolute;
  187. left: 0;
  188. top: 50%;
  189. margin-top: -18rpx;
  190. }
  191. }
  192. .b_tip{
  193. width: 100%;
  194. padding-left: 18rpx;
  195. margin-top: 14rpx;
  196. font-family: PingFangSC, PingFang SC;
  197. font-weight: 400;
  198. font-size: 26rpx;
  199. color: #666666;
  200. line-height: 36rpx;
  201. }
  202. }
  203. }
  204. </style>