zncc.vue 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217
  1. <template>
  2. <view class="content">
  3. <!-- 顶部logo和菜单 -->
  4. <uTop data-aos="fade-down"></uTop>
  5. <!-- 标题和介绍 -->
  6. <uDesc :title="dTitle" :description="dMemo" :bg="bannerBg" data-aos="slide-right" data-aos-delay="300"></uDesc>
  7. <view class="ques" data-aos="slide-left" data-aos-delay="600">
  8. <view class="quesTitle">仓储的管理,您是否有以下烦恼?</view>
  9. <view class="quesContent">
  10. <view class="li" v-for="(item,index) in qiesContent" :key="index">{{item}}</view>
  11. </view>
  12. </view>
  13. <view class="boxs">
  14. <view class="fajg box" data-aos="slide-right" data-aos-delay="900">
  15. <view class="title">智能仓储架构图</view>
  16. <image src="../../static/imgs/zncc0.png" mode="widthFix" @click="showBigImg"></image>
  17. </view>
  18. <view class="ggld box">
  19. <view class="title" data-aos="slide-left">功能亮点</view>
  20. <view class="list">
  21. <view class="li2">
  22. <view class="li" v-for="(item,index) in gnlds" :key="index" data-aos="slide-left">
  23. <view class="tit">{{item.txt}}</view>
  24. <view class="subtit">{{item.subtit}}</view>
  25. <image :src="item.img"></image>
  26. </view>
  27. </view>
  28. </view>
  29. </view>
  30. </view>
  31. <!-- 合作与咨询 -->
  32. <uForm data-aos="zoom-in"></uForm>
  33. </view>
  34. </template>
  35. <script>
  36. export default {
  37. data() {
  38. return {
  39. dTitle: '智能仓储管理平台',
  40. bannerBg: '../../static/imgs/znccBg.png',
  41. dMemo: '基于物流运作过程中仓库内部精益化管理的作业运作平台,包含供应商协同平台,仓库收、发、存及内部各类管控流程的实现',
  42. qiesContent: ['仓库现场物料堆放混乱,找货难', '作业员凭经验作业,容易错发漏发物料', '录单不及时,导致账实不符,库存准确率低', '先进先出管理不严谨、导致产生不必要的呆滞库存',
  43. '拣货和发料路线不科学,导致搬运成本增高'
  44. ],
  45. gnlds:[{
  46. txt:'智能仓储管理',
  47. subtit:'高效仓储作业流程,全程可溯可视',
  48. img:'../../static/imgs/zncc1.png'
  49. },{
  50. txt:'丰富作业策略',
  51. subtit:'多种策略规则,满足多元化仓储管理需求',
  52. img:'../../static/imgs/zncc2.png'
  53. },{
  54. txt:'多系统对接',
  55. subtit:'无缝对接第三方管理系统,加强供应链管控',
  56. img:'../../static/imgs/zncc3.png'
  57. },{
  58. txt:'数据自动采集',
  59. subtit:'支持PDA/RF,轻松实现仓储数据的自动化采集',
  60. img:'../../static/imgs/zncc4.png'
  61. },{
  62. txt:'多硬件集成',
  63. subtit:'集成各种自动化设备,提升仓库自动化程度',
  64. img:'../../static/imgs/zncc5.png'
  65. }]
  66. }
  67. },
  68. created() {
  69. uni.setNavigationBarTitle({
  70. title: '智能仓储管理系统'
  71. })
  72. },
  73. methods: {
  74. showBigImg(e) {
  75. let current = e.target.dataset.src;
  76. let that = this;
  77. uni.previewImage({
  78. current,
  79. urls: ['../../static/imgs/zncc0.png'],
  80. longPressActions: {
  81. itemList: ['保存图片'],
  82. success(data) {
  83. let imgUrl = '../../static/imgs/zncc0.png';
  84. that.saveImage(imgUrl);
  85. },
  86. fail(err) {
  87. that.$showToast(err.errMsg);
  88. }
  89. }
  90. })
  91. },
  92. saveImage(url) {
  93. let that = this;
  94. uni.downloadFile({
  95. url,
  96. success(res) {
  97. let filePath = res.tempFilePath;
  98. uni.saveImageToPhotosAlbum({
  99. filePath,
  100. success() {
  101. that.$showToast('保存成功');
  102. },
  103. fail(err) {
  104. that.$showToast('保存失败');
  105. }
  106. })
  107. }
  108. })
  109. }
  110. }
  111. }
  112. </script>
  113. <style scoped lang="less">
  114. ::v-deep .desc .memo{
  115. padding-right: 193rpx;
  116. }
  117. .ques {
  118. background: url(../../static/imgs/txtBg.png) no-repeat;
  119. background-size: 100% 100%;
  120. padding: 48rpx 54rpx 74rpx;
  121. .quesTitle {
  122. padding: 0 111rpx;
  123. font-size: 42rpx;
  124. color: #333;
  125. line-height: 60rpx;
  126. text-align: center;
  127. font-weight: bold;
  128. }
  129. .quesContent {
  130. .li {
  131. height: 72rpx;
  132. background-color: #ffff;
  133. border-radius: 16rpx;
  134. border: 2rpx solid #F7910B;
  135. color: #111111;
  136. line-height: 72rpx;
  137. font-size: 28rpx;
  138. font-weight: bold;
  139. margin-top: 34rpx;
  140. text-align: center;
  141. }
  142. }
  143. }
  144. .content {
  145. padding-bottom: 98rpx;
  146. overflow: hidden;
  147. .boxs {
  148. width: 100%;
  149. padding: 0 0;
  150. box-sizing: border-box;
  151. background: #FFFFFF;
  152. font-size: 0;
  153. .box {
  154. width: 100%;
  155. margin-top: 48rpx;
  156. .title {
  157. font-family: PingFang-SC, PingFang-SC;
  158. font-weight: bold;
  159. font-size: 36rpx;
  160. color: #111111;
  161. line-height: 50rpx;
  162. text-align: center;
  163. }
  164. &.fajg {
  165. image {
  166. width: 100%;
  167. margin-top: 20rpx;
  168. }
  169. }
  170. &.ggld{
  171. background: #FFE7D0 url(../../static/imgs/txtBg2.png) top center no-repeat;
  172. padding:0 20rpx 1rpx ;
  173. box-sizing: border-box;
  174. margin-bottom: -66rpx;
  175. .title{
  176. padding: 48rpx 0;
  177. }
  178. .li2{
  179. width: 100%;
  180. overflow: hidden;
  181. }
  182. .li{
  183. padding: 36rpx 40rpx;
  184. background-color: #fff;
  185. margin-bottom: 48rpx;
  186. border-radius: 12rpx;
  187. .tit{
  188. color: #111111;
  189. font-size: 32rpx;
  190. font-weight: bold;
  191. }
  192. .subtit{
  193. color: #666666;
  194. font-size: 24rpx;
  195. margin:24rpx 0 35rpx ;
  196. }
  197. image{
  198. width: 100%;
  199. height: 340rpx;
  200. }
  201. }
  202. }
  203. }
  204. }
  205. }
  206. </style>