This commit is contained in:
GaoHao
2024-12-21 10:54:51 +08:00
187 changed files with 44018 additions and 869 deletions

View File

@@ -30,7 +30,7 @@
onLoad() {
//pc展示用户端二维码 854
this.$Request.getT("/app/common/type/854").then(res => {
if (res.code == 0) {
if (res.code === 0) {
if (res.data && res.data.value) {
this.erweima = res.data.value;
}
@@ -38,7 +38,7 @@
});
//pc展示用户端文字 853
this.$Request.getT("/app/common/type/853").then(res => {
if (res.code == 0) {
if (res.code === 0) {
if (res.data && res.data.value) {
this.content = res.data.value;
}
@@ -58,7 +58,7 @@
follow() {
if (this.$queue.getData("openid")) {
this.$Request.get("/tao/wx/follow/" + this.$queue.getData("openid")).then(res => {
if (res === true) {
if (res) {
window.location.replace(this.$queue.publicYuMing());
}
});

View File

@@ -176,7 +176,7 @@
<u-badge :offset="[0,20]" type="error" :count="numCount"></u-badge>
</view>
<view class="tool-box-content-item flex align-center justify-center flex-wrap"
@click="goNav('/me/jilu/jilu')">
@click="goNav('/me/jilu/record')">
<view class="tool-box-content-item-img">
<image src="../../static/images/me/vlishi.png" mode=""></image>
</view>
@@ -251,16 +251,21 @@
</u-popup>
<!-- 抖音im客服 -->
<ttMsg />
<other-xuanfu></other-xuanfu>
</view>
</template>
<script>
import ttMsg from '../../components/ttMsg/ttMsg.vue'
import httpsRequest from '../../common/httpRequest.js'
import otherXuanfu from '@/components/other-xuafu.vue'
export default {
components: {
ttMsg
ttMsg,otherXuanfu
},
data() {
return {
@@ -308,9 +313,9 @@
this.token = uni.getStorageSync('token')
if (this.token) {
this.getMyMoney()
this.getJifen()
this.getPoints()
this.$u.api.userinfo().then(res => {
if (res.code == 0 && res.data) {
if (res.code === 0 && res.data) {
uni.setStorageSync('zhiFuBao', res.data.zhiFuBao)
uni.setStorageSync('zhiFuBaoName', res.data.zhiFuBaoName)
uni.setStorageSync('userName', res.data.userName)
@@ -327,7 +332,7 @@
userId: uni.getStorageSync('userId')
}
this.$u.api.userVip(data).then(res => {
if (res.code == 0 && res.data && res.data.isVip == 2) {
if (res.code === 0 && res.data && res.data.isVip === 2) {
this.isVIP = true;
this.endTime = res.data.endTime
uni.setStorageSync('isVIP', true)
@@ -342,7 +347,7 @@
this.userName = uni.getStorageSync('userName')
this.isVIP = uni.getStorageSync('isVIP')
this.getMyLoveNum()
this.getMyZhuiNum()
this.getMyFansNum()
} else {
this.isLogin = false
this.isVIP = false
@@ -359,10 +364,10 @@
httpsRequest.getT("app/common/type/919", {}).then(res => {
console.log(res);
if (res.code == 0) {
if (res.code === 0) {
const sysInfo = uni.getSystemInfoSync();
let isIos = sysInfo.platform == 'ios'
this.isShowMoneyPay = !(res.data.value == '1' && isIos)
let isIos = sysInfo.platform === 'ios'
this.isShowMoneyPay = !(res.data.value === '1' && isIos)
}
});
},
@@ -380,7 +385,7 @@
sdkContent: this.kami
}
this.$Request.postT('/app/sdkInfo/sdkExchange', data).then(res => {
if (res.code == 0) {
if (res.code === 0) {
uni.showToast({
title: '兑换成功'
})
@@ -389,7 +394,7 @@
userId: uni.getStorageSync('userId')
}
this.$u.api.userVip(datas).then(rest => {
if (rest.code == 0 && rest.data && rest.data.isVip == 2) {
if (rest.code === 0 && rest.data && rest.data.isVip === 2) {
this.isVIP = true;
this.endTime = rest.data.endTime
uni.setStorageSync('isVIP', true)
@@ -425,7 +430,7 @@
classify: 2
}
this.$Request.getT('/app/courseCollect/selectByUserId', data).then(res => {
if (res.code == 0) {
if (res.code === 0) {
this.myLoveNum = res.data.total
} else {
this.myLoveNum = 0
@@ -433,14 +438,14 @@
})
},
//获取我追剧的数量
getMyZhuiNum() {
getMyFansNum() {
let data = {
page: 1,
limit: 1,
classify: 1
}
this.$Request.getT('/app/courseCollect/selectByUserId', data).then(res => {
if (res.code == 0) {
if (res.code === 0) {
this.myZhui = res.data.total
} else {
this.myZhui = 0
@@ -450,9 +455,9 @@
/**
* 获取积分
*/
getJifen() {
getPoints() {
this.$Request.getT('/app/integral/selectByUserId').then(res => {
if (res.code == 0) {
if (res.code === 0) {
this.jifen = res.data.integralNum
} else {
this.jifen = 0
@@ -476,7 +481,7 @@
*/
getMyMoney() {
this.$Request.getT('/app/moneyDetails/selectUserMoney').then(res => {
if (res.code == 0) {
if (res.code === 0) {
this.moneyNum = res.data.money
this.userInfo = res.data
// this.$Request.getT('/app/invite/selectInviteMoney').then(ret => {
@@ -519,15 +524,15 @@
goMsg() {
let kefu = uni.getStorageSync('kefu'); // 用户端联系方式 1 手机号 2企业微信
let kefuPhone = uni.getStorageSync('kefuPhone');
if (kefu == 1) {
if (kefu === 1) {
uni.navigateTo({
url: '/me/setting/kefu'
})
} else if (kefu == 3) {
} else if (kefu === 3) {
uni.makePhoneCall({
phoneNumber: kefuPhone //仅为示例
});
} else if (kefu == 2) {
} else if (kefu === 2) {
// #ifdef MP-WEIXIN
let that = this
try {
@@ -571,7 +576,7 @@
console.log(e)
let token = uni.getStorageSync('token')
if (token) {
if (type == 'tabbar') {
if (type === 'tabbar') {
uni.switchTab({
url: e
})
@@ -593,10 +598,10 @@
this.$u.api.bannerList({
classify: '3'
}).then(res => {
if (res.code == 0 && res.data) {
if (res.code === 0 && res.data) {
let arr = []
res.data.forEach(ret => {
if (ret.state == 1) {
if (ret.state === 1) {
arr.push(ret)
}
})

View File

@@ -1,7 +1,7 @@
<template>
<view>
<view class="usermain">
<view class="usermain-item u-border-bottom">
<view class="userMain">
<view class="userMain-item u-border-bottom">
<view>头像</view>
<view>
<!-- #ifdef MP-WEIXIN -->
@@ -16,7 +16,7 @@
<!-- #endif -->
</view>
</view>
<view class="usermain-item item-padding u-border-bottom">
<view class="userMain-item item-padding u-border-bottom">
<view>用户名</view>
<view>
<view class="cu-form-group">
@@ -24,14 +24,14 @@
</view>
</view>
</view>
<!-- <view class="usermain-item item-padding">
<!-- <view class="userMain-item item-padding">
<view >姓名</view>
<view class="cu-form-group">
<input v-model="realName" placeholder="请填写您的真实姓名" />
</view>
</view> -->
<view class="usermain-item item-padding u-border-bottom">
<view class="userMain-item item-padding u-border-bottom">
<view>手机</view>
<view>
<!-- #ifndef MP-WEIXIN -->
@@ -52,7 +52,7 @@
</view>
</view>
<!-- <view class="usermain-item item-padding" @click="goMyAddress">
<!-- <view class="userMain-item item-padding" @click="goMyAddress">
<view >地址管理</view>
<view>
@@ -63,7 +63,7 @@
</view> -->
</view>
<view class="footer-btn">
<view class="usermain-btn" @click="messagebtn()">保存</view>
<view class="userMain-btn" @click="messagebtn()">保存</view>
</view>
</view>
</template>
@@ -99,7 +99,7 @@
code: code
}
this.$Request.postT('/app/Login/wxPhone', data).then(res => {
if (res.code == 0) {
if (res.code === 0) {
this.phone = res.data.phone_info.purePhoneNumber;
} else {
uni.showToast({
@@ -294,7 +294,7 @@
getUserInfo() {
let userId = uni.getStorageSync('userId')
this.$u.api.userinfo().then(res => {
if (res.code == 0) {
if (res.code === 0) {
this.userName = res.data.userName;
this.phone = res.data.phone;
this.phones = res.data.phone
@@ -427,11 +427,11 @@
height: 100%;
}
.usermain {
.userMain {
background: #FFFFFF;
}
.usermain-item {
.userMain-item {
display: flex;
align-items: center;
margin-left: 40rpx;
@@ -440,7 +440,7 @@
/* border-bottom: 2rpx solid #f2f2f2; */
}
.usermain-item.item-padding {
.userMain-item.item-padding {
padding: 0 40rpx 0 0;
}
@@ -461,7 +461,7 @@
margin-top: 150rpx;
}
.footer-btn .usermain-btn {
.footer-btn .userMain-btn {
color: #FFFFFF;
background: #ff7581;
text-align: center;