From 459f6b31e655d962c733cc01245a8148a112281d Mon Sep 17 00:00:00 2001 From: lifizer <913626195@qq.com> Date: Mon, 11 Mar 2024 11:04:54 +0800 Subject: [PATCH 01/20] =?UTF-8?q?Fix(=E5=AF=BB=E8=B6=A3=E5=91=B3):?= =?UTF-8?q?=E8=8E=B7=E5=8F=96=E5=AE=9A=E4=BD=8D=E5=92=8C=E8=8E=B7=E5=8F=96?= =?UTF-8?q?=E5=88=97=E8=A1=A8=E6=98=AF=E5=BC=82=E6=AD=A5=EF=BC=8C=E5=AF=BC?= =?UTF-8?q?=E8=87=B4=E5=AE=9A=E4=BD=8D=E6=88=90=E5=8A=9F=E4=B9=8B=E5=90=8E?= =?UTF-8?q?=E8=8E=B7=E5=BE=97=E7=9A=84=E5=9F=8E=E5=B8=82=E4=B8=8E=E5=88=97?= =?UTF-8?q?=E8=A1=A8=E6=95=B0=E6=8D=AE=E4=B8=8D=E4=B8=80=E8=87=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit (cherry picked from commit cb92a1f44fd85763a700a2ad88e07d0d60e0d79a) --- pages/cloud/haveFun.vue | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/pages/cloud/haveFun.vue b/pages/cloud/haveFun.vue index 6ce0365..97ec84d 100644 --- a/pages/cloud/haveFun.vue +++ b/pages/cloud/haveFun.vue @@ -10,7 +10,7 @@ export default { page: 1, typeList: [], typeIndex: 0, - cityName: "昆明市", + cityName: "", hotelList: [], } }, @@ -18,8 +18,6 @@ export default { this.getMapData(); getHotelTypeList().then(({data}) => { this.typeList = data; - console.log("getHotelTypeList") - this.search(); }); }, onShow() { @@ -32,6 +30,9 @@ export default { } }, onReachBottom() { + if (!this.cityName) { + return + } this.page++; this.fetchList(); }, @@ -54,6 +55,7 @@ export default { const {latitude, longitude} = map[1]; const address = await getCurAddress(latitude, longitude); this.cityName = address[1].data.result.ad_info.city; + this.search(); } }, From a27c35ba2d7afa68a86491836ba166dbd9dc817d Mon Sep 17 00:00:00 2001 From: modendeveloper Date: Tue, 1 Apr 2025 10:31:51 +0800 Subject: [PATCH 02/20] =?UTF-8?q?Fix=EF=BC=9A3443=20=E3=80=90=E5=95=86?= =?UTF-8?q?=E5=9F=8E=E5=B0=8F=E7=A8=8B=E5=BA=8F=E3=80=91=E4=B8=AA=E4=BA=BA?= =?UTF-8?q?=E4=B8=BB=E9=A1=B5--=E6=8F=90=E7=8E=B0=E7=94=B3=E8=AF=B7--?= =?UTF-8?q?=E6=8F=90=E7=8E=B0=E8=AE=B0=E5=BD=95=E5=A2=9E=E5=8A=A0=E6=9A=82?= =?UTF-8?q?=E6=97=A0=E8=AE=B0=E5=BD=95=E7=9A=84=E6=8F=90=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit (cherry picked from commit 17810ee741ca459727ad596519d45ba1efc2bc0f) --- pkg_user/views/withdrawalLog.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg_user/views/withdrawalLog.vue b/pkg_user/views/withdrawalLog.vue index 9813651..0e3d0e8 100644 --- a/pkg_user/views/withdrawalLog.vue +++ b/pkg_user/views/withdrawalLog.vue @@ -28,7 +28,7 @@ - + From e21c4aa669a92d9e9af08aa6a57be359bb69cf78 Mon Sep 17 00:00:00 2001 From: modendeveloper Date: Tue, 1 Apr 2025 10:57:47 +0800 Subject: [PATCH 03/20] =?UTF-8?q?Fix=EF=BC=9A3385=20=E3=80=90=E5=95=86?= =?UTF-8?q?=E5=9F=8E=E5=B0=8F=E7=A8=8B=E5=BA=8F=E3=80=91=E5=A4=9A=E4=BB=BD?= =?UTF-8?q?=E5=95=86=E5=93=81=E7=A4=BC=E5=8C=85=E6=98=BE=E7=A4=BA=E5=B7=B2?= =?UTF-8?q?=E9=A2=86=E5=8F=96=E6=95=B0=E9=87=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit (cherry picked from commit f2b6bc18e21ad3e4a7d2e18a3aba59cdef0a5453) --- pkg_user/views/giftList.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg_user/views/giftList.vue b/pkg_user/views/giftList.vue index cc8e735..82f7c94 100644 --- a/pkg_user/views/giftList.vue +++ b/pkg_user/views/giftList.vue @@ -46,7 +46,7 @@ {{ item.payPrice }} - 数量 X {{ cart.cartNum }} + 已领取{{cart.receiveNum}}/{{ cart.cartNum }} From 6af66ec5e0c69ceaa93f661c2a4c51cac05187d9 Mon Sep 17 00:00:00 2001 From: modendeveloper Date: Tue, 1 Apr 2025 11:02:52 +0800 Subject: [PATCH 04/20] =?UTF-8?q?Fix=EF=BC=9A3537=20=E3=80=90=E5=95=86?= =?UTF-8?q?=E5=9F=8E=E5=B0=8F=E7=A8=8B=E5=BA=8F=E3=80=91=E5=95=86=E8=AF=A6?= =?UTF-8?q?=E9=A1=B5=E8=BE=93=E5=85=A5=E5=95=86=E5=93=81=E6=95=B0=E9=87=8F?= =?UTF-8?q?=E8=B6=85=E8=BF=873=E4=BD=8D=E6=88=964=E4=BD=8D=EF=BC=8C?= =?UTF-8?q?=E6=95=B0=E9=87=8F=E6=98=BE=E7=A4=BA=E6=95=88=E6=9E=9C=E9=9C=80?= =?UTF-8?q?=E8=A6=81=E4=BC=98=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit (cherry picked from commit 8728c6e738cb714803f97e025348d4cc0afa9342) --- components/ProductWindow.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/ProductWindow.vue b/components/ProductWindow.vue index a75f2f9..63c57c0 100644 --- a/components/ProductWindow.vue +++ b/components/ProductWindow.vue @@ -52,7 +52,7 @@ :max="attrObj.productSelect.stock" @input="inputNumer" v-model="cartNumber" - style="height: 55rpx !important;" + style="height: 55rpx !important; width:80rpx !important" class="item v12-font-36 v12-font-bold v12-dark-text cart-btn" /> Date: Tue, 1 Apr 2025 11:05:27 +0800 Subject: [PATCH 05/20] =?UTF-8?q?Fix=EF=BC=9A3531=20=E3=80=90=E5=95=86?= =?UTF-8?q?=E5=9F=8E=E5=B0=8F=E7=A8=8B=E5=BA=8F=E3=80=91=E5=BA=97=E9=93=BA?= =?UTF-8?q?=E9=80=89=E6=8B=A9=E7=95=8C=E9=9D=A2=E8=B0=83=E6=95=B4=EF=BC=8C?= =?UTF-8?q?=E6=8C=89=E9=92=AE=E6=94=B9=E4=B8=BA=E7=BA=A2=E8=89=B2=E8=89=B2?= =?UTF-8?q?=E5=80=BC=EF=BC=9A#BD3124?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit (cherry picked from commit 426348932faee6f1d32052bb1fe0e1e1ca7f4503) --- pagesInn/components/jin-edit/homeList.vue | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/pagesInn/components/jin-edit/homeList.vue b/pagesInn/components/jin-edit/homeList.vue index f66523b..8559e6d 100644 --- a/pagesInn/components/jin-edit/homeList.vue +++ b/pagesInn/components/jin-edit/homeList.vue @@ -88,15 +88,5 @@ export default { width: fit-content; margin-bottom: 20rpx; } -.pop-title::after{ - content: ''; - position: absolute; - bottom: 0rpx; - left: 0; - width: 100%; - height: 5px; - background-color: #BD3124; - border-radius: 20rpx; - opacity: 0.5; -} + \ No newline at end of file From 23dc945f439ea659696caa2f8483474e6f2a7d27 Mon Sep 17 00:00:00 2001 From: modendeveloper Date: Tue, 1 Apr 2025 11:08:58 +0800 Subject: [PATCH 06/20] =?UTF-8?q?Fix=EF=BC=9A3525=20=E3=80=90=E4=BE=9B?= =?UTF-8?q?=E5=BA=94=E9=93=BE=E5=B0=8F=E7=A8=8B=E5=BA=8F=E3=80=91=E5=AE=A2?= =?UTF-8?q?=E6=9C=8D=E6=B6=88=E6=81=AF=E2=80=94=E5=9C=A8=E5=95=86=E5=9F=8E?= =?UTF-8?q?=E5=B0=8F=E7=A8=8B=E5=BA=8F=E7=AB=AF=E5=88=A0=E9=99=A4=E6=B6=88?= =?UTF-8?q?=E6=81=AF=E8=AE=B0=E5=BD=95=E5=90=8E=EF=BC=8C=E4=BE=9B=E5=BA=94?= =?UTF-8?q?=E9=93=BE=E5=B0=8F=E7=A8=8B=E5=BA=8F=EF=BC=88=E5=95=86=E5=AE=B6?= =?UTF-8?q?=E7=AB=AF=EF=BC=89=E7=9A=84=E5=AE=A2=E6=9C=8D=E6=B6=88=E6=81=AF?= =?UTF-8?q?=E8=AE=B0=E5=BD=95=E4=BC=9A=E8=B7=9F=E7=9D=80=E5=88=A0=E9=99=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit (cherry picked from commit 4dcfa23a10ffc64374135e8b3fdc0b974ca398aa) --- pkg_common/views/roomLogs.vue | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pkg_common/views/roomLogs.vue b/pkg_common/views/roomLogs.vue index 045e4df..3fafe72 100644 --- a/pkg_common/views/roomLogs.vue +++ b/pkg_common/views/roomLogs.vue @@ -89,7 +89,10 @@ export default { uni.request({ url: _this.$SERVICE_API_URL + '//chat-remove', method: 'POST', - data: {room_id: id}, + data: { + room_id: id, + remove_from: 'user' + }, success:(res)=>{ if(res.data.status_code === 200) { _this.fetchList() From 26145a1259fac505bbe3a352cd969ca115c5a7b6 Mon Sep 17 00:00:00 2001 From: modendeveloper Date: Tue, 1 Apr 2025 11:27:01 +0800 Subject: [PATCH 07/20] =?UTF-8?q?Fix=EF=BC=9A3347=20=E3=80=90=E5=95=86?= =?UTF-8?q?=E5=9F=8E=E5=B0=8F=E7=A8=8B=E5=BA=8F=E3=80=91=E9=80=81=E7=A4=BC?= =?UTF-8?q?=E6=96=B9=E4=B9=B0=E7=A4=BC=E5=93=81=E5=90=8E=EF=BC=8C=E7=8E=B0?= =?UTF-8?q?=E5=9C=A8=E6=B2=A1=E9=80=81=E5=87=BA=E5=8E=BB=E5=B0=B1=E6=97=A0?= =?UTF-8?q?=E6=B3=95=E9=80=80=E6=AC=BE=EF=BC=8C=E8=A6=81=E5=A2=9E=E5=8A=A0?= =?UTF-8?q?=E4=B8=80=E4=B8=AA=E9=80=80=E6=AC=BE=E5=8A=9F=E8=83=BD=EF=BC=8C?= =?UTF-8?q?=E4=BB=A5=E5=8F=8A24=E5=B0=8F=E6=97=B6=E5=90=8E=E8=87=AA?= =?UTF-8?q?=E5=8A=A8=E9=80=80=E6=AC=BE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit (cherry picked from commit da929cfe3b1bfde4392f07767047fb7ed6d1f652) --- pkg_user/views/giftList.vue | 41 +++++++++++++++++++++++++++++++++++-- 1 file changed, 39 insertions(+), 2 deletions(-) diff --git a/pkg_user/views/giftList.vue b/pkg_user/views/giftList.vue index 82f7c94..ffa594e 100644 --- a/pkg_user/views/giftList.vue +++ b/pkg_user/views/giftList.vue @@ -55,6 +55,7 @@ 赠言:{{ item.message || '' }} +