shangjia1.1/pages/store/secret/secret.vue

36 lines
814 B
Vue

<template>
<view class="body">
<view class="wrapper">
<view class="store-menu">
<u-cell-group>
<u-cell
icon="warning"
title="注销帐号"
@click="deleteAccount"
></u-cell>
<u-cell
icon="lock"
title="修改/忘记密码"
@click="go2Page('/pages/store/modify_password/modify_password')"
></u-cell>
<u-cell
icon="phone"
title="修改登录手机号"
@click="go2Page('/pages/store/change_phone/change_phone')"
></u-cell>
</u-cell-group>
<view class="hr"></view>
</view>
</view>
</view>
</template>
<script src='./secret.js'>
</script>
<style lang="scss" scoped>
@import "./secret.scss";
</style>>