123456789101112131415161718192021222324252627282930313233343536 |
- <template>
- <view class="content">
- <fxyk-navbar :isSearch="false" title="修改密码"/>
- <fxyk-cell ref="password" class="u-m-t-54" title="新密码" bgColor="#fff" :leftSlot="false" :arrow="false" rightSlot placeholder="请输入6位密码"/>
- <fxyk-cell ref="affirm_possword" style="margin-top:31rpx" title="确认新密码" bgColor="#fff" :leftSlot="false" :arrow="false" rightSlot placeholder="请输入再次输入新密码"/>
- <fxyk-button style="margin-top:100rpx" content="提交" @click.native="submit"></fxyk-button>
- </view>
- </template>
- <script>
- export default {
- methods: {
- // 提交
- submit() {
- // 密码
- this.$refs.password.value
- // 确认密码
- this.$refs.affirm_possword.value
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- page {
- width: 100%;
- height: 100%;
- }
- .content {
- width: 100%;
- height: 100%;
- min-height: 100vh;
- background-color: $yk-bg-color;
- }
- </style>
|