shengchang.vue 455 B

1234567891011121314151617181920212223242526
  1. <template>
  2. <view class="">
  3. <commons-header title="生产"></commons-header>
  4. <view class="shengchang">
  5. <image src="../../static/2.png" mode="widthFix"></image>
  6. </view>
  7. </view>
  8. </template>
  9. <script>
  10. import commonsHeader from '../../components/commons-header/index.vue'
  11. export default {
  12. components:{
  13. commonsHeader
  14. },
  15. }
  16. </script>
  17. <style>
  18. .shengchang{
  19. padding: 40rpx 30rpx;
  20. margin-top: 100rpx;
  21. image{
  22. width: 100%;
  23. }
  24. }
  25. </style>