zncc.vue 4.9 KB

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