个人中心

master
xy 2 years ago
parent c37737032d
commit 5b07839cf6

@ -1,25 +1,32 @@
{ {
"easycom": { "easycom": {
"custom": { "custom": {
"autoscan": true, "autoscan": true,
"gal-(.*)": "@/GAL/components/gal-$1.vue" "gal-(.*)": "@/GAL/components/gal-$1.vue"
} }
}, },
"pages": [ //pageshttps://uniapp.dcloud.io/collocation/pages "pages": [
{ //pageshttps://uniapp.dcloud.io/collocation/pages
"path": "pages/index/index" {
}, "path": "pages/index/index"
{ },
"path" : "pages/login/index" {
}, "path": "pages/login/index"
{ },
"path" : "pages/answer/index" {
} "path": "pages/answer/index"
], },
"globalStyle": { {
"navigationBarTextStyle": "black", "path": "pages/me/me",
"navigationBarTitleText": "百步芳草·与理同行", "style": {
"navigationBarBackgroundColor": "#F8F8F8", "navigationStyle": "custom"
"backgroundColor": "#F8F8F8" }
} }
],
"globalStyle": {
"navigationBarTextStyle": "black",
"navigationBarTitleText": "百步芳草·与理同行",
"navigationBarBackgroundColor": "#F8F8F8",
"backgroundColor": "#F8F8F8"
}
} }

@ -0,0 +1,34 @@
<template>
<view>
<view class="bkg">
<view class="top">
<svg xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 750 320"
preserveAspectRatio="xMinYMin meet">
<path d="m 0 0 L 0 254 C 264 172 ,590 404, 750 282 L 750 0 z" fill="red"></path>
</svg>
</view>
</view>
</view>
</template>
<script>
export default {
data() {
return {};
}
}
</script>
<style lang="scss">
.bkg {
position: fixed;
inset: 0 0 0 0;
.top {
height: 24vh;
width: 100%;
}
}
</style>
Loading…
Cancel
Save