Skip to content

Commit

Permalink
merge
Browse files Browse the repository at this point in the history
  • Loading branch information
liuliang-wt committed Jun 28, 2023
2 parents 201a9ad + d028c7b commit 3b0cce5
Show file tree
Hide file tree
Showing 67 changed files with 1,058 additions and 543 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

## v6.x.x

##6.3.29(2023-6-29)
* **修改:** 默认的Json序列化,数字类型仍然会被输出为字符串,这是因为很多前端控件都需要对比字符串
* **修改:** 修复了LayUI模式下导出之后搜索的问题
* **修改:** 优化了LayUI模式下TreeContainer控件
* **修改:** 默认的Json序列化,添加了可为空的类型的读写判断


##6.3.25(2023-6-8)
* **新增:** 新增针对WtmPlus中生成的vue3的项目的简易代码生成器
* **修改:** 修复了多租户模式下GetUserDC方法
Expand Down Expand Up @@ -180,6 +187,12 @@

## v5.x.x

##5.10.29(2023-6-29)
* **修改:** 默认的Json序列化,数字类型仍然会被输出为字符串,这是因为很多前端控件都需要对比字符串
* **修改:** 修复了LayUI模式下导出之后搜索的问题
* **修改:** 优化了LayUI模式下TreeContainer控件
* **修改:** 默认的Json序列化,添加了可为空的类型的读写判断

##5.10.25(2023-6-8)
* **新增:** 新增针对WtmPlus中生成的vue3的项目的简易代码生成器
* **修改:** 修复了多租户模式下GetUserDC方法
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,9 +59,9 @@ window.urlFuncs = {
var a = document.createElement('a');
a.download = filename;
a.href = e.target.result;
$("body").append(a);
document.body.append(a);
a.click();
$(a).remove();
a.remove();
}
}
};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,9 @@
</wt:row>

<wt:textarea field="Entity.Remark" height="200" />

<wt:row align="AlignEnum.Right">
<wt:closebutton />
</wt:row>
</wt:form>

<!-- WTM默认页面 Wtm buidin page-->
3 changes: 2 additions & 1 deletion demo/WalkingTec.Mvvm.Vue3Demo/ClientApp/.env.production
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,5 @@
ENV = production

# 线上环境接口地址
VITE_API_URL =
VITE_API_URL = http://localhost:8598
VITE_PUBLIC_PATH = ''
Loading

0 comments on commit 3b0cce5

Please sign in to comment.