2026-03-17 14:00:55 +08:00
|
|
|
<template>
|
|
|
|
|
<Cn-page :loading="loading">
|
|
|
|
|
<view class="mine" slot="body">
|
|
|
|
|
<view class="mine-nav" style="margin-top: 20rpx">
|
|
|
|
|
<view class="mine-nav-label">ITIC</view>
|
|
|
|
|
<switch
|
|
|
|
|
style="transform: scale(0.8)"
|
|
|
|
|
color="#376cf3"
|
|
|
|
|
@change="change('iticFunction')"
|
|
|
|
|
:checked="config.iticFunction === 1"
|
|
|
|
|
/>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="mine-nav" style="border-bottom: none">
|
|
|
|
|
<view class="mine-nav-label">F47</view>
|
|
|
|
|
<switch
|
|
|
|
|
style="transform: scale(0.8)"
|
|
|
|
|
color="#376cf3"
|
|
|
|
|
@change="change('f47Function')"
|
|
|
|
|
:checked="config.f47Function === 1"
|
|
|
|
|
/>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</Cn-page>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
import { queryUserPushConfig, updatePushConfig } from '@/common/api/mine'
|
|
|
|
|
|
|
|
|
|
export default {
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
|
|
|
|
loading: true,
|
|
|
|
|
config: {},
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
onLoad() {
|
|
|
|
|
this.init()
|
|
|
|
|
},
|
|
|
|
|
methods: {
|
|
|
|
|
init() {
|
|
|
|
|
queryUserPushConfig().then((res) => {
|
|
|
|
|
this.config = res.data
|
|
|
|
|
this.loading = false
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
change(type) {
|
|
|
|
|
this.config[type] = this.config[type] === 1 ? 0 : 1
|
2026-03-30 08:43:13 +08:00
|
|
|
// updatePushConfig(this.config).then((res) => {
|
|
|
|
|
// let str = ''
|
|
|
|
|
// switch (type) {
|
|
|
|
|
// case 'iticFunction':
|
|
|
|
|
// str = 'ITIC'
|
|
|
|
|
// break
|
|
|
|
|
// case 'f47Function':
|
|
|
|
|
// str = 'F47'
|
|
|
|
|
// break
|
|
|
|
|
// }
|
|
|
|
|
// this.$util.toast(`${str}配置${this.config[type] === 1 ? '开启' : '关闭'}成功`)
|
|
|
|
|
// })
|
2026-03-17 14:00:55 +08:00
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
onLoad() {
|
|
|
|
|
this.init()
|
|
|
|
|
},
|
2026-03-30 08:43:13 +08:00
|
|
|
onUnload() {
|
|
|
|
|
updatePushConfig(this.config).then((res) => {
|
|
|
|
|
// this.$util.toast(`配置修改成功!`)
|
|
|
|
|
})
|
|
|
|
|
},
|
2026-03-17 14:00:55 +08:00
|
|
|
}
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style lang="scss">
|
|
|
|
|
.mine {
|
|
|
|
|
.title {
|
|
|
|
|
padding: 0 20rpx;
|
|
|
|
|
font-size: 28rpx;
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mine-header {
|
|
|
|
|
padding: 200rpx 34rpx 34rpx;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
background: $uni-theme-white;
|
|
|
|
|
margin-bottom: 20rpx;
|
|
|
|
|
box-shadow: 0 4rpx 8rpx #e7e7e74c;
|
|
|
|
|
|
|
|
|
|
.mine-header-head {
|
|
|
|
|
margin-right: 30rpx;
|
|
|
|
|
height: 128rpx;
|
|
|
|
|
width: 128rpx;
|
|
|
|
|
border-radius: $uni-theme-radius;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mine-header-name {
|
|
|
|
|
margin-right: 30rpx;
|
|
|
|
|
flex: 1;
|
|
|
|
|
font-size: 36rpx;
|
|
|
|
|
color: #111;
|
|
|
|
|
font-weight: 700;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mine-nav {
|
|
|
|
|
padding: 34rpx;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
background: $uni-theme-white;
|
|
|
|
|
border-bottom: 1rpx solid #e8e8e8;
|
|
|
|
|
|
|
|
|
|
&-icon {
|
|
|
|
|
margin-right: 30rpx;
|
|
|
|
|
height: 44rpx;
|
|
|
|
|
width: 44rpx;
|
|
|
|
|
border-radius: $uni-theme-radius;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&-label {
|
|
|
|
|
margin-right: 30rpx;
|
|
|
|
|
flex: 1;
|
|
|
|
|
font-size: 28rpx;
|
|
|
|
|
color: #111;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</style>
|