cloud-web-corejs 1.0.54-dev.510 → 1.0.54-dev.513
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 +3 -2
- package/src/components/VabUpload/image-viewer.vue +2 -2
- package/src/components/VabUpload/mixins.js +1 -1
- package/src/components/VabUpload/view.vue +6 -1
- package/src/components/base-textarea/index.vue +104 -0
- package/src/components/xform/form-designer/designer.js +1 -1655
- package/src/components/xform/form-designer/form-widget/components/gantt/index.vue +16 -1
- package/src/components/xform/form-designer/form-widget/dialog/importDialogMixin.js +1 -1751
- package/src/components/xform/form-designer/form-widget/field-widget/fieldMixin.js +1 -1626
- package/src/components/xform/form-designer/form-widget/field-widget/gantt-widget.vue +2 -0
- package/src/components/xform/form-render/indexMixin.js +1 -3444
- package/src/components/xform/mixins/defaultHandle.js +1 -334
- package/src/components/xform/mixins/scriptHttp.js +1 -172
- package/src/components/xform/utils/util.js +1 -1464
- package/src/index.js +5 -0
- package/src/utils/index.js +1 -6
- package/src/utils/vab.js +1 -1
- package/src/views/user/position/edit.vue +83 -116
- package/src/views/user/position/list.vue +84 -116
- package/src/views/user/system_notice/edit.vue +186 -232
|
@@ -746,6 +746,7 @@ export default {
|
|
|
746
746
|
gantt.parse(this.tasks);
|
|
747
747
|
},
|
|
748
748
|
initGantt() {
|
|
749
|
+
gantt.config.tooltip = true;
|
|
749
750
|
// 配置国内日期格式(示例 1:YYYY-MM-DD)
|
|
750
751
|
gantt.config.date_format = "%Y-%m-%d";
|
|
751
752
|
|
|
@@ -777,6 +778,7 @@ export default {
|
|
|
777
778
|
this.initConfig();
|
|
778
779
|
// 初始化
|
|
779
780
|
gantt.init(this.$refs.gantt);
|
|
781
|
+
|
|
780
782
|
/* *******重点******* */
|
|
781
783
|
/*
|
|
782
784
|
// 数据解析
|