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.

31 lines
433 B

<template>
<view class="accountSecurity-v">
<u-cell-group>
<u-cell-item title="注销账号" @click="openPage('/pages/my/cancellation/index')"></u-cell-item>
</u-cell-group>
</view>
</template>
<script>
export default {
data() {
return {
}
},
methods: {
openPage(path) {
uni.navigateTo({
url: path
})
}
}
}
</script>
<style lang="scss">
page {
background-color: #f0f2f6;
}
</style>