12345678910111213141516171819202122232425262728293031323334353637383940 |
- <template>
- <view>
- <u-navbar
- title="设置"
- title-color="#fff"
- :custom-back="customBack"
- :border-bottom="false"
- back-icon-color="#CCE8FF"
- :background="{background: '#008CFF' }"></u-navbar>
- </view>
- </template>
- <script>
- export default{
- data(){
- return{
-
- }
- },
- onLoad(){
-
- },
- onShow(){
-
- },
- methods:{
- customBack(){
- this.$u.route({
- // type:'switchTab',
- url: 'pages/index/index'
- });
- },
-
- }
- }
- </script>
- <style lang="scss" scoped>
- @import './setting.scss'
- </style>
|