shengchang.vue 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. <template>
  2. <view class="supplyChain">
  3. <commons-header title="进销存"></commons-header>
  4. <!-- <view class="shengchang">
  5. <image src="../../static/1.png" mode="widthFix"></image>
  6. </view> -->
  7. <view class="" style="margin-top:140rpx">
  8. <view class="commons-title">
  9. 生产工单
  10. </view>
  11. <ul>
  12. <li>
  13. <image src="../../static/images/supplyChain/icon_gongdgl@2x.png"></image>
  14. <p>工单管理</p>
  15. </li>
  16. <li>
  17. <image src="../../static/images/supplyChain/icon_hetgl.png"></image>
  18. <p>合同管理</p>
  19. </li>
  20. </ul>
  21. </view>
  22. <view class="">
  23. <view class="commons-title">
  24. 生产计划
  25. </view>
  26. <ul>
  27. <li>
  28. <image src="../../static/images/supplyChain/icon_jihgl.png"></image>
  29. <p>计划管理</p>
  30. </li>
  31. <li>
  32. <image src="../../static/images/supplyChain/icon_renwzp.png"></image>
  33. <p>任务指派</p>
  34. </li>
  35. </ul>
  36. </view>
  37. <view class="">
  38. <view class="commons-title">
  39. 生产任务
  40. </view>
  41. <ul>
  42. <li>
  43. <image src="../../static/images/supplyChain/icon_renwlz.png"></image>
  44. <p>任务流转</p>
  45. </li>
  46. <li>
  47. <image src="../../static/images/supplyChain/icon_shengcbg.png"></image>
  48. <p>生产报工</p>
  49. </li>
  50. <li>
  51. <image src="../../static/images/supplyChain/icon_wangrk.png"></image>
  52. <p>完工入库</p>
  53. </li>
  54. </ul>
  55. </view>
  56. <view class="">
  57. <view class="commons-title">
  58. 线边管理
  59. </view>
  60. <ul>
  61. <li>
  62. <image src="../../static/images/supplyChain/icon_shengcbb.png"></image>
  63. <p>线边管理</p>
  64. </li>
  65. </ul>
  66. </view>
  67. <view class="">
  68. <view class="commons-title">
  69. 生产报表
  70. </view>
  71. <ul>
  72. <li>
  73. <image src="../../static/images/supplyChain/icon_fapgl@2x.png"></image>
  74. <p>生产报表</p>
  75. </li>
  76. </ul>
  77. </view>
  78. </view>
  79. </template>
  80. <script>
  81. import commonsHeader from '../../components/commons-header/index.vue'
  82. export default {
  83. components:{
  84. commonsHeader
  85. },
  86. }
  87. </script>
  88. <style lang="less">
  89. .supplyChain{
  90. ul{
  91. margin:0;
  92. padding: 0 40rpx;
  93. overflow: hidden;
  94. li{
  95. list-style: none;
  96. width: 25%;
  97. float: left;
  98. text-align: center;
  99. font-size: 24rpx;
  100. margin-bottom: 20rpx;
  101. image{
  102. width:80rpx;
  103. height: 80rpx;
  104. }
  105. }
  106. }
  107. }
  108. .shengchang{
  109. padding: 40rpx 30rpx;
  110. margin-top: 100rpx;
  111. image{
  112. width: 100%;
  113. }
  114. }
  115. </style>