zncc.vue 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210
  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. </view>
  29. <!-- 合作与咨询 -->
  30. <uForm></uForm>
  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. ::v-deep .desc .memo{
  113. padding-right: 193rpx;
  114. }
  115. .ques {
  116. background: url(../../static/imgs/txtBg.png) no-repeat;
  117. background-size: 100% 100%;
  118. padding: 48rpx 54rpx 74rpx;
  119. .quesTitle {
  120. padding: 0 111rpx;
  121. font-size: 42rpx;
  122. color: #333;
  123. line-height: 60rpx;
  124. text-align: center;
  125. font-weight: bold;
  126. }
  127. .quesContent {
  128. .li {
  129. height: 72rpx;
  130. background-color: #ffff;
  131. border-radius: 16rpx;
  132. border: 2rpx solid #F7910B;
  133. color: #111111;
  134. line-height: 72rpx;
  135. font-size: 28rpx;
  136. font-weight: bold;
  137. margin-top: 34rpx;
  138. text-align: center;
  139. }
  140. }
  141. }
  142. .content {
  143. padding-bottom: 98rpx;
  144. .boxs {
  145. width: 100%;
  146. padding: 0 0;
  147. box-sizing: border-box;
  148. background: #FFFFFF;
  149. font-size: 0;
  150. .box {
  151. width: 100%;
  152. margin-top: 48rpx;
  153. .title {
  154. font-family: PingFang-SC, PingFang-SC;
  155. font-weight: bold;
  156. font-size: 36rpx;
  157. color: #111111;
  158. line-height: 50rpx;
  159. text-align: center;
  160. }
  161. &.fajg {
  162. image {
  163. width: 100%;
  164. margin-top: 20rpx;
  165. }
  166. }
  167. &.ggld{
  168. background: #FFE7D0 url(../../static/imgs/txtBg2.png) top center no-repeat;
  169. padding:0 20rpx 1rpx ;
  170. box-sizing: border-box;
  171. margin-bottom: -66rpx;
  172. .title{
  173. padding: 48rpx 0;
  174. }
  175. .li{
  176. padding: 36rpx 40rpx;
  177. background-color: #fff;
  178. margin-bottom: 48rpx;
  179. border-radius: 12rpx;
  180. .tit{
  181. color: #111111;
  182. font-size: 32rpx;
  183. font-weight: bold;
  184. }
  185. .subtit{
  186. color: #666666;
  187. font-size: 24rpx;
  188. margin:24rpx 0 35rpx ;
  189. }
  190. image{
  191. width: 100%;
  192. height: 340rpx;
  193. }
  194. }
  195. }
  196. }
  197. }
  198. }
  199. </style>