24 lines
568 B
Vue
24 lines
568 B
Vue
<template>
|
|
<view class="padding page">
|
|
<view class="padding bg-white">
|
|
<view class="flex justify-between padding-bottom solid-bottom">
|
|
<view>修改登录密码</view>
|
|
<view class="lg text-gray cuIcon-right"></view>
|
|
</view>
|
|
<view class="flex justify-between padding-top padding-bottom solid-bottom">
|
|
<view>注销账户</view>
|
|
<view class="lg text-gray cuIcon-right"></view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script setup>
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.page {
|
|
min-height: 100vh;
|
|
background: #EBF2FC;
|
|
}
|
|
</style> |