36 lines
514 B
Vue
36 lines
514 B
Vue
<template>
|
|
<view class="content">
|
|
<view class="search flex-between">
|
|
<view class="">
|
|
|
|
</view>
|
|
<image src="@/static/avatar.png" mode="aspectFill"></image>
|
|
</view>
|
|
<view class="contentclass">
|
|
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
components: {},
|
|
data() {
|
|
return {};
|
|
},
|
|
onLoad() {},
|
|
computed: {},
|
|
mounted() {},
|
|
onShow() {},
|
|
methods: {}
|
|
};
|
|
</script>
|
|
|
|
<style scoped lang="scss">
|
|
.content {
|
|
.search{
|
|
width: 100%;
|
|
background: #fff;
|
|
}
|
|
}
|
|
</style> |