2021-05-13 11:03:32 +08:00
|
|
|
<template>
|
|
|
|
<view class="securityCenter">
|
|
|
|
<u-cell-group>
|
|
|
|
<u-cell-item title="修改密码" @click="navigateTo('/pages/mine/set/securityCenter/editPassword')"></u-cell-item>
|
|
|
|
</u-cell-group>
|
|
|
|
</view>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
export default {
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
mobile: "", //存储手机号
|
|
|
|
};
|
|
|
|
},
|
|
|
|
|
|
|
|
methods: {
|
|
|
|
navigateTo(url) {
|
2022-07-20 18:24:49 +08:00
|
|
|
this.$navigateTo({
|
2021-08-26 09:48:32 +08:00
|
|
|
url: url,
|
2021-05-13 11:03:32 +08:00
|
|
|
});
|
|
|
|
},
|
|
|
|
},
|
|
|
|
};
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
.securityCenter {
|
|
|
|
.u-cell {
|
|
|
|
line-height: normal;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|