12345678910111213141516171819202122232425262728293031323334353637383940 |
- <template>
- <view class="top">
- <image class="logo" src="../../static/imgs/fmcs_logo.png"></image>
- <image class="menu" src="../../static/imgs/fmcs_menu.png" @click="showMenus"></image>
- </view>
- </template>
- <script>
- export default {
- data(){
- return {
-
- }
- },
- methods:{
- showMenus(){
-
- }
- }
- }
- </script>
- <style scoped lang="less">
- .top{
- width: 100%;
- padding: 18rpx 30rpx;
- box-sizing: border-box;
- display: flex;
- align-items: center;
- justify-content: space-between;
- .logo{
- width: 228rpx;
- height: 54rpx;
- }
- .menu{
- width: 48rpx;
- height: 48rpx;
- }
- }
- </style>
|