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/history.md +2 -0
- package/package/mooho-base-admin-plus.min.esm.js +443 -443
- package/package/mooho-base-admin-plus.min.js +7 -7
- package/package/style.css +1 -1
- package/package.json +1 -1
- package/src/components/view/view-table.vue +1 -1
- package/src/layouts/basic-layout/header-notice/index.vue +1 -2
- package/src/pages/common/todo.vue +1 -2
- package/src/styles/css/default.css +11 -0
- /package/src/{pages/common → components/workflow}/task-form.vue +0 -0
package/package.json
CHANGED
|
@@ -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: {
|
|
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: {
|
|
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;
|
|
File without changes
|