diff --git a/pages.json b/pages.json index d24744b002e6746dccb332fb460ab0b599decf75..58e509dd556330b50301e40fe2f079ff33f13f98 100755 --- a/pages.json +++ b/pages.json @@ -132,6 +132,12 @@ "style": { "navigationBarTitleText": "è´¦å·è®¾ç½®-è°›å®å¤šå¤šå•†åŸŽ" } + }, + { + "path": "pages/setinfo/setinfo", + "style": { + "navigationBarTitleText": "è´¦å·è®¾ç½®-è°›å®å¤šå¤šå•†åŸŽ" + } } ], "globalStyle": { diff --git a/pages/setaccount/setaccount.vue b/pages/setaccount/setaccount.vue index 00b893259852a909b8605e5c5a376e8630c56ebe..de8b5289227a6b5463d739bee7c750c0dd758aef 100644 --- a/pages/setaccount/setaccount.vue +++ b/pages/setaccount/setaccount.vue @@ -37,7 +37,7 @@ </template> <script> - import TopBar from '../../components/TopBar/TopBar' + import TopBar from '../../components/TopBar/TopBar'; export default { data() { return { diff --git a/pages/setinfo/setinfo.vue b/pages/setinfo/setinfo.vue new file mode 100644 index 0000000000000000000000000000000000000000..5ed3b2cafb9d332598cfcdafac7c2811c897f756 --- /dev/null +++ b/pages/setinfo/setinfo.vue @@ -0,0 +1,46 @@ +<template> + <view class="main"> + <TopBar /> + <view> + <view class="set_title">请完æˆä»¥ä¸‹è®¤è¯</view> + <view class="set_subtitle">请输入131****0038收到的çŸä¿¡éªŒè¯ç </view> + <view class="flex"></view> + </view> + </view> +</template> + +<script> + import TopBar from '../../components/TopBar/TopBar' + export default { + data() { + return { + + } + }, + components: { + TopBar + } + } +</script> + +<style lang="less" scoped> + .main { + padding: 80rpx 40rpx 0; + .flex { + + } + .set_title { + font-size: 32rpx; + color: #212121; + line-height: 44rpx; + font-family:PingFangSC-Medium,PingFang SC; + font-weight:500; + } + .set_subtitle { + font-size: 28rpx; + color: #212121; + line-height: 40rpx; + margin-top: 16rpx; + } + } +</style>