# 2022-03-16

### 1.4.0 开源社区版:
【优化】首页标题默认设置为空,防止数据加载缓慢导致显示空的情况。#I4XM14
### 0.2.9 专业版:
【升级】升级uniapp前端框架到UView2.0.29版本。修复一些组件的细节bug,详情查询uviewui更新文档。
【优化】首页标题默认设置为空,防止数据加载缓慢导致显示空的情况。#I4XM14
【修复】修复BaseRepository中有SqlWith.NoLock使用Where错误的BUG。#I4XKFW
【修复】修复商品详情轮播图点击无法预览的问题。
【修复】自定义交易组件,在目录审核通过后,极端情况下会出现还需要“商品资质图片”的bug。
【新增】后台页面设计界面,增加常用前端的pages链接地址地址,方便进行复制使用。
【新增】普通商品详情,服务商品详情,拼团商品详情,秒杀商品详情,团购商品详情增加点击客服聊天,发送商品卡片功能,客服能直接接收到客户浏览的详情页面信息。
【新增】后台商城设置里面的“页面设计”功能页面,新增一个自定义页面的url 地址,便于复制引用如小程序中。#I4VZ6D
【修复】修复后台管理,编辑分销用户须知,分销协议,提交到代理方法的问题。#I4W5YL
【升级】升级后端打印组件版本。解决旧版本过低,导致新版本浏览器安装后无法调用的问题。#I4XDKC
【修复】修复mysql数据库有几个表存在主键未设置自增的问题,并发布完成版本。#I4XCT0
【升级】mysql数据库增加日历签到四个表。
This commit is contained in:
JianWeie
2022-03-16 00:45:09 +08:00
parent 584fef5577
commit 6cf82057f4
17 changed files with 15080 additions and 22 deletions

View File

@@ -235,7 +235,7 @@ template {
}
.edit-body {
height: auto;
width: calc(100% - 700px);
width: calc(100% - 700px - 300px);
}
.center-container {
width: 375px;
@@ -318,6 +318,17 @@ template {
padding: 0;
margin-top: 5px;
}
.urlBox {
width: 300px;
border: 1px solid #e9e9e9;
box-shadow: 0 3px 10px #dcdcdc;
position: relative;
padding: 10px;
}
.urlBox p {
font-size: 12px;
word-break: break-all;
}
.recycle {
position: absolute;
top: 43px;

View File

@@ -53,7 +53,7 @@ template { display: none; }
::-webkit-scrollbar-thumb { border-radius: 10px; background-color: #bdbdbd; -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3); }
.twolist-hidden { display: -webkit-box; word-break: break-all; text-overflow: ellipsis; overflow: hidden; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.form-edit-wrapper { display: -webkit-box; display: -ms-flexbox; display: flex; width: 100%; min-width: 1200px; background: #fff; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; -webkit-box-align: start; -ms-flex-align: start; align-items: flex-start; }
.edit-body { height: auto; width: calc(100% - 700px); }
.edit-body { height: auto; width: calc(100% - 700px - 300px); }
.center-container { width: 375px; height: 806px; border: 1px solid #e9e9e9; box-shadow: 0 3px 10px #dcdcdc; position: relative;
.model-title { height: 88px; width: 100%; position: relative;
img { width: 100%; height: 100%; }
@@ -76,6 +76,9 @@ template { display: none; }
}
}
}
.urlBox { width: 300px; border: 1px solid #e9e9e9; box-shadow: 0 3px 10px #dcdcdc; position: relative; padding: 10px;
p { font-size: 12px; word-break: break-all; }
}
.recycle { position: absolute; top: 43px; right: 26px;
ul { position: relative;
li {

File diff suppressed because one or more lines are too long