From 2b3c0e4355922737457c099668f44df20c65a629 Mon Sep 17 00:00:00 2001 From: lifizer <913626195@qq.com> Date: Wed, 15 May 2024 14:31:09 +0800 Subject: [PATCH 01/57] =?UTF-8?q?Feat(=E6=8A=BD=E5=A5=96):=E5=A2=9E?= =?UTF-8?q?=E5=8A=A0=E5=88=86=E4=BA=AB?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- api/lottery.js | 7 +++++++ pkg-video/views/lottery.vue | 15 +++++++++++++-- 2 files changed, 20 insertions(+), 2 deletions(-) diff --git a/api/lottery.js b/api/lottery.js index 14b42b6..dd81330 100644 --- a/api/lottery.js +++ b/api/lottery.js @@ -28,4 +28,11 @@ export function takePrize(lotteryRecordId){ * */ export function getLogs(page = 1, limit = 10) { return request.get('/lottery/dice/records',{page,limit}) +} + +/** + * 抽奖活动分享 + * */ +export function getLotteryShareInfo() { + return request.get('/lottery/shareImage') } \ No newline at end of file diff --git a/pkg-video/views/lottery.vue b/pkg-video/views/lottery.vue index 8f31e1d..75931e6 100644 --- a/pkg-video/views/lottery.vue +++ b/pkg-video/views/lottery.vue @@ -80,7 +80,7 @@ - - \ No newline at end of file From 3dc35f846420bcc152c8a3b1e59650627df01eb4 Mon Sep 17 00:00:00 2001 From: lifizer <913626195@qq.com> Date: Fri, 17 May 2024 18:04:53 +0800 Subject: [PATCH 04/57] =?UTF-8?q?Style:=E7=95=8C=E9=9D=A2=E7=BB=86?= =?UTF-8?q?=E8=8A=82=E8=B0=83=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pkg_product/views/nativeList.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg_product/views/nativeList.vue b/pkg_product/views/nativeList.vue index e591188..869d26f 100644 --- a/pkg_product/views/nativeList.vue +++ b/pkg_product/views/nativeList.vue @@ -172,7 +172,7 @@ export default { } .item { width: 345rpx; - height: 455rpx; + height: 465rpx; .cover { width: 345rpx; height: 345rpx; From 4a4f8ffdd2a61b13801833464a5a2bc363f02e29 Mon Sep 17 00:00:00 2001 From: lifizer <913626195@qq.com> Date: Mon, 20 May 2024 10:56:15 +0800 Subject: [PATCH 05/57] =?UTF-8?q?Fix(=E9=A6=96=E9=A1=B5):[#1544]=E9=A6=96?= =?UTF-8?q?=E9=A1=B5=E5=81=9A=E4=B8=80=E4=B8=AA=E5=9B=9E=E5=88=B0=E9=A1=B6?= =?UTF-8?q?=E9=83=A8=E7=9A=84=E6=8C=89=E9=92=AE=EF=BC=8C=E7=82=B9=E5=87=BB?= =?UTF-8?q?=E5=90=8E=E9=A1=B5=E9=9D=A2=E5=BE=80=E4=B8=8A=E5=9B=9E=E5=BC=B9?= =?UTF-8?q?=E5=88=B0=E9=A6=96=E9=A1=B5=E9=A1=B6=E9=83=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pages/home/index.vue | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) diff --git a/pages/home/index.vue b/pages/home/index.vue index 92e5382..27391a0 100644 --- a/pages/home/index.vue +++ b/pages/home/index.vue @@ -232,6 +232,14 @@ + + + @@ -380,7 +388,8 @@ export default { contentFestival: {}, countyFamous: {}, seasonalFood: {}, - pageKeyId: Object.freeze('home_index') + pageKeyId: Object.freeze('home_index'), + scrollTop: 0 } }, computed: mapGetters(["userInfo", 'isLogin']), @@ -443,6 +452,9 @@ export default { url: '/pkg-video/views/lottery' }) }, + onPageScroll(e) { + this.scrollTop = e.scrollTop + }, methods: { init() { let that = this; @@ -719,6 +731,12 @@ export default { query.fields({size: true, scrollOffset: true}, (data) => { console.log(JSON.stringify(data)) }).exec() + }, + setTopHandle() { + uni.pageScrollTo({ + scrollTop: 0, + duration: 200 + }) } } }; From de82fafe9ca07c1fe3514964e9d2c8648b6697e3 Mon Sep 17 00:00:00 2001 From: lifizer <913626195@qq.com> Date: Mon, 20 May 2024 11:13:04 +0800 Subject: [PATCH 06/57] =?UTF-8?q?Chore(=E9=A6=96=E9=A1=B5):=E4=BB=A3?= =?UTF-8?q?=E7=A0=81=E6=A0=BC=E5=BC=8F=E5=8C=96&=E5=8E=BB=E6=8E=89?= =?UTF-8?q?=E5=A4=9A=E4=BD=99=E7=9A=84=E5=BC=95=E7=94=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pages/home/index.vue | 341 +++++++++++++++++++------------------------ 1 file changed, 149 insertions(+), 192 deletions(-) diff --git a/pages/home/index.vue b/pages/home/index.vue index 27391a0..4ca6976 100644 --- a/pages/home/index.vue +++ b/pages/home/index.vue @@ -191,7 +191,7 @@ \ No newline at end of file From c2968d5da000b840a82aae0aedc06ca0f49f10c9 Mon Sep 17 00:00:00 2001 From: lifizer <913626195@qq.com> Date: Thu, 23 May 2024 16:24:38 +0800 Subject: [PATCH 14/57] =?UTF-8?q?Fix(=E6=88=91=E7=9A=84/=E8=AE=A2=E5=8D=95?= =?UTF-8?q?):[#1620]=E5=90=84=E7=8A=B6=E6=80=81=E8=AE=A2=E5=8D=95=E6=9F=A5?= =?UTF-8?q?=E7=9C=8B=E8=AE=A2=E5=8D=95=E8=AF=A6=E6=83=85=E5=90=8E=E8=BF=94?= =?UTF-8?q?=E5=9B=9E=E5=90=8E=E4=BC=9A=E8=B7=B3=E8=BD=AC=E5=88=B0=E2=80=9C?= =?UTF-8?q?=E5=85=A8=E9=83=A8=E2=80=9D=E8=AE=A2=E5=8D=95=EF=BC=8C=E4=B8=8D?= =?UTF-8?q?=E4=BC=9A=E5=9B=9E=E5=88=B0=E7=9B=B8=E5=BA=94=E8=AE=A2=E5=8D=95?= =?UTF-8?q?=E7=8A=B6=E6=80=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pages/order/MyOrder/index.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/order/MyOrder/index.vue b/pages/order/MyOrder/index.vue index cc6d81c..503e9c3 100644 --- a/pages/order/MyOrder/index.vue +++ b/pages/order/MyOrder/index.vue @@ -180,7 +180,7 @@ export default { }, computed: mapGetters(["userInfo"]), onShow: function () { - this.type = parseInt(this.$yroute.query.type) || 0; + this.type = this.type || parseInt(this.$yroute.query.type) || 0; this.changeType(this.type); this.getOrderData(); this.getOrderListReq(); From dbdb902e6bdf70c58523450a07834f56167a298a Mon Sep 17 00:00:00 2001 From: lifizer <913626195@qq.com> Date: Thu, 23 May 2024 16:26:31 +0800 Subject: [PATCH 15/57] =?UTF-8?q?Fix(=E8=AE=A2=E5=8D=95/=E8=AF=A6=E6=83=85?= =?UTF-8?q?):[#1614]=E4=B9=B0=E5=AE=B6=E7=95=99=E8=A8=80=E6=94=B9=E4=B8=BA?= =?UTF-8?q?=E9=9D=A0=E5=B7=A6=E6=8D=A2=E8=A1=8C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pages/order/OrderDetails/index.vue | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/pages/order/OrderDetails/index.vue b/pages/order/OrderDetails/index.vue index fd38dd7..0a6060a 100644 --- a/pages/order/OrderDetails/index.vue +++ b/pages/order/OrderDetails/index.vue @@ -130,7 +130,7 @@ 买家留言: - {{ orderInfo.mark }} + {{ orderInfo.mark }} @@ -770,4 +770,9 @@ export default { color: #FE5261; font-size: 26rpx; } +.item { + .conttent-left { + text-align: left !important; + } +} From f7dcdc22f1a1302c67298219f845db9ef4e90638 Mon Sep 17 00:00:00 2001 From: lifizer <913626195@qq.com> Date: Thu, 23 May 2024 16:33:53 +0800 Subject: [PATCH 16/57] =?UTF-8?q?Fix(=E6=88=91=E7=9A=84/=E6=94=B6=E8=97=8F?= =?UTF-8?q?):[#1622]=E6=9C=AA=E9=80=89=E6=8B=A9=E4=BB=BB=E4=BD=95=E9=A1=B9?= =?UTF-8?q?=E7=9B=AE=E7=82=B9=E5=87=BB=E2=80=9C=E5=88=A0=E9=99=A4=E2=80=9D?= =?UTF-8?q?=EF=BC=8C=E4=BB=8D=E4=BC=9A=E5=BC=B9=E5=87=BA=E6=98=AF=E5=90=A6?= =?UTF-8?q?=E7=A1=AE=E8=AE=A4=E5=88=A0=E9=99=A4=E5=AF=B9=E8=AF=9D=E6=A1=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pkg_user/views/myFavorite.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg_user/views/myFavorite.vue b/pkg_user/views/myFavorite.vue index afe1612..3fc03fa 100644 --- a/pkg_user/views/myFavorite.vue +++ b/pkg_user/views/myFavorite.vue @@ -251,7 +251,7 @@ export default { remove() { const _this = this const ids = [] - switch (that.tabsIndex) { + switch (_this.tabsIndex) { case 0: _this.productList.forEach(item => { if (item['state']) ids.push(item.id) From 86b927b4878837999a74ac1dda9c69ad024f6a74 Mon Sep 17 00:00:00 2001 From: lifizer <913626195@qq.com> Date: Mon, 27 May 2024 16:23:11 +0800 Subject: [PATCH 17/57] =?UTF-8?q?Fix(=E8=B4=AD=E7=89=A9=E8=BD=A6):[#1609]?= =?UTF-8?q?=E7=82=B9=E5=87=BB=E5=A2=9E=E5=87=8F=E5=95=86=E5=93=81=E6=95=B0?= =?UTF-8?q?=E9=87=8F=EF=BC=8C=E5=8F=96=E6=B6=88=E5=8A=A0=E8=BD=BD=E6=95=88?= =?UTF-8?q?=E6=9E=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pages/cart.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pages/cart.vue b/pages/cart.vue index 28ae0a3..ff7b0cf 100644 --- a/pages/cart.vue +++ b/pages/cart.vue @@ -342,11 +342,11 @@ export default { const { type } = e const value = good.cartNum + (type === 'plus' ? 1 : -1) const id = good.id - uni.showLoading() + // uni.showLoading() changeCartNum(id, value).then(res => { const { success } = res if (success) { - uni.hideLoading() + // uni.hideLoading() this.$set(this.list[index].carts[gIndex], 'cartNum', value) } }).catch(() => { From 9458e9347c9faebfb8068bbaff373d5dc0953a18 Mon Sep 17 00:00:00 2001 From: lifizer <913626195@qq.com> Date: Tue, 4 Jun 2024 17:54:30 +0800 Subject: [PATCH 18/57] =?UTF-8?q?Fix(=E6=88=91=E7=9A=84/=E8=AE=BE=E7=BD=AE?= =?UTF-8?q?/=E6=94=AF=E4=BB=98=E5=AF=86=E7=A0=81):[#1688]=E5=AF=86?= =?UTF-8?q?=E7=A0=81=E8=BE=93=E5=85=A5=E4=B8=8D=E8=A7=84=E8=8C=83=E6=97=B6?= =?UTF-8?q?=E4=BB=8D=E8=83=BD=E4=BF=9D=E5=AD=98=E6=88=90=E5=8A=9F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pkg_user/views/payPassword.vue | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkg_user/views/payPassword.vue b/pkg_user/views/payPassword.vue index 9f321cc..043c1f4 100644 --- a/pkg_user/views/payPassword.vue +++ b/pkg_user/views/payPassword.vue @@ -144,6 +144,10 @@ export default { return validatorDefaultCatch(e); } + if (payPwd.length < 6) { + that.$dialog.toast({ mes: "请输入6位支付密码" }) + return + } //网络请求 uni.showLoading(); modifyUserPayPwd({ From 2c514164da806a0403af9b1331564d29a9e8216c Mon Sep 17 00:00:00 2001 From: lifizer <913626195@qq.com> Date: Tue, 4 Jun 2024 17:56:09 +0800 Subject: [PATCH 19/57] =?UTF-8?q?Fix(=E6=88=91=E7=9A=84/=E6=8F=90=E7=8E=B0?= =?UTF-8?q?):[#1686,=20#1687]=E4=B8=8D=E8=BE=93=E5=85=A5=E4=BB=BB=E4=BD=95?= =?UTF-8?q?=E6=8F=90=E7=8E=B0=E9=87=91=E9=A2=9D,=E7=82=B9=E5=87=BB?= =?UTF-8?q?=E2=80=9C=E5=85=A8=E9=83=A8=E6=8F=90=E7=8E=B0=E2=80=9D/?= =?UTF-8?q?=E7=82=B9=E5=87=BB=E7=A9=BA=E7=99=BD=E9=A1=B5=E9=9D=A2=E6=8F=90?= =?UTF-8?q?=E7=8E=B0=E9=87=91=E9=A2=9D=E4=BC=9A=E8=87=AA=E5=8A=A8=E8=BE=93?= =?UTF-8?q?=E5=85=A50?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pkg_user/views/withdrawal.vue | 20 +++++++++++++++----- 1 file changed, 15 insertions(+), 5 deletions(-) diff --git a/pkg_user/views/withdrawal.vue b/pkg_user/views/withdrawal.vue index 6b96855..f59d11f 100644 --- a/pkg_user/views/withdrawal.vue +++ b/pkg_user/views/withdrawal.vue @@ -28,6 +28,7 @@ :customStyle="{ 'border': 0 }" + :disabled="commissionCount <= 0" placeholder-style="font-size:28rpx" type="digit" autofocus @@ -35,7 +36,11 @@ @input="balanceInputChange" /> - 全部提现 + 全部提现 @@ -199,7 +204,7 @@ export default { }, balanceInputChange(value) { let v = this.clearNoNum(value) - if (v > this.commissionCount) { + if (v >= this.commissionCount) { v = this.commissionCount } setTimeout(() => { @@ -207,8 +212,9 @@ export default { }, 0) }, balanceInputBlur(value) { + console.log(value) if (String(value).length == 0) { - this.amout = 0 + this.amout = '' return } if (value > this.commissionCount) { @@ -345,7 +351,7 @@ export default { }); }, withdrawalAll: function () { - if (this.commissionCount) { + if (parseFloat(this.commissionCount) > 0) { this.amout = this.commissionCount + '' } }, @@ -354,7 +360,7 @@ export default { res => { this.banks = res.data.extractBank this.minPrice = res.data.minPrice - this.commissionCount = this.$force2Decimal(res.data.commissionCount) + this.commissionCount = parseFloat(this.$force2Decimal(res.data.commissionCount)) this.gdAmount = parseFloat(res.data.gdAmount) this.gdLimit = parseFloat(res.data.gdLimit) this.feeRate = parseFloat(res.data.fl) @@ -432,6 +438,10 @@ export default { text-align: center; box-shadow: none; background: #28AAF4; + &.grey { + background-color: #f1f1f1; + color: #dcdcdc; + } } .vline { From 51bc828dc9d2d248e8a66d3314bb06e2bacda425 Mon Sep 17 00:00:00 2001 From: lifizer <913626195@qq.com> Date: Tue, 4 Jun 2024 17:58:05 +0800 Subject: [PATCH 20/57] =?UTF-8?q?Fix(=E6=88=91=E7=9A=84/=E8=AE=A2=E5=8D=95?= =?UTF-8?q?/=E9=80=80=E6=AC=BE):[#1689]=E4=B8=8A=E4=BC=A0=E5=9B=BE?= =?UTF-8?q?=E7=89=87=E5=92=8C=E9=80=80=E6=AC=BE=E7=90=86=E7=94=B1=E4=B8=A4?= =?UTF-8?q?=E9=A1=B9=E5=8A=A0=E4=B8=8A=E5=BF=85=E5=A1=AB=E6=A0=87=E8=AF=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pkg_orders/views/refund.vue | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/pkg_orders/views/refund.vue b/pkg_orders/views/refund.vue index 9d402a3..70b975a 100644 --- a/pkg_orders/views/refund.vue +++ b/pkg_orders/views/refund.vue @@ -3,7 +3,7 @@ - 上传图片 + *上传图片 - 退款理由 + *退款理由 @@ -232,6 +232,9 @@ export default { .title { margin-bottom: 0; + text { + color: #FF564A; + } } .option { From 344e0aa8889028f6fc21b6766606d8a86c177d51 Mon Sep 17 00:00:00 2001 From: lifizer <913626195@qq.com> Date: Thu, 13 Jun 2024 18:09:35 +0800 Subject: [PATCH 21/57] =?UTF-8?q?Feat(=E9=A1=B5=E9=9D=A2):=E7=9B=91?= =?UTF-8?q?=E5=90=AC=E9=A1=B5=E9=9D=A2=E6=89=93=E5=BC=80=E6=AC=A1=E6=95=B0?= =?UTF-8?q?=E5=92=8C=E9=A1=B5=E9=9D=A2=E5=81=9C=E7=95=99=E6=97=B6=E9=95=BF?= =?UTF-8?q?=E6=8E=A5=E5=8F=A3=E5=AF=B9=E6=8E=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- App.vue | 2 + api/public.js | 4 ++ config/page.js | 5 +- mixins/pageListenMixins.js | 27 +++++----- pages/home/index.vue | 2 +- pages/home/landMark.vue | 2 +- utils/request.js | 25 ++++++---- utils/util.js | 100 +++++++++++++++++++++++++++++++++---- 8 files changed, 131 insertions(+), 36 deletions(-) diff --git a/App.vue b/App.vue index d2204fc..52efa1a 100644 --- a/App.vue +++ b/App.vue @@ -1,7 +1,9 @@ \ No newline at end of file From f956c5a74c0d5e7d3839690d5d729c2689405fe5 Mon Sep 17 00:00:00 2001 From: lifizer <913626195@qq.com> Date: Fri, 21 Jun 2024 17:30:36 +0800 Subject: [PATCH 32/57] =?UTF-8?q?Fix(=E5=95=86=E5=93=81=E8=AF=A6=E6=83=85)?= =?UTF-8?q?:[#1842]=E9=9A=90=E8=97=8F=E9=94=80=E9=87=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pages/shop/GoodsCon/index.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/shop/GoodsCon/index.vue b/pages/shop/GoodsCon/index.vue index c6f3cec..bab8a6b 100644 --- a/pages/shop/GoodsCon/index.vue +++ b/pages/shop/GoodsCon/index.vue @@ -142,7 +142,7 @@ 库存:{{ dayInfo.stock }}{{ dayInfo.unitName }} {{ tempName }} - 销量:{{ dayInfo.sales }}{{ dayInfo.unitName }} + From eed49847c48b6e23b391b6ab2e265e6d33321778 Mon Sep 17 00:00:00 2001 From: lifizer <913626195@qq.com> Date: Fri, 21 Jun 2024 17:48:16 +0800 Subject: [PATCH 33/57] =?UTF-8?q?Fix(=E8=B4=A6=E6=88=B7=E6=98=8E=E7=BB=86)?= =?UTF-8?q?:[31841]=E8=B4=A6=E6=88=B7=E6=98=8E=E7=BB=86=E7=A9=BA=E7=99=BD?= =?UTF-8?q?=E6=97=B6=EF=BC=8C=E5=8A=A0=E4=B8=8A=E6=9A=82=E6=97=A0=E6=B6=88?= =?UTF-8?q?=E8=B4=B9=E8=AE=B0=E5=BD=95=E7=9A=84=E5=9B=BE=E7=89=87?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pages/user/UserBill/index.vue | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/pages/user/UserBill/index.vue b/pages/user/UserBill/index.vue index 0363a09..ce74d4e 100644 --- a/pages/user/UserBill/index.vue +++ b/pages/user/UserBill/index.vue @@ -25,6 +25,9 @@ + + + + From 44849db20d8a63feb00611a3aec0cc7f2f28a116 Mon Sep 17 00:00:00 2001 From: lifizer <913626195@qq.com> Date: Sun, 23 Jun 2024 11:39:24 +0800 Subject: [PATCH 34/57] =?UTF-8?q?Fix(=E5=85=A5=E9=A9=BB):[#1845,=20#1757]?= =?UTF-8?q?=E7=B1=BB=E5=9E=8B=E9=80=89=E6=8B=A9=E5=AD=98=E5=9C=A8=E5=85=BC?= =?UTF-8?q?=E5=AE=B9=E6=80=A7=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pkg_join/views/shop.vue | 62 ++++++++++---------- pkg_join/views/supplier.vue | 109 ++++++++++++++++++++---------------- 2 files changed, 90 insertions(+), 81 deletions(-) diff --git a/pkg_join/views/shop.vue b/pkg_join/views/shop.vue index 2e48110..9f4118e 100644 --- a/pkg_join/views/shop.vue +++ b/pkg_join/views/shop.vue @@ -149,20 +149,25 @@ - + - - -