You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
757 B
37 lines
757 B
<template> |
|
<view class="page"> |
|
<view class="input"> |
|
<uni-easyinput type="password" v-model="password" placeholder="请输入旧密码"></uni-easyinput> |
|
</view> |
|
<view class="input"> |
|
<uni-easyinput type="password" v-model="password" placeholder="请输入新密码"></uni-easyinput> |
|
</view> |
|
<view class="input"> |
|
<uni-easyinput type="password" v-model="password" placeholder="请再次输入新密码"></uni-easyinput> |
|
</view> |
|
<button type="primary" @click="submit('valiForm')">确认</button> |
|
</view> |
|
</template> |
|
|
|
<script> |
|
export default { |
|
data() { |
|
return { |
|
|
|
} |
|
}, |
|
methods: { |
|
|
|
} |
|
} |
|
</script> |
|
|
|
<style scoped lang="scss"> |
|
.page { |
|
padding: 20px; |
|
background-color: #fff; |
|
} |
|
.input { |
|
margin-bottom: 15px; |
|
} |
|
</style>
|
|
|