mooho-base-admin-plus 2.9.2 → 2.9.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "mooho-base-admin-plus",
3
3
  "description": "MOOHO basic framework for admin by Vue3",
4
- "version": "2.9.2",
4
+ "version": "2.9.4",
5
5
  "author": "jinyifan <jinyifan@mooho.com.cn>",
6
6
  "license": "MIT",
7
7
  "private": false,
@@ -1640,7 +1640,7 @@
1640
1640
  let column = this.columns[j];
1641
1641
  let value = this.parseData(row, column.code);
1642
1642
 
1643
- if (column.slot) {
1643
+ if (column.slot != 'normal') {
1644
1644
  continue;
1645
1645
  }
1646
1646
 
@@ -354,6 +354,9 @@ export default {
354
354
  return content;
355
355
  }
356
356
  },
357
+ getDateFormat(date, format) {
358
+ return dateFormat(date, format);
359
+ },
357
360
  // 根据表达式取值
358
361
  parseData(model, expression) {
359
362
  // if (expression == null) {