jhzh
2025-04-03 db12897dc68c68d40c557aa59ad78022e2b30ac2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<template>
    <div class="layout-page">
        <v-header :title="$t('accountSettings.b0')"></v-header>
        <!-- 内容 -->
        <div class="h-max bg-panel-5 p-x-md layout-main">
            <div class="per-bot  p-t-md border-b border-gray-7 d-flex flex-col">
                <span class="color-light p-b-sm">{{$t('accountSettings.a2')}}</span>
                <van-field :placeholder="$t('accountSettings.b1')" maxlength="12"/>
            </div>
           
        </div>
        <div class="p-x-md bg-panel-5">
             <van-button class=" w-max fn-lg m-b-sm" color="#f05319" type="info">{{$t('common.save')}}</van-button>
        </div>
       
    </div>
</template>
<script>
export default {
    
}
</script>
<style lang="scss" scoped>
    .head-account {
        font-size: 20px;
    }
    ::v-deep .van-cell{
        padding: 0 !important;
    }
</style>