1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <template>
- <view>
- <view class="cmd">
- <view class="s_item" @click="go('')">
- <text class="title">账号信息</text>
- <text class="icon arrow"></text>
- </view>
- <view class="s_item" @click="go('')">
- <text class="title">通用</text>
- <text class="icon arrow"></text>
- </view>
- <view class="s_item" @click="go('')">
- <text class="title">消息通知</text>
- <text class="icon arrow"></text>
- </view>
- <view class="s_item" @click="go('')">
- <text class="title">帮助与反馈</text>
- <text class="icon arrow"></text>
- </view>
- <view class="s_item" @click="go('/pages/personal/editPassword')">
- <text class="title">修改密码</text>
- <text class="icon arrow"></text>
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
-
- }
- },
- methods: {
- go(url) {
- uni.navigateTo({ url: url });
- },
- }
- }
- </script>
- <style lang="scss">
- page {
- background-color: $pg;
- }
- </style>
|