更新10.8

This commit is contained in:
许允枞 2024-10-08 18:37:33 +08:00
parent 3452957db9
commit 58812b9801

View File

@ -97,20 +97,22 @@
}, },
methods: { methods: {
goSignIn() { goSignIn() {
request({ if (this.isSignIn == true) {
url: 'business/integral/integralSettings/signInFunction', request({
method: 'post', url: 'business/integral/integralSettings/signInFunction',
data: { method: 'post',
storeId: uni.getStorageSync("storeId"), data: {
chainStoreId: uni.getStorageSync("chainStoreId") storeId: uni.getStorageSync("storeId"),
} chainStoreId: uni.getStorageSync("chainStoreId")
}).then((res) => { }
if (res.code == 200) { }).then((res) => {
console.log(res, 108); if (res.code == 200) {
this.show = true console.log(res, 108);
this.getList() this.show = true
} this.getList()
}) }
})
}
}, },
// //
getIsSignIn() { getIsSignIn() {