12345678910111213141516171819202122232425262728 |
- <template>
- <view class="">
- <commons-header title="进销存"></commons-header>
- <view class="shengchang">
- <image src="../../static/1.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>
|