mooho-base-admin-plus 2.4.54 → 2.4.56

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.4.54",
4
+ "version": "2.4.56",
5
5
  "author": "jinyifan <jinyifan@mooho.com.cn>",
6
6
  "license": "MIT",
7
7
  "private": false,
@@ -1028,7 +1028,7 @@
1028
1028
  });
1029
1029
 
1030
1030
  this.columns.forEach(column => {
1031
- column.name = this.getNameI18n(column);
1031
+ column.name = this.getNameI18n(column) + (column.isRequired ? ' <font color="red">*</font>' : '');
1032
1032
  column.fixed = column.isFixed ? 'left' : null;
1033
1033
  });
1034
1034
 
@@ -64,12 +64,11 @@
64
64
  import taskApi from '../../../api/task';
65
65
  import notificationApi from '../../../api/notification';
66
66
  import mixinPage from '../../../mixins/page';
67
- import taskForm from '../../../pages/common/task-form.vue';
68
67
 
69
68
  export default {
70
69
  name: 'iHeaderNotice',
71
70
  mixins: [mixinPage],
72
- components: { taskForm },
71
+ components: {},
73
72
  data() {
74
73
  return {
75
74
  badgeProps: {
@@ -15,13 +15,12 @@
15
15
  </template>
16
16
  <script>
17
17
  import mixinPage from '../../mixins/page';
18
- import taskForm from './task-form.vue';
19
18
  import modelApi from '../../api/model';
20
19
 
21
20
  export default {
22
21
  name: 'common-myTask',
23
22
  mixins: [mixinPage],
24
- components: { taskForm },
23
+ components: {},
25
24
  data() {
26
25
  return {};
27
26
  },
@@ -287,6 +287,17 @@
287
287
  margin-bottom: 0;
288
288
  }
289
289
 
290
+ /* 表格内部树结构 */
291
+ .ivu-table-cell-tree {
292
+ color: #fff;
293
+ background-color: #078dcf;
294
+ }
295
+
296
+ .ivu-table-cell-tree-empty {
297
+ color: transparent;
298
+ background-color: transparent;
299
+ }
300
+
290
301
  /* 表格 */
291
302
  .ivu-table-cell {
292
303
  padding-left: 8px;