Browse Source

[新增] 登录页面

master
LAPTOP-D7TKRI82\邓 4 years ago
parent
commit
19ca0b3920
  1. 6
      pages.json
  2. 38
      pages/login/index.vue

6
pages.json

@ -70,6 +70,12 @@
"style": {
"navigationBarTitleText": "联系客服"
}
},
{
"path": "pages/login/index",
"style": {
"navigationBarTitleText": "登录"
}
}
],
"globalStyle": {

38
pages/login/index.vue

@ -0,0 +1,38 @@
<template>
<view>
<view class="lf-row-center lf-flex-column box">
<image class="img"></image>
<view>游客jdsfbuskdnko</view>
<button class="btn">
<u-icon name="weixin-fill" color="#ffffff"></u-icon>
<text>绑定微信</text>
</button>
<view>暂不绑定继续操作</view>
</view>
</view>
</template>
<script>
export default {
data(){
return {
}
},
onLoad(){
},
methods: {
}
}
</script>
<style lang="scss" scoped="scoped">
.box{
padding: 60rpx 32rpx;
width: 750rpx;
height: auto;
box-sizing: border-box;
}
</style>
Loading…
Cancel
Save