zhtc.vue 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271
  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">提供停车大数据平台,避免信息孤岛</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">自动化收费、智能检测告警降低人工成本。减少寻找车位,引导出行</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. <image class="b_img" src="../../static/imgs/zhtc_img1.png" mode="widthFix" @click="e=>showBigImg(e,'../../static/imgs/zhtc_img1.png')"></image>
  37. </view>
  38. <view class="box3">
  39. <view class="b_title">方案架构</view>
  40. <image class="b_img" src="../../static/imgs/zhtc_img2.png" mode="widthFix" @click="e=>showBigImg(e,'../../static/imgs/zhtc_img2.png')"></image>
  41. </view>
  42. <view class="box4">
  43. <view class="b_title">应用场景</view>
  44. <view class="desc">适用于集团级,多项目,有多品牌停车场管理系统需要统一业务运营、用户体验、财务收费与对账、数据汇总的社区、园区、商业等空间场景</view>
  45. <view class="items">
  46. <view class="item" v-for="(item,index) in yycjList" :key="index">
  47. <view class="img">
  48. <image :src="item.img"></image>
  49. </view>
  50. <view class="title">{{item.title}}</view>
  51. </view>
  52. </view>
  53. </view>
  54. </view>
  55. <!-- 合作与咨询 -->
  56. <uForm></uForm>
  57. </view>
  58. </template>
  59. <script>
  60. export default {
  61. data(){
  62. return {
  63. dTitle:'智慧停车业务运营解决方案',
  64. dMemo:'基于统一连接和业务标准化重塑,打造集团级统一业务、统一收费、统一体验、统一数据的停车运营管理云平台',
  65. descBg:'../../static/imgs/zhtc_descbg.png',
  66. yycjList:[
  67. {
  68. img:'../../static/imgs/zhxf_img2.png',
  69. title:'商业综合体'
  70. },
  71. {
  72. img:'../../static/imgs/zhxf_img3.png',
  73. title:'学校园区'
  74. },
  75. {
  76. img:'../../static/imgs/zhxf_img4.png',
  77. title:'政府机关'
  78. },
  79. {
  80. img:'../../static/imgs/zhxf_img5.png',
  81. title:'工业园区'
  82. },
  83. {
  84. img:'../../static/imgs/zhxf_img6.png',
  85. title:'生产园区'
  86. },
  87. {
  88. img:'../../static/imgs/zhxf_img7.png',
  89. title:'商业办公'
  90. }
  91. ],
  92. }
  93. },
  94. created() {
  95. uni.setNavigationBarTitle({
  96. title:'智慧停车业务运营解决方案'
  97. })
  98. },
  99. methods:{
  100. showBigImg(e,imgUrl){
  101. let current = e.target.dataset.src;
  102. let that = this;
  103. uni.previewImage({
  104. current,
  105. urls:[imgUrl],
  106. longPressActions:{
  107. itemList:['保存图片'],
  108. success(data) {
  109. that.saveImage(imgUrl);
  110. },
  111. fail(err) {
  112. that.$showToast(err.errMsg);
  113. }
  114. }
  115. })
  116. },
  117. saveImage(url){
  118. let that = this;
  119. uni.downloadFile({
  120. url,
  121. success(res) {
  122. let filePath = res.tempFilePath;
  123. uni.saveImageToPhotosAlbum({
  124. filePath,
  125. success() {
  126. that.$showToast('保存成功');
  127. },
  128. fail(err) {
  129. that.$showToast('保存失败');
  130. }
  131. })
  132. }
  133. })
  134. }
  135. }
  136. }
  137. </script>
  138. <style scoped lang="less">
  139. ::v-deep .desc .title{
  140. margin-top: 16rpx;
  141. }
  142. ::v-deep .desc .memo{
  143. padding-right: 101rpx;
  144. margin-top: 36rpx;
  145. }
  146. ::v-deep .form{
  147. margin-top: 100rpx;
  148. }
  149. .content{
  150. width: 100%;
  151. overflow-x: hidden;
  152. padding-bottom: 112rpx;
  153. .boxs{
  154. width: 100%;
  155. padding: 0 30rpx;
  156. box-sizing: border-box;
  157. .b_title{
  158. font-family: PingFang-SC, PingFang-SC;
  159. font-weight: bold;
  160. font-size: 42rpx;
  161. color: #111111;
  162. line-height: 42rpx;
  163. text-align: center;
  164. margin-top: 64rpx;
  165. }
  166. .b_img{
  167. width: calc(100% + 60rpx);
  168. position: relative;
  169. left: -30rpx;
  170. margin-top: 48rpx;
  171. }
  172. .fatz{
  173. .items{
  174. margin-top: 12rpx;
  175. display: flex;
  176. justify-content: space-between;
  177. flex-wrap: wrap;
  178. .item{
  179. width: calc(50% - 15rpx);
  180. height: 360rpx;
  181. background: #FAFCFF;
  182. border-radius: 2rpx;
  183. display: flex;
  184. flex-direction: column;
  185. align-items: center;
  186. margin-top: 24rpx;
  187. image{
  188. width: 118rpx;
  189. height: 118rpx;
  190. }
  191. p{
  192. font-family: PingFangSC, PingFang SC;
  193. font-weight: 400;
  194. font-size: 30rpx;
  195. color: #111111;
  196. line-height: 42rpx;
  197. text-align: center;
  198. margin-top: 2rpx;
  199. }
  200. .tip{
  201. width: 100%;
  202. padding: 0 20rpx;
  203. box-sizing: border-box;
  204. font-family: PingFangSC, PingFang SC;
  205. font-weight: 400;
  206. font-size: 24rpx;
  207. color: #777777;
  208. line-height: 33rpx;
  209. margin-top: 16rpx;
  210. }
  211. }
  212. }
  213. }
  214. .box4{
  215. .desc{
  216. font-family: PingFangSC, PingFang SC;
  217. font-weight: 400;
  218. font-size: 28rpx;
  219. color: #111111;
  220. line-height: 42rpx;
  221. text-align: left;
  222. margin-top: 48rpx;
  223. }
  224. .items{
  225. margin-top: 24rpx;
  226. width: 100%;
  227. display: flex;
  228. justify-content: space-between;
  229. flex-wrap: wrap;
  230. .item{
  231. width: calc(50% - 25rpx);
  232. background: #FFFFFF;
  233. box-shadow: 0rpx 4rpx 16rpx 0rpx rgba(0,0,0,0.06);
  234. margin-top: 25rpx;
  235. .img{
  236. width: 320rpx;
  237. height: 200rpx;
  238. margin-top: 0;
  239. image{
  240. width: 100%;
  241. height: 100%;
  242. }
  243. }
  244. .title{
  245. width: 100%;
  246. font-family: PingFangSC, PingFang SC;
  247. font-weight: 400;
  248. font-size: 30rpx;
  249. color: #111111;
  250. line-height: 32rpx;
  251. text-align: center;
  252. padding: 22rpx 0;
  253. overflow: hidden;
  254. text-overflow: ellipsis;
  255. white-space: nowrap;
  256. }
  257. }
  258. }
  259. }
  260. }
  261. }
  262. </style>