Merge branch 'youda' of http://123.207.203.228:3000/shang/yfs into youda

This commit is contained in:
18631081161 2025-04-25 11:55:47 +08:00
commit 5f3161e9d2
12 changed files with 2437 additions and 2389 deletions

19
App.vue
View File

@ -224,17 +224,16 @@ button.hide {
}
@keyframes m-zoom {
0% {
transform: scale(1);
}
0% {
transform: scale(1);
}
50% {
transform: scale(0.9);
}
50% {
transform: scale(0.9);
}
100% {
transform: scale(1);
}
100% {
transform: scale(1);
}
}
</style>

View File

@ -47,7 +47,7 @@ const defaultConfig = {
"exchange_times": "2",
"balance_name": "钻石",
"balance_icon": "https://image.zfunbox.cn/app/icons/20250412/a482b527477e74f8a18ec02ebc7f0b4e.png",
"currency1_name": "UU币",
"currency1_icon": "https://image.zfunbox.cn/app/icons/20250412/3d1741965e9439372d1ce101bd110616.png",
"currency2_name": "达达券",
@ -67,6 +67,9 @@ const defaultConfig = {
// 配置类
class ConfigManager {
static getShareImageUrl() {
return "https://image.zfunbox.cn/icon/fenxiang.jpg";//this.getAppSetting('share_image_url');
}
/**
* 初始化并加载配置
* 在应用启动时调用
@ -179,7 +182,7 @@ class ConfigManager {
let goodType = this.get('good_type');
if (goodType != null) {
if (this.GetVersion()) {
return goodType.filter(item => item.is_show === 1 && (item.value === 2||item.value === 0)).map(item => {
return goodType.filter(item => item.is_show === 1 && (item.value === 2 || item.value === 0)).map(item => {
return {
id: item.value,
title: item.name

View File

@ -47,6 +47,14 @@ export default {
guize: ''
}
},
onShareAppMessage() {
let imageUrl = this.$config.getShareImageUrl();
return {
imageUrl: imageUrl,
title: "友达上线,来就送!",
path: '/pages/shouye/index?pid=' + uni.getStorageSync('userinfo').ID
}
},
methods: {
items(item) {
this.$c.to({

View File

@ -121,7 +121,14 @@ export default {
endedLoaded: false, //
}
},
onShareAppMessage() {
let imageUrl = this.$config.getShareImageUrl();
return {
imageUrl: imageUrl,
title: "友达上线,来就送!",
path: '/pages/infinite/index'
}
},
async onLoad() {
this.loadOngoingData();
},

View File

@ -169,7 +169,9 @@ export default {
PageContainer
},
onShareAppMessage() {
let imageUrl = this.$config.getShareImageUrl();
return {
imageUrl: imageUrl,
title: this.bonusData.title,
path: '/pages/infinite/bonus_house_details?goods_id=' + this.goods_id
}

View File

@ -95,6 +95,14 @@ export default {
components: {
PageContainer
},
onShareAppMessage() {
let imageUrl = this.$config.getShareImageUrl();
return {
imageUrl: imageUrl,
title: "友达上线,来就送!",
path: '/pages/infinite/index'
}
},
data() {
return {
tipVisible: false,

View File

@ -26,6 +26,14 @@ export default {
list: []
}
},
onShareAppMessage() {
let imageUrl = this.$config.getShareImageUrl();
return {
imageUrl: imageUrl,
title: "友达上线,来就送!",
path: '/pages/shouye/index?pid=' + uni.getStorageSync('userinfo').ID
}
},
methods: {
//
getWelfareList() {

View File

@ -144,6 +144,14 @@ export default {
components: {
EmptyState: () => import('@/components/empty-state/empty-state.vue')
},
onShareAppMessage() {
let imageUrl = this.$config.getShareImageUrl();
return {
imageUrl: imageUrl,
title: "友达上线,来就送!",
path: '/pages/shouye/index?pid=' + uni.getStorageSync('userinfo').ID
}
},
data() {
return {
statusBarHeight: 0,

File diff suppressed because it is too large Load Diff

View File

@ -245,10 +245,11 @@ export default {
},
onShareAppMessage() {
let that = this;
let imageUrl = this.$config.getShareImageUrl();
return {
imageUrl: imageUrl,
title: this.$config.getAppSetting("app_name") + ",正版潮玩手办一番赏",
imageUrl: that.advert[0].imgurl,
path: "/pages/shouye/index?pid=" + uni.getStorageSync("userinfo").ID,
};
},
@ -371,7 +372,7 @@ export default {
keyword: that.keyword,
},
success: function (res) {
let _data = res.data.data;
let isWXPay = that.$config.GetVersion()
if (isWXPay) {

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff