Skip to content

Commit

Permalink
Table (#187)
Browse files Browse the repository at this point in the history
* feat(component):add sort and desc for all

* feat(component):update package.json

* fix(table): fix table footer empty without show --

* fix(table): fix table footer totals

* fix(table): fix table English show

Co-authored-by: Li <lichuguang@baidu.com>
  • Loading branch information
DonaldLi and Li authored Apr 15, 2021
1 parent fd28c08 commit f5175ed
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions components/visual/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
## ChangeLog
## 1.0.32
* [功能修复] 修复表格合计国际化展示 --
## 1.0.31
* [功能修复] 修复表格合计统计范围 --
## 1.0.30
Expand Down
2 changes: 1 addition & 1 deletion components/visual/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "noahv-visual-components",
"version": "1.0.31",
"version": "1.0.32",
"description": "Visual Components Library For NoahV",
"main": "src/index.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion components/visual/src/mdreport.vue
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@
</tbody>
<tfoot v-if="isShowTotal">
<tr>
<td>合计</td>
<td>{{t('合计')}}</td>
<template v-for="total in totals">
<td v-if="total">{{total}}</td>
<td v-else>--</td>
Expand Down

0 comments on commit f5175ed

Please sign in to comment.