znpc.vue 7.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280
  1. <template>
  2. <view class="content">
  3. <!-- 顶部logo和菜单 -->
  4. <uTop data-aos="fade-down"></uTop>
  5. <!-- 标题和介绍 -->
  6. <uDesc :title="dTitle" :description="dMemo" :bg="descBg" data-aos="slide-right" data-aos-delay="300"></uDesc>
  7. <view class="box1" data-aos="zoom-in" data-aos-delay="600">
  8. <view class="title">您的企业是否正面临以下烦恼?</view>
  9. </view>
  10. <view class="box2" :bg="descBg" data-aos="slide-left">
  11. <div class="title">智能排产方案</div>
  12. <image src="../../static/imgs/znpc_img2.png" mode="widthFix" @click="e=>showBigImg(e,'../../static/imgs/znpc_img2.png')"></image>
  13. </view>
  14. <view class="box3">
  15. <block v-if="functionList.length">
  16. <view class="boxTwo">
  17. <uFunction :showTitle="false" :title="item.title" :list="item.list" v-for="(item,index) in functionList" :key="index" data-aos="slide-right"></uFunction>
  18. </view>
  19. </block>
  20. </view>
  21. <view class="box4">
  22. <image src="../../static/imgs/line.png" mode=""></image>
  23. </view>
  24. <view class="box5">
  25. <view class="title" data-aos="slide-left">应用场景</view>
  26. <view class="items">
  27. <view class="item" v-for="(item,index) in yycjList" :key="index">
  28. <view class="boxTwo" data-aos="slide-right">
  29. <view class="img">
  30. <image :src="item.img" mode=""></image>
  31. </view>
  32. <view class="title">{{item.title}}</view>
  33. <view class="desc">{{item.desc}}</view>
  34. </view>
  35. </view>
  36. </view>
  37. </view>
  38. <!-- 合作与咨询 -->
  39. <uForm data-aos="zoom-in"></uForm>
  40. </view>
  41. </template>
  42. <script>
  43. export default {
  44. data(){
  45. return {
  46. dTitle:'智能排产系统',
  47. dMemo:'科学合理的智能排产,能帮助企业实现按需生产,精益制透,柔性运作,助力生产制造型企业数智化转型。',
  48. descBg:'../../static/imgs/znpc_msbg.png',
  49. functionList:[
  50. {
  51. list:[
  52. {
  53. title:'可视化计划与排程闭环体系',
  54. desc:'通过人机料等多维度的约束与订单排序和资源选定的排程自动生成精确到时分秒的工序/机台/产线计划,后与生产实绩结合滚动排程,做到计划指导生产,可通过可视化甘特图/图表进行监控和预警。'
  55. },
  56. {
  57. title:'计划甘特图',
  58. desc:'以图形化方式展示计划的生产进度,时间线上的任务一目了然,便于企业直观地了解各个任务在时间线上的分布。'
  59. },
  60. {
  61. title:'资源负荷图',
  62. desc:'以图形方式展示资源的利用情况,清晰呈现资源的忙闲时段,帮助企业合理安排资源,避免资源闲置和浪费,确保生产计划的高效执行。'
  63. },
  64. {
  65. title:'生产报工',
  66. desc:'按资源管理工单计划、记录、统计和分析员工的各项工作内容和所花费的时间、可以采集各工序标准工时、考核员工绩效、核算人工成本,并通过系统实时的报表统计,提高工作效率。'
  67. },
  68. {
  69. title:'工作计划进度',
  70. desc:'以表格形式详细列出排产结果,提供详细的数据支持,便于企业进行数据分析和挖掘,为决策提供更为精准的数据依据。'
  71. }
  72. ]
  73. }
  74. ],
  75. yycjList:[
  76. {
  77. img:'../../static/imgs/znpc_yycj1.png',
  78. title:'生产准备',
  79. desc:'通过生产排班,开班检查、开线点检等生产作业前检查功能,确保生产准备就绪'
  80. },
  81. {
  82. img:'../../static/imgs/znpc_yycj2.png',
  83. title:'工艺管理',
  84. desc:'图形化工艺路线,支持依据工站自定义维护工序和集成审批流,确保工艺可控'
  85. },
  86. {
  87. img:'../../static/imgs/znpc_yycj3.png',
  88. title:'生产执行',
  89. desc:'透明化、严控化生产执行,实现生产过程合规操作,防止跳序、乱序等异常发生'
  90. },
  91. {
  92. img:'../../static/imgs/znpc_yycj4.png',
  93. title:'条码管理',
  94. desc:'支持条码规则维护、条码生成、标签打印功能(支持工单、在线、零散、模板等)'
  95. },
  96. {
  97. img:'../../static/imgs/znpc_yycj5.png',
  98. title:'质量管理',
  99. desc:'多维度生成来料、入库、首、巡、出厂检规则,配合返修、维修、返工管理等'
  100. },
  101. {
  102. img:'../../static/imgs/znpc_yycj6.png',
  103. title:'人力资源管理',
  104. desc:'可导入或对接HR系统获取人员基础信息,实现人员技能培训、工时申报等业务'
  105. },
  106. {
  107. img:'../../static/imgs/znpc_yycj7.png',
  108. title:'异常管理',
  109. desc:'实现生产异常快速响应,建立异常产品快速锁定,解锁,及rework管理等'
  110. },
  111. {
  112. img:'../../static/imgs/znpc_yycj8.png',
  113. title:'计划管理',
  114. desc:'满足人工对各系统设备运行模式进行调控,并支持通过时间表、人工手动操作实现一键批量设备控制'
  115. }
  116. ],
  117. }
  118. },
  119. created() {
  120. uni.setNavigationBarTitle({
  121. title: '智能排产系统'
  122. })
  123. },
  124. methods:{
  125. showBigImg(e,imgUrl) {
  126. let current = e.target.dataset.src;
  127. let that = this;
  128. uni.previewImage({
  129. current,
  130. urls: [imgUrl],
  131. longPressActions: {
  132. itemList: ['保存图片'],
  133. success(data) {
  134. that.saveImage(imgUrl);
  135. },
  136. fail(err) {
  137. that.$showToast(err.errMsg);
  138. }
  139. }
  140. })
  141. },
  142. saveImage(url) {
  143. let that = this;
  144. uni.downloadFile({
  145. url,
  146. success(res) {
  147. let filePath = res.tempFilePath;
  148. uni.saveImageToPhotosAlbum({
  149. filePath,
  150. success() {
  151. that.$showToast('保存成功');
  152. },
  153. fail(err) {
  154. that.$showToast('保存失败');
  155. }
  156. })
  157. }
  158. })
  159. }
  160. }
  161. }
  162. </script>
  163. <style scoped lang="less">
  164. ::v-deep .desc .memo{
  165. padding-right: 253rpx;
  166. }
  167. .content{
  168. padding-bottom: 44rpx;
  169. overflow: hidden;
  170. .boxTwo{
  171. width: 100%;
  172. overflow: hidden;
  173. }
  174. .box1{
  175. width: 100%;
  176. height: 940rpx;
  177. background: url(../../static/imgs/znpc_img1.png) no-repeat;
  178. background-size: 100% 100%;
  179. .title{
  180. font-family: PingFang-SC, PingFang-SC;
  181. font-weight: bold;
  182. font-size: 42rpx;
  183. color: #333333;
  184. line-height: 60rpx;
  185. text-align: center;
  186. margin: 48rpx 138rpx 0;
  187. }
  188. }
  189. .box2{
  190. margin-top: 48rpx;
  191. .title{
  192. font-family: PingFang-SC, PingFang-SC;
  193. font-weight: bold;
  194. font-size: 36rpx;
  195. color: #111111;
  196. line-height: 50rpx;
  197. text-align: center;
  198. }
  199. image{
  200. width: 100%;
  201. margin-top: 40rpx;
  202. }
  203. }
  204. .box3{
  205. width: 100%;
  206. padding: 0 30rpx;
  207. box-sizing: border-box;
  208. margin-top: -16rpx;
  209. overflow: hidden;
  210. }
  211. .box4{
  212. margin-top: 64rpx;
  213. width: 100%;
  214. height: 10rpx;
  215. image{
  216. width: 100%;
  217. height: 100%;
  218. }
  219. }
  220. .box5{
  221. width: 100%;
  222. padding: 0 30rpx;
  223. box-sizing: border-box;
  224. margin-top: 64rpx;
  225. .title{
  226. font-family: PingFang-SC, PingFang-SC;
  227. font-weight: bold;
  228. font-size: 36rpx;
  229. color: #111111;
  230. line-height: 50rpx;
  231. text-align: center;
  232. }
  233. .items{
  234. display: flex;
  235. justify-content: space-between;
  236. flex-wrap: wrap;
  237. .item{
  238. width: calc(50% - 25rpx);
  239. margin-top: 48rpx;
  240. overflow: hidden;
  241. .img{
  242. width: 320rpx;
  243. height: 200rpx;
  244. image{
  245. width: 100%;
  246. height: 100%;
  247. }
  248. }
  249. .title{
  250. font-family: PingFang-SC, PingFang-SC;
  251. font-weight: bold;
  252. font-size: 32rpx;
  253. color: #111111;
  254. line-height: 45rpx;
  255. text-align: left;
  256. margin-top: 20rpx;
  257. }
  258. .desc{
  259. font-family: PingFangSC, PingFang SC;
  260. font-weight: 400;
  261. font-size: 24rpx;
  262. color: #666666;
  263. line-height: 33rpx;
  264. margin-top: 16rpx;
  265. }
  266. }
  267. }
  268. }
  269. }
  270. </style>