1234567891011121314151617181920212223242526 |
- <template>
- <view class="">
- <commons-header title="生产"></commons-header>
- <view class="shengchang">
- <image src="../../static/2.png" mode="widthFix"></image>
- </view>
- </view>
- </template>
- <script>
- import commonsHeader from '../../components/commons-header/index.vue'
- export default {
- components:{
- commonsHeader
- },
- }
- </script>
- <style>
- .shengchang{
- padding: 40rpx 30rpx;
- margin-top: 100rpx;
- image{
- width: 100%;
- }
- }
- </style>
|