ioc.vue 6.3 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="boxs">
  8. <!-- 方案特征 -->
  9. <view class="fatz box">
  10. <view class="b_title">方案特征</view>
  11. <view class="items">
  12. <view class="item">
  13. <image src="../../static/imgs/fmcs_fatz1.png"></image>
  14. <p>建筑数字孪生</p>
  15. <view class="tip">通过物联网、AI和3D模型技术实现楼宇、园区、场馆等建筑数字孪生的可视化管理</view>
  16. </view>
  17. <view class="item">
  18. <image src="../../static/imgs/fmcs_fatz2.png"></image>
  19. <p>一体化监控运营</p>
  20. <view class="tip">可自由集成运营、物业、招商、机电、能碳、安全、消防等多个主题组件,实现一体化监测控制与运行管理</view>
  21. </view>
  22. <view class="item">
  23. <image src="../../static/imgs/fmcs_fatz3.png"></image>
  24. <p>可视化配置</p>
  25. <view class="tip">预设70+数据组件,支持拖拉拽可视化配置,可自由定义面板、布局,让场景配置更高效、简单</view>
  26. </view>
  27. <view class="item">
  28. <image src="../../static/imgs/fmcs_fatz4.png"></image>
  29. <p>多维度展示</p>
  30. <view class="tip">通过指标卡、图表、组态等展示物联网数据及业务运营数据,以多维度、多方位、多形态的方式呈现运营状态</view>
  31. </view>
  32. </view>
  33. </view>
  34. <view class="box2">
  35. <view class="b_title">服务场景</view>
  36. <block v-if="fwcjList.length">
  37. <uFunction :showTitle="false" :title="item.title" :list="item.list" v-for="(item,index) in fwcjList" :key="index"></uFunction>
  38. </block>
  39. </view>
  40. <view class="box3">
  41. <view class="b_title">数字孪生中台</view>
  42. <image class="img" src="../../static/imgs/ioc_img1.png" mode="widthFix" @click="e=>showBigImg(e,'../../static/imgs/ioc_img1.png')"></image>
  43. </view>
  44. </view>
  45. <!-- 合作与咨询 -->
  46. <uForm></uForm>
  47. </view>
  48. </template>
  49. <script>
  50. export default {
  51. data(){
  52. return {
  53. dTitle:'空间数字孪生IOC解决方案',
  54. dMemo:'通过数字孪生技术,结合物联网、AI及建筑三维模型,实现建筑综合调度、安防联动、智慧运维、能碳管理等的综合一体化智慧运营可视化平台。',
  55. descBg:'../../static/imgs/ioc_descbg.png',
  56. fwcjList:[
  57. {
  58. list:[
  59. {
  60. title:'智慧运维',
  61. desc:'通过预置的机电设施可视化、设施统计、工单统计、电梯管理、空调运行监控、智慧照明等场景组件,实现设备智慧运维,可视化展示'
  62. },
  63. {
  64. title:'安防管理',
  65. desc:'通过预置的安防概况、视频监控青看、视频巡更、安防告警事件、安防事件统计、安防告警响应、告警态势分析等场景组件,实现全方位安防监管'
  66. },
  67. {
  68. title:'能效态势',
  69. desc:'通过预置的双碳看板、能耗统计、能源看板能源模型、能源流向图等场景组件,展示建筑的能效整体态势,实时统计和分析,节能优化'
  70. },
  71. {
  72. title:'综合态势',
  73. desc:'预置安全态势统计、工单统计、人员统计、车环境感知、能耗统计、节辆统计、设施统计、碳统计等场景组件,可自由灵活调整'
  74. },
  75. {
  76. title:'智慧通行',
  77. desc:'通过预置的人员热力、人员统计、车辆统计车位三维可视化、车位类型、停车位预约、当日进出车流量、缴费统计等场景组件,实现建筑空间人、车通行统一、可视化管理'
  78. },
  79. {
  80. title:'更多面板',
  81. desc:'消防、招商、运营等更多场景主题面板,可根据业务自由定义、灵活调整'
  82. }
  83. ]
  84. }
  85. ],
  86. }
  87. },
  88. created() {
  89. uni.setNavigationBarTitle({
  90. title:'空间数字孪生IOC解决方案'
  91. })
  92. },
  93. methods:{
  94. showBigImg(e,imgUrl){
  95. let current = e.target.dataset.src;
  96. let that = this;
  97. uni.previewImage({
  98. current,
  99. urls:[imgUrl],
  100. longPressActions:{
  101. itemList:['保存图片'],
  102. success(data) {
  103. that.saveImage(imgUrl);
  104. },
  105. fail(err) {
  106. that.$showToast(err.errMsg);
  107. }
  108. }
  109. })
  110. },
  111. saveImage(url){
  112. let that = this;
  113. uni.downloadFile({
  114. url,
  115. success(res) {
  116. let filePath = res.tempFilePath;
  117. uni.saveImageToPhotosAlbum({
  118. filePath,
  119. success() {
  120. that.$showToast('保存成功');
  121. },
  122. fail(err) {
  123. that.$showToast('保存失败');
  124. }
  125. })
  126. }
  127. })
  128. }
  129. }
  130. }
  131. </script>
  132. <style scoped lang="less">
  133. ::v-deep .desc .title{
  134. margin-top: 24rpx;
  135. }
  136. ::v-deep .desc .memo{
  137. padding-right: 101rpx;
  138. margin-top: 36rpx;
  139. }
  140. ::v-deep .form{
  141. margin-top: 100rpx;
  142. }
  143. .content{
  144. padding-bottom: 90rpx;
  145. .boxs{
  146. width: 100%;
  147. padding: 0 30rpx;
  148. box-sizing: border-box;
  149. .b_title{
  150. font-family: PingFang-SC, PingFang-SC;
  151. font-weight: bold;
  152. font-size: 42rpx;
  153. color: #111111;
  154. line-height: 42rpx;
  155. text-align: center;
  156. margin-top: 64rpx;
  157. }
  158. .img{
  159. width: 100%;
  160. margin-top: 48rpx;
  161. }
  162. .fatz{
  163. .items{
  164. margin-top: 12rpx;
  165. display: flex;
  166. justify-content: space-between;
  167. flex-wrap: wrap;
  168. .item{
  169. width: calc(50% - 15rpx);
  170. height: 360rpx;
  171. background: #FAFCFF;
  172. border-radius: 2rpx;
  173. display: flex;
  174. flex-direction: column;
  175. align-items: center;
  176. margin-top: 24rpx;
  177. image{
  178. width: 118rpx;
  179. height: 118rpx;
  180. }
  181. p{
  182. font-family: PingFangSC, PingFang SC;
  183. font-weight: 400;
  184. font-size: 30rpx;
  185. color: #111111;
  186. line-height: 42rpx;
  187. text-align: center;
  188. margin-top: 2rpx;
  189. }
  190. .tip{
  191. width: 100%;
  192. padding: 0 20rpx;
  193. box-sizing: border-box;
  194. font-family: PingFangSC, PingFang SC;
  195. font-weight: 400;
  196. font-size: 24rpx;
  197. color: #777777;
  198. line-height: 33rpx;
  199. margin-top: 16rpx;
  200. }
  201. }
  202. }
  203. }
  204. }
  205. }
  206. </style>