1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- <template>
- <view>
-
- <u-navbar
- title="设置"
- title-color="#fff"
- :custom-back="customBack"
- :border-bottom="false"
- back-icon-color="#CCE8FF"
- :background="{background: 'linear-gradient(145deg, #41AFF9 0%, #2D8CFB 100%)' }"></u-navbar>
-
- <view class="cell-group" style="margin-top: 30rpx;">
- <u-cell-group>
- <u-cell-item title="修改密码" @click="openPage('pages/modifypwd/modifypwd')">
- <u-icon slot="icon" custom-prefix="custom-icon" size="35" name="wodecheliang"></u-icon>
- </u-cell-item>
- </u-cell-group>
- </view>
-
- </view>
- </template>
- <script>
- export default{
- data(){
- return{
-
- }
- },
- onLoad(){
-
- },
- onShow(){
-
- },
- methods:{
- customBack(){
- this.$u.route({
- // type:'switchTab',
- url: 'pages/index/index'
- });
- },
- openPage(path) {
- // console.log('path',path);
- this.$u.route({
- url: path
- });
- },
-
- }
- }
- </script>
- <style lang="scss" scoped>
- @import './setting.scss'
- </style>
|