| 123456789101112131415161718192021222324252627282930313233343536 |
- <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) {
- uni.navigateTo({
- url: url + `?mobile=${this.mobile}`,
- });
- },
- },
- onLoad(option) {
- this.mobile = option.mobile;
- },
- };
- </script>
- <style lang="scss" scoped>
- .securityCenter {
- .u-cell {
- line-height: normal;
- }
- }
- </style>
|