cloud-web-corejs 1.0.54-dev.343 → 1.0.54-dev.345

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.
Files changed (24) hide show
  1. package/package.json +1 -1
  2. package/src/components/VabUpload/mixins.js +1 -1490
  3. package/src/components/VabUpload/view.vue +138 -55
  4. package/src/components/wf/content.vue +772 -411
  5. package/src/components/wf/mixins/wfFlowEleScriptDialog.js +131 -0
  6. package/src/components/wf/wf.js +2117 -1
  7. package/src/components/wf/wfFlowEleScriptDialog.vue +92 -0
  8. package/src/components/xform/form-designer/form-widget/field-widget/vabUpload2-widget.vue +725 -0
  9. package/src/components/xform/form-designer/setting-panel/property-editor/field-vabUpload2/field-vabUpload2-editor.vue +62 -0
  10. package/src/components/xform/form-designer/setting-panel/propertyRegister.js +1 -0
  11. package/src/components/xform/form-designer/widget-panel/indexMixin.js +19 -19
  12. package/src/components/xform/form-designer/widget-panel/widgetsConfig.js +59 -0
  13. package/src/components/xform/lang/zh-CN.js +1 -0
  14. package/src/views/bd/setting/bd_company_env/edit.vue +100 -70
  15. package/src/views/bd/setting/config_manage/list.vue +16 -1
  16. package/src/views/bd/setting/logic_param/edit.vue +146 -0
  17. package/src/views/bd/setting/logic_param/edit1.vue +106 -0
  18. package/src/views/bd/setting/logic_param/edit2.vue +122 -0
  19. package/src/views/bd/setting/logic_param/list.vue +74 -0
  20. package/src/views/bd/setting/logic_param/list1.vue +12 -0
  21. package/src/views/bd/setting/logic_param/list2.vue +12 -0
  22. package/src/views/bd/setting/logic_param/mixins/edit.js +93 -0
  23. package/src/views/bd/setting/logic_param/mixins/list.js +358 -0
  24. package/src/views/bd/setting/menu_kind/mixins/authDialog.js +300 -300
@@ -0,0 +1,92 @@
1
+ <template>
2
+ <el-dialog
3
+ :title="$t2('修改脚本', 'components.wf.setCandidateTitle')"
4
+ :close-on-click-modal="false"
5
+ :visible="showDialog"
6
+ :modal="false"
7
+ custom-class="dialog-style list-dialog dialog-checkbox pd_0"
8
+ width="1200px"
9
+ @close="closeDialog"
10
+ v-el-drag-dialog
11
+ v-el-dialog-center
12
+ :append-to-body="true"
13
+ >
14
+ <template #title>
15
+ <span class="el-dialog__title">
16
+ {{ $t1("修改脚本") }}<span style="margin-left: 10px; margin-right: 10px">—</span>
17
+ <b class="f-red" style="font-size: 12px"
18
+ >{{ $t2("节点", "components.wf.node") }}:{{ wfInfo.taskName }}</b
19
+ >
20
+ </span>
21
+ </template>
22
+ <div class="cont" style="height: 450px">
23
+ <vxe-grid
24
+ ref="table-m1"
25
+ v-bind="vxeOption"
26
+ @resizable-change="$vxeTableUtil.onColumnWitchChange"
27
+ @custom="$vxeTableUtil.customHandle"
28
+ >
29
+ <template #operate="{ row, rowIndex }">
30
+ <a class="a-link" @click="openScriptDialog(row)">
31
+ <i class="el-icon-edit"></i
32
+ ><span>{{ $t1(!!row.script ? "修改脚本 - 已维护" : "修改脚本") }}</span>
33
+ </a>
34
+ </template>
35
+ </vxe-grid>
36
+ </div>
37
+ <span slot="footer" class="dialog-footer">
38
+ <el-button type="primary" plain class="button-sty" @click="closeDialog">
39
+ <i class="el-icon-close el-icon"></i>
40
+ {{ $t2("取 消", "system.button.cancel2") }}
41
+ </el-button>
42
+ <el-button type="primary" @click="closeDialog" class="button-sty">
43
+ <i class="el-icon-check el-icon"></i>
44
+ {{ $t2("确 定", "system.button.confirm2") }}
45
+ </el-button>
46
+ </span>
47
+ <el-dialog
48
+ :title="scritpDialogTitle"
49
+ :append-to-body="true"
50
+ :modal-append-to-body="true"
51
+ :close-on-click-modal="false"
52
+ v-if="showScriptDialog"
53
+ :visible.sync="showScriptDialog"
54
+ :modal="false"
55
+ custom-class="dialog-style tips-dialog tips-1 "
56
+ width="800px"
57
+ v-el-drag-dialog
58
+ v-el-dialog-center
59
+ >
60
+ <div class="cont" style="height: 700px">
61
+ <code-editor
62
+ mode="java"
63
+ :readonly="!1"
64
+ v-model="script"
65
+ height="414px;"
66
+ ></code-editor>
67
+ </div>
68
+ <span slot="footer" class="dialog-footer">
69
+ <el-button
70
+ type="primary"
71
+ plain
72
+ class="button-sty"
73
+ @click="showScriptDialog = false"
74
+ >
75
+ <i class="el-icon-close el-icon"></i>
76
+ {{ $t1("取 消") }}
77
+ </el-button>
78
+ <el-button type="primary" @click="saveScript" class="button-sty">
79
+ <i class="el-icon-check el-icon"></i>
80
+ {{ $t1("确 定") }}
81
+ </el-button>
82
+ </span>
83
+ </el-dialog>
84
+ </el-dialog>
85
+ </template>
86
+
87
+ <script>
88
+ import mixin from "./mixins/wfFlowEleScriptDialog.js";
89
+ export default {
90
+ mixins: [mixin],
91
+ };
92
+ </script>