From a21bbc04297e3e60f059fb57da6a9b23df07bedf Mon Sep 17 00:00:00 2001 From: JianWeie Date: Thu, 20 Jan 2022 02:26:49 +0800 Subject: [PATCH] =?UTF-8?q?#=202022-01-19=20###=201.3.2=20=E5=BC=80?= =?UTF-8?q?=E6=BA=90=E7=A4=BE=E5=8C=BA=E7=89=88=EF=BC=88=E4=BC=9A=E5=91=98?= =?UTF-8?q?=E4=B8=93=E4=B8=9A=E7=89=88=E5=90=8C=E6=AD=A5=E4=BF=AE=E6=94=B9?= =?UTF-8?q?=EF=BC=89=EF=BC=9A=20=E3=80=90=E4=BF=AE=E5=A4=8D=E3=80=91?= =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E5=89=8D=E7=AB=AF=E9=A6=96=E9=A1=B5=E3=80=90?= =?UTF-8?q?=E6=96=87=E7=AB=A0=E5=88=86=E7=B1=BB=E3=80=91=E7=BB=84=E4=BB=B6?= =?UTF-8?q?=E4=BC=9A=E6=98=BE=E7=A4=BA=E6=9C=AA=E8=AE=BE=E7=BD=AE=E4=B8=BA?= =?UTF-8?q?=E5=8F=91=E5=B8=83=E6=A0=87=E7=AD=BE=E7=9A=84=E6=96=87=E7=AB=A0?= =?UTF-8?q?=E9=97=AE=E9=A2=98=EF=BC=9B=E4=BC=98=E5=8C=96=E6=96=87=E7=AB=A0?= =?UTF-8?q?=E5=B1=95=E7=A4=BA=E6=A0=B7=E5=BC=8F=E3=80=82#I4RA0C=20?= =?UTF-8?q?=E3=80=90=E4=BF=AE=E5=A4=8D=E3=80=91=E4=BF=AE=E5=A4=8D=E5=89=8D?= =?UTF-8?q?=E7=AB=AF=E9=A6=96=E9=A1=B5=E3=80=90=E6=96=87=E7=AB=A0=E7=BB=84?= =?UTF-8?q?=E3=80=91=E5=B1=95=E7=A4=BA=E6=A0=B7=E5=BC=8F=E3=80=82=20?= =?UTF-8?q?=E3=80=90=E4=BF=AE=E5=A4=8D=E3=80=91=E4=BF=AE=E5=A4=8D=E5=90=8E?= =?UTF-8?q?=E7=AB=AF=E8=AE=A2=E5=8D=95=E5=88=97=E8=A1=A8=E3=80=90=E6=94=AF?= =?UTF-8?q?=E4=BB=98=E3=80=91=E6=8C=89=E9=92=AE=E5=BC=82=E5=B8=B8=E9=97=AE?= =?UTF-8?q?=E9=A2=98=E3=80=82#I4QWAN=20=E3=80=90=E4=BF=AE=E5=A4=8D?= =?UTF-8?q?=E3=80=91=E5=88=A0=E9=99=A4=E5=95=86=E5=93=81=E7=BC=96=E8=BE=91?= =?UTF-8?q?=E7=95=8C=E9=9D=A2=E7=9A=84=E5=95=86=E5=93=81=E7=9A=84=E9=87=8D?= =?UTF-8?q?=E9=87=8F=EF=BC=8C=E5=8F=AA=E4=BF=9D=E7=95=99sku=E7=9A=84?= =?UTF-8?q?=E9=87=8D=E9=87=8F=EF=BC=8C=E9=98=B2=E6=AD=A2=E5=BC=95=E8=B5=B7?= =?UTF-8?q?=E6=AD=A7=E4=B9=89=E3=80=82#I4QESQ?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ### 0.1.0 会员专业版: 【升级】更新uview为v2.0.22版本。 【新增】微信直播组件增加上传图片到微信服务器功能。 【优化】优化升级uview后多个页面商品展示列表图片高度缩略问题。 【修复】修复商品预览数据未加载成功错误。 --- .../Shop/CoreCmsPagesServices.cs | 2 +- .../common/setting/constVarsHelper.js | 3 +- .../coreshop-page/coreshop-article.vue | 2 +- .../coreshop-articleClassify.vue | 3 +- .../wwwroot/views/good/goods/edit.html | 8 ----- .../wwwroot/views/order/orders/index.html | 30 +++++++++++-------- 6 files changed, 22 insertions(+), 26 deletions(-) diff --git a/CoreCms.Net.Services/Shop/CoreCmsPagesServices.cs b/CoreCms.Net.Services/Shop/CoreCmsPagesServices.cs index fe14348..c102bbb 100644 --- a/CoreCms.Net.Services/Shop/CoreCmsPagesServices.cs +++ b/CoreCms.Net.Services/Shop/CoreCmsPagesServices.cs @@ -497,7 +497,7 @@ namespace CoreCms.Net.Services var articleClassifyId = parameters["articleClassifyId"].ObjectToInt(0); var limit = parameters["limit"].ObjectToInt(0); limit = limit > 0 ? limit : 20; - var list = await _articleServices.QueryPageAsync(p => p.typeId == articleClassifyId, + var list = await _articleServices.QueryPageAsync(p => p.typeId == articleClassifyId && p.isPub == true, p => p.createTime, OrderByType.Desc, 1, limit); if (list != null && list.Any()) { diff --git a/CoreCms.Net.Uni-App/CoreShop/common/setting/constVarsHelper.js b/CoreCms.Net.Uni-App/CoreShop/common/setting/constVarsHelper.js index 2ffaf6d..9d255c3 100644 --- a/CoreCms.Net.Uni-App/CoreShop/common/setting/constVarsHelper.js +++ b/CoreCms.Net.Uni-App/CoreShop/common/setting/constVarsHelper.js @@ -4,10 +4,9 @@ */ //接口请求地址,如果需要不部署接口端的情况下测试uni-app,可以直接替换为官方测试接口:https://api.demo.coreshop.cn -export const apiBaseUrl = 'https://api.demo.coreshop.cn'; +export const apiBaseUrl = 'https://api.nsts.mvccms.cn'; //项目静态资源请求地址,如果使用官方的静态文件地址可以直接替换为:https://files.cdn.coreshop.cn export const apiFilesUrl = 'https://files.cdn.coreshop.cn'; - export const h5Url = apiBaseUrl + "/wap/"; //H5端网站地址, // #ifdef H5 diff --git a/CoreCms.Net.Uni-App/CoreShop/components/coreshop-page/coreshop-article.vue b/CoreCms.Net.Uni-App/CoreShop/components/coreshop-page/coreshop-article.vue index b80abd8..517f0d6 100644 --- a/CoreCms.Net.Uni-App/CoreShop/components/coreshop-page/coreshop-article.vue +++ b/CoreCms.Net.Uni-App/CoreShop/components/coreshop-page/coreshop-article.vue @@ -43,7 +43,7 @@