| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- <template>
- <view class="page">
- <uni-Cell :celllist="celllist">
- <template #customContent="{ item }">
- <view v-if="item.title=='手机号'" class="dis a-c">
- <text style="font-size: 30rpx;color: #666;">18335592986</text>
- </view>
- </template>
- </uni-Cell>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- celllist: [{
- title: "重置密码",
- url: "/pages/set/resetPassword",
- clickType: 'navigate',
- },
- {
- title: "注销账号",
- url: "/pages/set/accountCancellation",
- clickType: 'navigate',
- }
- ]
- }
- },
- onShow() {
- },
- onLoad() {
- },
- methods: {
- }
- }
- </script>
- <style lang="scss" scoped>
- .page {
- background-color: #F8F8F8;
- height: 100vh;
- }
- </style>
|