updatePass.vue 1010 字节
<template>
	<view class="content">
		<view style="padding-top: 16px;">
			<view class="inputC">
				<input type="text" value="" placeholder="当前密码" />
			</view>
			<view class="inputC">
				<input type="text" value="" placeholder="新密码" />
			</view>
			<view class="inputC">
				<input type="text" value="" placeholder="确认密码" />
			</view>
		</view>

		<view style="margin: 90px 16px;">
			<view class="saveBox"><text class="save">保存</text></view>
		</view>
	</view>
</template>

<script>
	export default {
		data() {
			return {

			}
		},
		methods: {

		}
	}
</script>

<style>
	.inputC {
		background: #ffffff;
		height: 46px;
		display: flex;
		align-items: center;
		margin-bottom: 16px;
		padding: 0 16px;
	}

	.saveBox {
		background: #4674c9;
		border-radius: 8rpx;
		height: 96rpx;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.save {
		color: #FFFFFF;
		font-size: 32rpx;
	}

	.content {
		background-color: #F2F3F5;
		height: 100vh;
	}
</style>