混淆,改动代码

This commit is contained in:
GYJ
2024-12-21 10:38:04 +08:00
parent a7f6209b08
commit f87a4b285e
34 changed files with 780 additions and 782 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());
}
});