| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- <template>
- <view class="pages">
- <div class="top">
- <div style="line-height:60px;text-align:center;">
- 完成身份实名后可享受会员权益,实名信息仅可修改一次
- </div>
- <u--input :customStyle="{height: '40px'}" placeholder="请输入姓名" border="surround" v-model="value" @change="change"></u--input>
- <u--input :customStyle="{height: '40px'}" placeholder="请输入身份证号" border="surround" v-model="value" @change="change"></u--input>
- </div>
- <div class="save-btn">
- <u-button type="primary">保存</u-button>
- </div>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- }
- },
- methods: {
- }
- }
- </script>
- <style lang="scss" scoped>
- .pages {
- width: 100vw;
- height: 100vh;
- background: #f5f5f5;
- }
- .top {
- background: #fff;
- }
- .save-btn {
- text-align: center;
- // margin-top:20px;
- position: fixed;
- bottom: 0;
- width: 100%;
- padding: 30px;
- box-sizing: border-box;
- }
- </style>
|