index.vue 433 B

123456789101112131415161718192021222324252627282930
  1. <template>
  2. <view class="accountSecurity-v">
  3. <u-cell-group>
  4. <u-cell-item title="注销账号" @click="openPage('/pages/my/cancellation/index')"></u-cell-item>
  5. </u-cell-group>
  6. </view>
  7. </template>
  8. <script>
  9. export default {
  10. data() {
  11. return {
  12. }
  13. },
  14. methods: {
  15. openPage(path) {
  16. uni.navigateTo({
  17. url: path
  18. })
  19. }
  20. }
  21. }
  22. </script>
  23. <style lang="scss">
  24. page {
  25. background-color: #f0f2f6;
  26. }
  27. </style>