cloud-web-corejs 1.0.54-dev.798 → 1.0.54-dev.799

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 (187) hide show
  1. package/package.json +3 -1
  2. package/src/components/baseTabs/mixins.js +11 -12
  3. package/src/components/bizTab/BizBillActions.vue +129 -0
  4. package/src/components/bizTab/BizTabListPage.vue +391 -0
  5. package/src/components/bizTab/README.md +378 -0
  6. package/src/components/bizTab/billTableUtil.js +48 -0
  7. package/src/components/bizTab/billValidators.js +136 -0
  8. package/src/components/bizTab/bizBillDetailMixin.js +687 -0
  9. package/src/components/bizTab/index.js +24 -0
  10. package/src/components/excelExport/exportFieldDialog.vue +373 -367
  11. package/src/components/excelExport/exportType.js +49 -0
  12. package/src/components/excelExport/mixins.js +1153 -1144
  13. package/src/components/vb-tabs/x-tabs.vue +167 -143
  14. package/src/components/wf/wfUtil.js +327 -292
  15. package/src/components/xform/form-designer/designer.js +56 -8
  16. package/src/components/xform/form-designer/form-widget/container-widget/detail-widget.vue +59 -5
  17. package/src/components/xform/form-designer/form-widget/field-widget/baseAttachment-widget.vue +60 -8
  18. package/src/components/xform/form-designer/form-widget/field-widget/form-item-wrapper.vue +8 -2
  19. package/src/components/xform/form-designer/form-widget/field-widget/select-export-item-button-widget.vue +120 -92
  20. package/src/components/xform/form-designer/form-widget/field-widget/vabUpload-widget.vue +63 -94
  21. package/src/components/xform/form-designer/index.vue +0 -1
  22. package/src/components/xform/form-designer/setting-panel/dataSource-setting.vue +397 -397
  23. package/src/components/xform/form-designer/setting-panel/form-dynamicField-setting.vue +602 -602
  24. package/src/components/xform/form-designer/setting-panel/form-setting.vue +13 -13
  25. package/src/components/xform/form-designer/setting-panel/option-items-setting.vue +585 -585
  26. package/src/components/xform/form-designer/setting-panel/property-editor/a-link-editor.vue +1 -1
  27. package/src/components/xform/form-designer/setting-panel/property-editor/a-text-editor.vue +1 -1
  28. package/src/components/xform/form-designer/setting-panel/property-editor/alignType-editor.vue +1 -1
  29. package/src/components/xform/form-designer/setting-panel/property-editor/censusClass-editor.vue +1 -1
  30. package/src/components/xform/form-designer/setting-panel/property-editor/colorClass-editor.vue +1 -1
  31. package/src/components/xform/form-designer/setting-panel/property-editor/commonAttributeEnabled-editor.vue +3 -3
  32. package/src/components/xform/form-designer/setting-panel/property-editor/container-data-table/data-table-editor.vue +1154 -1154
  33. package/src/components/xform/form-designer/setting-panel/property-editor/container-detail/detail-editor.vue +96 -80
  34. package/src/components/xform/form-designer/setting-panel/property-editor/container-detail-plain/detail-plain-editor.vue +75 -75
  35. package/src/components/xform/form-designer/setting-panel/property-editor/container-grid/colHeight-editor.vue +1 -1
  36. package/src/components/xform/form-designer/setting-panel/property-editor/container-grid/gutter-editor.vue +1 -1
  37. package/src/components/xform/form-designer/setting-panel/property-editor/container-grid-col/grid-col-height-editor.vue +1 -1
  38. package/src/components/xform/form-designer/setting-panel/property-editor/container-grid-col/grid-col-offset-editor.vue +1 -1
  39. package/src/components/xform/form-designer/setting-panel/property-editor/container-grid-col/grid-col-pull-editor.vue +1 -1
  40. package/src/components/xform/form-designer/setting-panel/property-editor/container-grid-col/grid-col-push-editor.vue +1 -1
  41. package/src/components/xform/form-designer/setting-panel/property-editor/container-grid-col/grid-col-span-editor.vue +4 -4
  42. package/src/components/xform/form-designer/setting-panel/property-editor/container-h5-card/h5-card-editor.vue +124 -124
  43. package/src/components/xform/form-designer/setting-panel/property-editor/container-panel/height-editor.vue +1 -1
  44. package/src/components/xform/form-designer/setting-panel/property-editor/container-panel/width-editor.vue +1 -1
  45. package/src/components/xform/form-designer/setting-panel/property-editor/container-tab/tab-customClass-editor.vue +119 -119
  46. package/src/components/xform/form-designer/setting-panel/property-editor/container-tab/tabClass-editor.vue +45 -45
  47. package/src/components/xform/form-designer/setting-panel/property-editor/container-table/table-dynamicField-editor.vue +344 -344
  48. package/src/components/xform/form-designer/setting-panel/property-editor/container-table-cell/cellHeight-editor.vue +1 -1
  49. package/src/components/xform/form-designer/setting-panel/property-editor/container-table-cell/cellWidth-editor.vue +1 -1
  50. package/src/components/xform/form-designer/setting-panel/property-editor/container-tree/tree-customClass-editor.vue +2 -2
  51. package/src/components/xform/form-designer/setting-panel/property-editor/container-tree-pane/tree-pane-editor.vue +1 -1
  52. package/src/components/xform/form-designer/setting-panel/property-editor/container-vf-dialog/cancelButtonLabel-editor.vue +1 -1
  53. package/src/components/xform/form-designer/setting-panel/property-editor/container-vf-dialog/okButtonLabel-editor.vue +1 -1
  54. package/src/components/xform/form-designer/setting-panel/property-editor/container-vf-dialog/title-editor.vue +1 -1
  55. package/src/components/xform/form-designer/setting-panel/property-editor/container-vf-dialog/width-editor.vue +1 -1
  56. package/src/components/xform/form-designer/setting-panel/property-editor/containerClass-editor.vue +1 -1
  57. package/src/components/xform/form-designer/setting-panel/property-editor/customClass-editor.vue +1 -1
  58. package/src/components/xform/form-designer/setting-panel/property-editor/defaultValue-editor.vue +1 -1
  59. package/src/components/xform/form-designer/setting-panel/property-editor/descriptionsItems-editor.vue +4 -4
  60. package/src/components/xform/form-designer/setting-panel/property-editor/downloadButtonFlag-editor.vue +3 -3
  61. package/src/components/xform/form-designer/setting-panel/property-editor/dropdownFlag-editor.vue +2 -2
  62. package/src/components/xform/form-designer/setting-panel/property-editor/dsName-editor.vue +1 -1
  63. package/src/components/xform/form-designer/setting-panel/property-editor/echartHeight-editor.vue +1 -1
  64. package/src/components/xform/form-designer/setting-panel/property-editor/endPlaceholder-editor.vue +1 -1
  65. package/src/components/xform/form-designer/setting-panel/property-editor/field-accessUrl/accessUrl-editor.vue +2 -2
  66. package/src/components/xform/form-designer/setting-panel/property-editor/field-area-select/areaDataType-editor.vue +1 -1
  67. package/src/components/xform/form-designer/setting-panel/property-editor/field-area-select/areaMinLevel-editor.vue +50 -50
  68. package/src/components/xform/form-designer/setting-panel/property-editor/field-area-select/areaName-editor.vue +1 -1
  69. package/src/components/xform/form-designer/setting-panel/property-editor/field-autocomplete/autocomplete-vabSearchName-editor.vue +7 -7
  70. package/src/components/xform/form-designer/setting-panel/property-editor/field-button/addTableData-event-editor.vue +84 -84
  71. package/src/components/xform/form-designer/setting-panel/property-editor/field-button/button-type-editor.vue +1 -1
  72. package/src/components/xform/form-designer/setting-panel/property-editor/field-button/clickBindEvent-editor.vue +97 -97
  73. package/src/components/xform/form-designer/setting-panel/property-editor/field-button/form-host-event-editor.vue +188 -188
  74. package/src/components/xform/form-designer/setting-panel/property-editor/field-button/search-dialog-event-editor.vue +237 -237
  75. package/src/components/xform/form-designer/setting-panel/property-editor/field-common/keyName-editor.vue +74 -67
  76. package/src/components/xform/form-designer/setting-panel/property-editor/field-date/date-dateLimit-editor.vue +4 -4
  77. package/src/components/xform/form-designer/setting-panel/property-editor/field-date/date-defaultValue-editor.vue +1 -1
  78. package/src/components/xform/form-designer/setting-panel/property-editor/field-date/date-format-editor.vue +1 -1
  79. package/src/components/xform/form-designer/setting-panel/property-editor/field-date/date-type-editor.vue +1 -1
  80. package/src/components/xform/form-designer/setting-panel/property-editor/field-date/date-valueFormat-editor.vue +1 -1
  81. package/src/components/xform/form-designer/setting-panel/property-editor/field-date-range/date-range-defaultTime-editor.vue +1 -1
  82. package/src/components/xform/form-designer/setting-panel/property-editor/field-date-range/date-range-defaultValue-editor.vue +1 -1
  83. package/src/components/xform/form-designer/setting-panel/property-editor/field-date-range/date-range-format-editor.vue +1 -1
  84. package/src/components/xform/form-designer/setting-panel/property-editor/field-date-range/date-range-type-editor.vue +1 -1
  85. package/src/components/xform/form-designer/setting-panel/property-editor/field-date-range/date-range-valueFormat-editor.vue +1 -1
  86. package/src/components/xform/form-designer/setting-panel/property-editor/field-divider/contentPosition-editor.vue +1 -1
  87. package/src/components/xform/form-designer/setting-panel/property-editor/field-dropdown-menu/dropdown-menu-editor.vue +59 -59
  88. package/src/components/xform/form-designer/setting-panel/property-editor/field-echart/echart-bar-editor.vue +11 -11
  89. package/src/components/xform/form-designer/setting-panel/property-editor/field-echart/echart-category-editor.vue +10 -10
  90. package/src/components/xform/form-designer/setting-panel/property-editor/field-echart/echart-pie-editor.vue +12 -12
  91. package/src/components/xform/form-designer/setting-panel/property-editor/field-file-upload/file-upload-fileTypes-editor.vue +44 -44
  92. package/src/components/xform/form-designer/setting-panel/property-editor/field-html-text/htmlContent-editor.vue +29 -29
  93. package/src/components/xform/form-designer/setting-panel/property-editor/field-import-button/import-button-editor.vue +6 -6
  94. package/src/components/xform/form-designer/setting-panel/property-editor/field-import-button/import2-button-editor.vue +3 -3
  95. package/src/components/xform/form-designer/setting-panel/property-editor/field-number/controlsPosition-editor.vue +1 -1
  96. package/src/components/xform/form-designer/setting-panel/property-editor/field-picture-upload/picture-upload-fileTypes-editor.vue +44 -44
  97. package/src/components/xform/form-designer/setting-panel/property-editor/field-print-button/print-button-editor.vue +115 -115
  98. package/src/components/xform/form-designer/setting-panel/property-editor/field-print-button/print-detail-button-editor.vue +115 -115
  99. package/src/components/xform/form-designer/setting-panel/property-editor/field-rate/highThreshold-editor.vue +1 -1
  100. package/src/components/xform/form-designer/setting-panel/property-editor/field-rate/lowThreshold-editor.vue +1 -1
  101. package/src/components/xform/form-designer/setting-panel/property-editor/field-rate/rate-defaultValue-editor.vue +1 -1
  102. package/src/components/xform/form-designer/setting-panel/property-editor/field-rate/rate-max-editor.vue +1 -1
  103. package/src/components/xform/form-designer/setting-panel/property-editor/field-script/script-editor.vue +4 -4
  104. package/src/components/xform/form-designer/setting-panel/property-editor/field-script-input/script-input-editor.vue +4 -4
  105. package/src/components/xform/form-designer/setting-panel/property-editor/field-static-text/fontSize-editor.vue +1 -1
  106. package/src/components/xform/form-designer/setting-panel/property-editor/field-static-text/textContent-editor.vue +1 -1
  107. package/src/components/xform/form-designer/setting-panel/property-editor/field-status/field-status-editor.vue +3 -3
  108. package/src/components/xform/form-designer/setting-panel/property-editor/field-switch/activeText-editor.vue +1 -1
  109. package/src/components/xform/form-designer/setting-panel/property-editor/field-switch/inactiveText-editor.vue +1 -1
  110. package/src/components/xform/form-designer/setting-panel/property-editor/field-switch/switchWidth-editor.vue +1 -1
  111. package/src/components/xform/form-designer/setting-panel/property-editor/field-table-export-button/select-export-button-editor.vue +2 -2
  112. package/src/components/xform/form-designer/setting-panel/property-editor/field-table-export-button/select-export-item-button-editor.vue +74 -71
  113. package/src/components/xform/form-designer/setting-panel/property-editor/field-table-export-button/table-export-button-editor.vue +3 -3
  114. package/src/components/xform/form-designer/setting-panel/property-editor/field-time/time-defaultValue-editor.vue +1 -1
  115. package/src/components/xform/form-designer/setting-panel/property-editor/field-time/time-format-editor.vue +1 -1
  116. package/src/components/xform/form-designer/setting-panel/property-editor/field-time/time-timeLimit-editor.vue +1 -1
  117. package/src/components/xform/form-designer/setting-panel/property-editor/field-time-range/time-range-defaultValue-editor.vue +1 -1
  118. package/src/components/xform/form-designer/setting-panel/property-editor/field-time-range/time-range-format-editor.vue +1 -1
  119. package/src/components/xform/form-designer/setting-panel/property-editor/field-vabSearch/vabSearchField-editor.vue +2 -2
  120. package/src/components/xform/form-designer/setting-panel/property-editor/field-vabSearch/vabSearchName-editor.vue +2 -2
  121. package/src/components/xform/form-designer/setting-panel/property-editor/field-vabUpload/field-vabUpload-editor.vue +1 -1
  122. package/src/components/xform/form-designer/setting-panel/property-editor/field-vabUpload2/field-vabUpload2-editor.vue +1 -1
  123. package/src/components/xform/form-designer/setting-panel/property-editor/field-vue-page/vue-page-editor.vue +2 -2
  124. package/src/components/xform/form-designer/setting-panel/property-editor/fileMaxSize-editor.vue +1 -1
  125. package/src/components/xform/form-designer/setting-panel/property-editor/fileTypesSelect.vue +176 -176
  126. package/src/components/xform/form-designer/setting-panel/property-editor/formScriptEnabled-editor.vue +2 -1
  127. package/src/components/xform/form-designer/setting-panel/property-editor/formatType-editor.vue +2 -2
  128. package/src/components/xform/form-designer/setting-panel/property-editor/formula-editor.vue +972 -972
  129. package/src/components/xform/form-designer/setting-panel/property-editor/iconClass-editor.vue +1 -1
  130. package/src/components/xform/form-designer/setting-panel/property-editor/label-editor.vue +1 -1
  131. package/src/components/xform/form-designer/setting-panel/property-editor/labelAlign-editor.vue +1 -1
  132. package/src/components/xform/form-designer/setting-panel/property-editor/labelColor-editor.vue +1 -1
  133. package/src/components/xform/form-designer/setting-panel/property-editor/labelIconPosition-editor.vue +1 -1
  134. package/src/components/xform/form-designer/setting-panel/property-editor/labelWidth-editor.vue +1 -1
  135. package/src/components/xform/form-designer/setting-panel/property-editor/limit-editor.vue +1 -1
  136. package/src/components/xform/form-designer/setting-panel/property-editor/max-editor.vue +1 -1
  137. package/src/components/xform/form-designer/setting-panel/property-editor/maxLength-editor.vue +1 -1
  138. package/src/components/xform/form-designer/setting-panel/property-editor/min-editor.vue +1 -1
  139. package/src/components/xform/form-designer/setting-panel/property-editor/minLength-editor.vue +1 -1
  140. package/src/components/xform/form-designer/setting-panel/property-editor/multipleLimit-editor.vue +1 -1
  141. package/src/components/xform/form-designer/setting-panel/property-editor/name-editor.vue +178 -178
  142. package/src/components/xform/form-designer/setting-panel/property-editor/oplog-editor.vue +3 -3
  143. package/src/components/xform/form-designer/setting-panel/property-editor/placeholder-editor.vue +1 -1
  144. package/src/components/xform/form-designer/setting-panel/property-editor/precision-editor.vue +1 -1
  145. package/src/components/xform/form-designer/setting-panel/property-editor/project-tag-editor.vue +6 -6
  146. package/src/components/xform/form-designer/setting-panel/property-editor/requiredHint-editor.vue +1 -1
  147. package/src/components/xform/form-designer/setting-panel/property-editor/rows-editor.vue +1 -1
  148. package/src/components/xform/form-designer/setting-panel/property-editor/space-editor-editor.vue +1 -1
  149. package/src/components/xform/form-designer/setting-panel/property-editor/startPlaceholder-editor.vue +1 -1
  150. package/src/components/xform/form-designer/setting-panel/property-editor/step-editor.vue +1 -1
  151. package/src/components/xform/form-designer/setting-panel/property-editor/styleTableClass-editor.vue +1 -1
  152. package/src/components/xform/form-designer/setting-panel/property-editor/styleTitClass-editor.vue +1 -1
  153. package/src/components/xform/form-designer/setting-panel/property-editor/tempStorage-editor.vue +1 -1
  154. package/src/components/xform/form-designer/setting-panel/property-editor/type-editor.vue +1 -1
  155. package/src/components/xform/form-designer/setting-panel/property-editor/uploadTip-editor.vue +1 -1
  156. package/src/components/xform/form-designer/setting-panel/property-editor/uploadURL-editor.vue +1 -1
  157. package/src/components/xform/form-designer/setting-panel/property-editor/urlValueEnabled-editor.vue +91 -0
  158. package/src/components/xform/form-designer/setting-panel/property-editor/validation-editor.vue +1 -1
  159. package/src/components/xform/form-designer/setting-panel/property-editor/validationHint-editor.vue +1 -1
  160. package/src/components/xform/form-designer/setting-panel/property-editor/widgetWidth-editor.vue +1 -1
  161. package/src/components/xform/form-designer/setting-panel/propertyRegister.js +1 -0
  162. package/src/components/xform/form-designer/widget-panel/index.vue +3 -1
  163. package/src/components/xform/form-designer/widget-panel/widgetsConfig.js +55 -13
  164. package/src/components/xform/form-render/container-item/data-table-mixin copy.js +5910 -0
  165. package/src/components/xform/form-render/container-item/data-table-mixin.js +59 -13
  166. package/src/components/xform/form-render/container-item/detail-item.vue +52 -11
  167. package/src/components/xform/form-render/container-item/tab-item.vue +6 -2
  168. package/src/components/xform/form-render/indexMixin.js +56 -16
  169. package/src/components/xform/lang/zh-CN.js +2 -1
  170. package/src/components/xform/utils/attachmentValueUtil.js +239 -0
  171. package/src/components/xform/utils/util.js +27 -0
  172. package/src/mixins/wf/index.js +40 -38
  173. package/src/router/modules/customer.js +50 -0
  174. package/src/store/config/index.js +46 -0
  175. package/src/utils/scrollUtil.js +25 -0
  176. package/src/views/demo/bizTab/bill/billConfig.js +41 -0
  177. package/src/views/demo/bizTab/bill/detail.vue +436 -0
  178. package/src/views/demo/bizTab/bill/list.vue +288 -0
  179. package/src/views/demo/bizTab/bill/productDialog.vue +176 -0
  180. package/src/views/demo/bizTab/simple/billApi.js +123 -0
  181. package/src/views/demo/bizTab/simple/detail.vue +407 -0
  182. package/src/views/demo/bizTab/simple/list.vue +217 -0
  183. package/src/views/demo/bizTab/standalone/index.vue +121 -0
  184. package/src/views/demo/bizTab/wf/billConfig.js +44 -0
  185. package/src/views/demo/bizTab/wf/detail.vue +661 -0
  186. package/src/views/demo/bizTab/wf/list.vue +242 -0
  187. package/src/views/user/outLink/cc_form_view.vue +185 -0
@@ -1,602 +1,602 @@
1
- <template>
2
- <div class="form-dynamic-field-setting">
3
- <el-form-item label="启用动态字段">
4
- <el-switch v-model="formConfig.dynamicFieldEnabled"></el-switch>
5
- <div class="tip-text">
6
- 根据表单数据/后台脚本动态控制整个表单内任意字段、容器的显隐等状态
7
- </div>
8
- </el-form-item>
9
-
10
- <template v-if="formConfig.dynamicFieldEnabled">
11
- <el-form-item label="数据来源">
12
- <el-radio-group v-model="formConfig.dynamicFieldSourceType" size="mini">
13
- <el-radio-button label="local">本地规则</el-radio-button>
14
- <el-radio-button label="script">后台脚本</el-radio-button>
15
- </el-radio-group>
16
- </el-form-item>
17
-
18
- <template v-if="formConfig.dynamicFieldSourceType === 'local'">
19
- <el-form-item label="字段规则">
20
- <el-button
21
- type="primary"
22
- plain
23
- size="mini"
24
- icon="el-icon-setting"
25
- @click="openRuleDialog"
26
- >
27
- 配置规则({{ (formConfig.dynamicFieldRules || []).length }})
28
- </el-button>
29
- </el-form-item>
30
- </template>
31
-
32
- <template v-if="formConfig.dynamicFieldSourceType === 'script'">
33
- <el-form-item label="脚本编码">
34
- <el-input
35
- v-model="formConfig.dynamicFieldScriptCode"
36
- size="mini"
37
- placeholder="scriptCode 或 formCode/scriptCode"
38
- ></el-input>
39
- </el-form-item>
40
- <el-form-item label="额外参数">
41
- <a
42
- href="javascript:void(0);"
43
- class="a-link link-oneLind"
44
- @click="editDynamicFieldScriptParam"
45
- >
46
- <span>{{ formConfig.dynamicFieldScriptParam }}</span>
47
- <i class="el-icon-edit"></i>
48
- </a>
49
- <div class="tip-text">
50
- 格式: return { stage:
51
- formModel.status }
52
- </div>
53
- </el-form-item>
54
- <el-form-item label="触发字段">
55
- <el-select
56
- v-model="formConfig.dynamicFieldTriggerFields"
57
- multiple
58
- filterable
59
- size="mini"
60
- style="width: 100%"
61
- placeholder="字段值变化时重新请求后台"
62
- >
63
- <el-option
64
- v-for="(n, idx) in treeOptions"
65
- :key="n.value + '#' + idx"
66
- :value="n.value"
67
- :label="optPlainLabel(n)"
68
- :disabled="n.isContainer"
69
- >
70
- <span
71
- :style="{ paddingLeft: n.depth * 14 + 'px' }"
72
- :class="{ 'opt-container': n.isContainer }"
73
- >
74
- <span v-if="n.isContainer" class="opt-tag"
75
- >[{{ containerTypeLabel(n.type) }}]</span
76
- >{{ n.baseLabel }}
77
- </span>
78
- </el-option>
79
- </el-select>
80
- <div class="tip-text">为空时仅在初始化时请求一次后台脚本</div>
81
- </el-form-item>
82
- <div class="tip-text">
83
- 后台返回 fieldStates 的 key
84
- 可为字段名,也可为「命名容器」名以控制其显隐(容器仅 visible 生效)
85
- </div>
86
- </template>
87
- </template>
88
-
89
- <el-dialog
90
- title="表单动态字段规则"
91
- :visible.sync="ruleDialogVisible"
92
- :append-to-body="true"
93
- width="760px"
94
- custom-class="dynamic-field-rule-dialog"
95
- >
96
- <div class="rule-list">
97
- <div
98
- v-for="(rule, rIdx) in editingRules"
99
- :key="rule.id"
100
- class="rule-card"
101
- >
102
- <div class="rule-card-header">
103
- <span class="rule-title">规则 {{ rIdx + 1 }}</span>
104
- <el-button
105
- type="text"
106
- icon="el-icon-delete"
107
- class="danger-text"
108
- @click="removeRule(rIdx)"
109
- >
110
- 删除规则
111
- </el-button>
112
- </div>
113
-
114
- <div class="rule-section">
115
- <div class="rule-section-title">
116
- <span>当满足</span>
117
- <el-radio-group v-model="rule.logic" size="mini">
118
- <el-radio-button label="and">全部条件</el-radio-button>
119
- <el-radio-button label="or">任一条件</el-radio-button>
120
- </el-radio-group>
121
- </div>
122
- <div
123
- v-for="(cond, cIdx) in rule.conditions"
124
- :key="cIdx"
125
- class="rule-row"
126
- >
127
- <el-select
128
- v-model="cond.field"
129
- filterable
130
- size="mini"
131
- placeholder="字段"
132
- class="cell-field"
133
- >
134
- <el-option
135
- v-for="(n, idx) in treeOptions"
136
- :key="n.value + '#' + idx"
137
- :value="n.value"
138
- :label="optPlainLabel(n)"
139
- :disabled="n.isContainer"
140
- >
141
- <span
142
- :style="{ paddingLeft: n.depth * 14 + 'px' }"
143
- :class="{ 'opt-container': n.isContainer }"
144
- >
145
- <span v-if="n.isContainer" class="opt-tag"
146
- >[{{ containerTypeLabel(n.type) }}]</span
147
- >{{ n.baseLabel }}
148
- </span>
149
- </el-option>
150
- </el-select>
151
- <el-select
152
- v-model="cond.operator"
153
- size="mini"
154
- placeholder="操作符"
155
- class="cell-op"
156
- >
157
- <el-option
158
- v-for="op in operatorOptions"
159
- :key="op.value"
160
- :label="op.label"
161
- :value="op.value"
162
- ></el-option>
163
- </el-select>
164
- <el-input
165
- v-model="cond.value"
166
- size="mini"
167
- placeholder="值"
168
- class="cell-value"
169
- :disabled="op_noValue(cond.operator)"
170
- ></el-input>
171
- <el-button
172
- type="text"
173
- icon="el-icon-remove-outline"
174
- class="danger-text"
175
- @click="removeCondition(rule, cIdx)"
176
- ></el-button>
177
- </div>
178
- <el-button
179
- type="text"
180
- icon="el-icon-plus"
181
- @click="addCondition(rule)"
182
- >添加条件</el-button
183
- >
184
- </div>
185
-
186
- <div class="rule-section">
187
- <div class="rule-section-title"><span>则设置字段/容器</span></div>
188
- <div
189
- v-for="(t, tIdx) in rule.targets"
190
- :key="tIdx"
191
- class="rule-row target-row"
192
- >
193
- <el-select
194
- v-model="t.field"
195
- filterable
196
- size="mini"
197
- placeholder="目标字段/容器"
198
- class="cell-field"
199
- >
200
- <el-option
201
- v-for="(n, idx) in treeOptions"
202
- :key="n.value + '#' + idx"
203
- :value="n.value"
204
- :label="optPlainLabel(n)"
205
- :disabled="n.isContainer && !n.hasName"
206
- >
207
- <span
208
- :style="{ paddingLeft: n.depth * 14 + 'px' }"
209
- :class="{ 'opt-container': n.isContainer }"
210
- >
211
- <span v-if="n.isContainer" class="opt-tag"
212
- >[{{ containerTypeLabel(n.type) }}]</span
213
- >{{ n.baseLabel }}
214
- </span>
215
- </el-option>
216
- </el-select>
217
- <span class="target-attr">
218
- <span class="attr-label">显示</span>
219
- <el-select
220
- v-model="t.visible"
221
- size="mini"
222
- class="cell-tri"
223
- clearable
224
- placeholder="不变"
225
- >
226
- <el-option label="显示" :value="true"></el-option>
227
- <el-option label="隐藏" :value="false"></el-option>
228
- </el-select>
229
- </span>
230
- <span class="target-attr">
231
- <span class="attr-label">必填</span>
232
- <el-select
233
- v-model="t.required"
234
- size="mini"
235
- class="cell-tri"
236
- clearable
237
- placeholder="不变"
238
- >
239
- <el-option label="必填" :value="true"></el-option>
240
- <el-option label="非必填" :value="false"></el-option>
241
- </el-select>
242
- </span>
243
- <span class="target-attr">
244
- <span class="attr-label">只读</span>
245
- <el-select
246
- v-model="t.readonly"
247
- size="mini"
248
- class="cell-tri"
249
- clearable
250
- placeholder="不变"
251
- >
252
- <el-option label="只读" :value="true"></el-option>
253
- <el-option label="可编辑" :value="false"></el-option>
254
- </el-select>
255
- </span>
256
- <span class="target-attr">
257
- <span class="attr-label">禁用</span>
258
- <el-select
259
- v-model="t.disabled"
260
- size="mini"
261
- class="cell-tri"
262
- clearable
263
- placeholder="不变"
264
- >
265
- <el-option label="禁用" :value="true"></el-option>
266
- <el-option label="启用" :value="false"></el-option>
267
- </el-select>
268
- </span>
269
- <el-button
270
- type="text"
271
- icon="el-icon-remove-outline"
272
- class="danger-text"
273
- @click="removeTarget(rule, tIdx)"
274
- ></el-button>
275
- </div>
276
- <el-button type="text" icon="el-icon-plus" @click="addTarget(rule)"
277
- >添加目标字段</el-button
278
- >
279
- <div class="tip-text">
280
- 目标为容器时仅「显示」生效,必填/只读/禁用将被忽略
281
- </div>
282
- </div>
283
- </div>
284
-
285
- <el-button
286
- type="primary"
287
- plain
288
- icon="el-icon-plus"
289
- size="mini"
290
- @click="addRule"
291
- style="width: 100%"
292
- >
293
- 添加规则
294
- </el-button>
295
- </div>
296
-
297
- <div slot="footer">
298
- <el-button size="mini" @click="ruleDialogVisible = false"
299
- >取消</el-button
300
- >
301
- <el-button size="mini" type="primary" @click="saveRules"
302
- >确定</el-button
303
- >
304
- </div>
305
- </el-dialog>
306
-
307
- <el-dialog
308
- title="额外参数"
309
- :visible.sync="scriptParamDialogVisible"
310
- v-if="scriptParamDialogVisible"
311
- :show-close="true"
312
- custom-class="dialog-style list-dialog"
313
- v-dialog-drag
314
- :close-on-click-modal="false"
315
- :close-on-press-escape="false"
316
- :destroy-on-close="true"
317
- :append-to-body="true"
318
- :modal-append-to-body="true"
319
- >
320
- <div class="cont">
321
- <code-editor
322
- :mode="'javascript'"
323
- :readonly="false"
324
- v-model="editingScriptParam"
325
- ref="scriptParamEditor"
326
- ></code-editor>
327
- </div>
328
- <div slot="footer" class="dialog-footer">
329
- <el-button
330
- @click="scriptParamDialogVisible = false"
331
- class="button-sty"
332
- icon="el-icon-close"
333
- >
334
- {{ i18nt("designer.hint.cancel") }}
335
- </el-button>
336
- <el-button
337
- type="primary"
338
- @click="saveDynamicFieldScriptParam"
339
- class="button-sty"
340
- icon="el-icon-check"
341
- >
342
- {{ i18nt("designer.hint.confirm") }}
343
- </el-button>
344
- </div>
345
- </el-dialog>
346
- </div>
347
- </template>
348
-
349
- <script>
350
- import i18n from "../../../../components/xform/utils/i18n";
351
- import { buildWidgetTreeOptions } from "../../../../components/xform/form-render/container-item/dynamicFieldEngine";
352
-
353
- const NO_VALUE_OPERATORS = ["empty", "notEmpty"];
354
-
355
- export default {
356
- name: "form-dynamicField-setting",
357
- mixins: [i18n],
358
- props: {
359
- designer: Object,
360
- formConfig: Object,
361
- },
362
- data() {
363
- return {
364
- ruleDialogVisible: false,
365
- scriptParamDialogVisible: false,
366
- editingScriptParam: "",
367
- editingRules: [],
368
- operatorOptions: [
369
- { label: "等于", value: "eq" },
370
- { label: "不等于", value: "ne" },
371
- { label: "大于", value: "gt" },
372
- { label: "小于", value: "lt" },
373
- { label: "大于等于", value: "ge" },
374
- { label: "小于等于", value: "le" },
375
- { label: "属于(逗号分隔)", value: "in" },
376
- { label: "不属于(逗号分隔)", value: "nin" },
377
- { label: "包含", value: "includes" },
378
- { label: "为空", value: "empty" },
379
- { label: "不为空", value: "notEmpty" },
380
- ],
381
- };
382
- },
383
- computed: {
384
- // 带层级的字段/容器候选(整个表单)
385
- treeOptions() {
386
- return buildWidgetTreeOptions(
387
- (this.designer && this.designer.widgetList) || []
388
- );
389
- },
390
- },
391
- methods: {
392
- op_noValue(operator) {
393
- return NO_VALUE_OPERATORS.indexOf(operator) > -1;
394
- },
395
- // 选中态/过滤用的纯文本标签
396
- optPlainLabel(n) {
397
- if (n.isContainer) {
398
- return "[" + this.containerTypeLabel(n.type) + "] " + n.baseLabel;
399
- }
400
- return n.baseLabel;
401
- },
402
- containerTypeLabel(type) {
403
- const map = {
404
- grid: "栅格",
405
- table: "表格布局",
406
- "h5-table": "H5表格",
407
- tab: "标签页",
408
- "tab-pane": "标签项",
409
- card: "卡片",
410
- "vf-box": "区块",
411
- panel: "面板",
412
- detail: "单据详情",
413
- "detail-plain": "单据详情(简洁)",
414
- "detail-pane": "详情面板",
415
- "detail-h5": "H5详情",
416
- "h5-card": "H5卡片",
417
- "h5-card-pane": "H5卡片面板",
418
- "sub-form": "子表单",
419
- "grid-sub-form": "网格子表单",
420
- };
421
- return map[type] || type;
422
- },
423
- genId() {
424
- return "fdr_" + Date.now() + "_" + Math.floor(Math.random() * 10000);
425
- },
426
- editDynamicFieldScriptParam() {
427
- this.editingScriptParam = this.formConfig.dynamicFieldScriptParam || "";
428
- this.scriptParamDialogVisible = true;
429
- },
430
- saveDynamicFieldScriptParam() {
431
- const codeHints = this.$refs.scriptParamEditor.getEditorAnnotations();
432
- let syntaxErrorFlag = false;
433
- if (codeHints && codeHints.length > 0) {
434
- codeHints.forEach((chItem) => {
435
- if (chItem.type === "error") {
436
- syntaxErrorFlag = true;
437
- }
438
- });
439
- if (syntaxErrorFlag) {
440
- this.$message.error(
441
- this.i18nt("designer.setting.syntaxCheckWarning")
442
- );
443
- return;
444
- }
445
- }
446
- this.formConfig.dynamicFieldScriptParam = this.editingScriptParam;
447
- this.scriptParamDialogVisible = false;
448
- },
449
- openRuleDialog() {
450
- this.editingRules = JSON.parse(
451
- JSON.stringify(this.formConfig.dynamicFieldRules || [])
452
- );
453
- this.editingRules.forEach((rule) => {
454
- if (!rule.id) rule.id = this.genId();
455
- if (!rule.logic) rule.logic = "and";
456
- if (!rule.conditions) rule.conditions = [];
457
- if (!rule.targets) rule.targets = [];
458
- });
459
- this.ruleDialogVisible = true;
460
- },
461
- addRule() {
462
- this.editingRules.push({
463
- id: this.genId(),
464
- logic: "and",
465
- conditions: [{ field: "", operator: "eq", value: "" }],
466
- targets: [
467
- {
468
- field: "",
469
- visible: undefined,
470
- required: undefined,
471
- readonly: undefined,
472
- disabled: undefined,
473
- },
474
- ],
475
- });
476
- },
477
- removeRule(idx) {
478
- this.editingRules.splice(idx, 1);
479
- },
480
- addCondition(rule) {
481
- rule.conditions.push({ field: "", operator: "eq", value: "" });
482
- },
483
- removeCondition(rule, idx) {
484
- rule.conditions.splice(idx, 1);
485
- },
486
- addTarget(rule) {
487
- rule.targets.push({
488
- field: "",
489
- visible: undefined,
490
- required: undefined,
491
- readonly: undefined,
492
- disabled: undefined,
493
- });
494
- },
495
- removeTarget(rule, idx) {
496
- rule.targets.splice(idx, 1);
497
- },
498
- saveRules() {
499
- this.formConfig.dynamicFieldRules = JSON.parse(
500
- JSON.stringify(this.editingRules)
501
- );
502
- this.ruleDialogVisible = false;
503
- },
504
- },
505
- };
506
- </script>
507
-
508
- <style lang="scss" scoped>
509
- .tip-text {
510
- font-size: 12px;
511
- color: #909399;
512
- line-height: 1.4;
513
- margin-top: 2px;
514
- }
515
-
516
- .rule-list {
517
- max-height: 56vh;
518
- overflow-y: auto;
519
- }
520
-
521
- .rule-card {
522
- border: 1px solid #ebeef5;
523
- border-radius: 4px;
524
- padding: 10px 12px;
525
- margin-bottom: 12px;
526
- background: #fafafa;
527
- }
528
-
529
- .rule-card-header {
530
- display: flex;
531
- justify-content: space-between;
532
- align-items: center;
533
- margin-bottom: 6px;
534
-
535
- .rule-title {
536
- font-weight: bold;
537
- font-size: 13px;
538
- }
539
- }
540
-
541
- .rule-section {
542
- margin-top: 6px;
543
- }
544
-
545
- .rule-section-title {
546
- display: flex;
547
- align-items: center;
548
- gap: 8px;
549
- font-size: 13px;
550
- color: #606266;
551
- margin-bottom: 6px;
552
- }
553
-
554
- .rule-row {
555
- display: flex;
556
- align-items: center;
557
- gap: 6px;
558
- margin-bottom: 6px;
559
- flex-wrap: wrap;
560
- }
561
-
562
- .cell-field {
563
- width: 180px;
564
- }
565
-
566
- .cell-op {
567
- width: 120px;
568
- }
569
-
570
- .cell-value {
571
- width: 130px;
572
- }
573
-
574
- .cell-tri {
575
- width: 92px;
576
- }
577
-
578
- .target-attr {
579
- display: flex;
580
- align-items: center;
581
- gap: 2px;
582
-
583
- .attr-label {
584
- font-size: 12px;
585
- color: #909399;
586
- }
587
- }
588
-
589
- .danger-text {
590
- color: #f56c6c;
591
- }
592
-
593
- .opt-container {
594
- color: #409eff;
595
- }
596
-
597
- .opt-tag {
598
- color: #909399;
599
- font-size: 12px;
600
- margin-right: 4px;
601
- }
602
- </style>
1
+ <template>
2
+ <div class="form-dynamic-field-setting">
3
+ <el-form-item label="启用动态字段">
4
+ <el-switch v-model="formConfig.dynamicFieldEnabled"></el-switch>
5
+ <div class="tip-text">
6
+ 根据表单数据/后台脚本动态控制整个表单内任意字段、容器的显隐等状态
7
+ </div>
8
+ </el-form-item>
9
+
10
+ <template v-if="formConfig.dynamicFieldEnabled">
11
+ <el-form-item label="数据来源">
12
+ <el-radio-group v-model="formConfig.dynamicFieldSourceType" size="mini">
13
+ <el-radio-button label="local">本地规则</el-radio-button>
14
+ <el-radio-button label="script">后台脚本</el-radio-button>
15
+ </el-radio-group>
16
+ </el-form-item>
17
+
18
+ <template v-if="formConfig.dynamicFieldSourceType === 'local'">
19
+ <el-form-item label="字段规则">
20
+ <el-button
21
+ type="primary"
22
+ plain
23
+ size="mini"
24
+ icon="el-icon-setting"
25
+ @click="openRuleDialog"
26
+ >
27
+ 配置规则({{ (formConfig.dynamicFieldRules || []).length }})
28
+ </el-button>
29
+ </el-form-item>
30
+ </template>
31
+
32
+ <template v-if="formConfig.dynamicFieldSourceType === 'script'">
33
+ <el-form-item class="form-item-label-top" label="脚本编码">
34
+ <el-input
35
+ v-model="formConfig.dynamicFieldScriptCode"
36
+ size="mini"
37
+ placeholder="scriptCode 或 formCode/scriptCode"
38
+ ></el-input>
39
+ </el-form-item>
40
+ <el-form-item label="额外参数">
41
+ <a
42
+ href="javascript:void(0);"
43
+ class="a-link link-oneLind"
44
+ @click="editDynamicFieldScriptParam"
45
+ >
46
+ <span>{{ formConfig.dynamicFieldScriptParam }}</span>
47
+ <i class="el-icon-edit"></i>
48
+ </a>
49
+ <div class="tip-text">
50
+ 格式: return { stage:
51
+ formModel.status }
52
+ </div>
53
+ </el-form-item>
54
+ <el-form-item class="form-item-label-top" label="触发字段">
55
+ <el-select
56
+ v-model="formConfig.dynamicFieldTriggerFields"
57
+ multiple
58
+ filterable
59
+ size="mini"
60
+ style="width: 100%"
61
+ placeholder="字段值变化时重新请求后台"
62
+ >
63
+ <el-option
64
+ v-for="(n, idx) in treeOptions"
65
+ :key="n.value + '#' + idx"
66
+ :value="n.value"
67
+ :label="optPlainLabel(n)"
68
+ :disabled="n.isContainer"
69
+ >
70
+ <span
71
+ :style="{ paddingLeft: n.depth * 14 + 'px' }"
72
+ :class="{ 'opt-container': n.isContainer }"
73
+ >
74
+ <span v-if="n.isContainer" class="opt-tag"
75
+ >[{{ containerTypeLabel(n.type) }}]</span
76
+ >{{ n.baseLabel }}
77
+ </span>
78
+ </el-option>
79
+ </el-select>
80
+ <div class="tip-text">为空时仅在初始化时请求一次后台脚本</div>
81
+ </el-form-item>
82
+ <div class="tip-text">
83
+ 后台返回 fieldStates 的 key
84
+ 可为字段名,也可为「命名容器」名以控制其显隐(容器仅 visible 生效)
85
+ </div>
86
+ </template>
87
+ </template>
88
+
89
+ <el-dialog
90
+ title="表单动态字段规则"
91
+ :visible.sync="ruleDialogVisible"
92
+ :append-to-body="true"
93
+ width="760px"
94
+ custom-class="dynamic-field-rule-dialog"
95
+ >
96
+ <div class="rule-list">
97
+ <div
98
+ v-for="(rule, rIdx) in editingRules"
99
+ :key="rule.id"
100
+ class="rule-card"
101
+ >
102
+ <div class="rule-card-header">
103
+ <span class="rule-title">规则 {{ rIdx + 1 }}</span>
104
+ <el-button
105
+ type="text"
106
+ icon="el-icon-delete"
107
+ class="danger-text"
108
+ @click="removeRule(rIdx)"
109
+ >
110
+ 删除规则
111
+ </el-button>
112
+ </div>
113
+
114
+ <div class="rule-section">
115
+ <div class="rule-section-title">
116
+ <span>当满足</span>
117
+ <el-radio-group v-model="rule.logic" size="mini">
118
+ <el-radio-button label="and">全部条件</el-radio-button>
119
+ <el-radio-button label="or">任一条件</el-radio-button>
120
+ </el-radio-group>
121
+ </div>
122
+ <div
123
+ v-for="(cond, cIdx) in rule.conditions"
124
+ :key="cIdx"
125
+ class="rule-row"
126
+ >
127
+ <el-select
128
+ v-model="cond.field"
129
+ filterable
130
+ size="mini"
131
+ placeholder="字段"
132
+ class="cell-field"
133
+ >
134
+ <el-option
135
+ v-for="(n, idx) in treeOptions"
136
+ :key="n.value + '#' + idx"
137
+ :value="n.value"
138
+ :label="optPlainLabel(n)"
139
+ :disabled="n.isContainer"
140
+ >
141
+ <span
142
+ :style="{ paddingLeft: n.depth * 14 + 'px' }"
143
+ :class="{ 'opt-container': n.isContainer }"
144
+ >
145
+ <span v-if="n.isContainer" class="opt-tag"
146
+ >[{{ containerTypeLabel(n.type) }}]</span
147
+ >{{ n.baseLabel }}
148
+ </span>
149
+ </el-option>
150
+ </el-select>
151
+ <el-select
152
+ v-model="cond.operator"
153
+ size="mini"
154
+ placeholder="操作符"
155
+ class="cell-op"
156
+ >
157
+ <el-option
158
+ v-for="op in operatorOptions"
159
+ :key="op.value"
160
+ :label="op.label"
161
+ :value="op.value"
162
+ ></el-option>
163
+ </el-select>
164
+ <el-input
165
+ v-model="cond.value"
166
+ size="mini"
167
+ placeholder="值"
168
+ class="cell-value"
169
+ :disabled="op_noValue(cond.operator)"
170
+ ></el-input>
171
+ <el-button
172
+ type="text"
173
+ icon="el-icon-remove-outline"
174
+ class="danger-text"
175
+ @click="removeCondition(rule, cIdx)"
176
+ ></el-button>
177
+ </div>
178
+ <el-button
179
+ type="text"
180
+ icon="el-icon-plus"
181
+ @click="addCondition(rule)"
182
+ >添加条件</el-button
183
+ >
184
+ </div>
185
+
186
+ <div class="rule-section">
187
+ <div class="rule-section-title"><span>则设置字段/容器</span></div>
188
+ <div
189
+ v-for="(t, tIdx) in rule.targets"
190
+ :key="tIdx"
191
+ class="rule-row target-row"
192
+ >
193
+ <el-select
194
+ v-model="t.field"
195
+ filterable
196
+ size="mini"
197
+ placeholder="目标字段/容器"
198
+ class="cell-field"
199
+ >
200
+ <el-option
201
+ v-for="(n, idx) in treeOptions"
202
+ :key="n.value + '#' + idx"
203
+ :value="n.value"
204
+ :label="optPlainLabel(n)"
205
+ :disabled="n.isContainer && !n.hasName"
206
+ >
207
+ <span
208
+ :style="{ paddingLeft: n.depth * 14 + 'px' }"
209
+ :class="{ 'opt-container': n.isContainer }"
210
+ >
211
+ <span v-if="n.isContainer" class="opt-tag"
212
+ >[{{ containerTypeLabel(n.type) }}]</span
213
+ >{{ n.baseLabel }}
214
+ </span>
215
+ </el-option>
216
+ </el-select>
217
+ <span class="target-attr">
218
+ <span class="attr-label">显示</span>
219
+ <el-select
220
+ v-model="t.visible"
221
+ size="mini"
222
+ class="cell-tri"
223
+ clearable
224
+ placeholder="不变"
225
+ >
226
+ <el-option label="显示" :value="true"></el-option>
227
+ <el-option label="隐藏" :value="false"></el-option>
228
+ </el-select>
229
+ </span>
230
+ <span class="target-attr">
231
+ <span class="attr-label">必填</span>
232
+ <el-select
233
+ v-model="t.required"
234
+ size="mini"
235
+ class="cell-tri"
236
+ clearable
237
+ placeholder="不变"
238
+ >
239
+ <el-option label="必填" :value="true"></el-option>
240
+ <el-option label="非必填" :value="false"></el-option>
241
+ </el-select>
242
+ </span>
243
+ <span class="target-attr">
244
+ <span class="attr-label">只读</span>
245
+ <el-select
246
+ v-model="t.readonly"
247
+ size="mini"
248
+ class="cell-tri"
249
+ clearable
250
+ placeholder="不变"
251
+ >
252
+ <el-option label="只读" :value="true"></el-option>
253
+ <el-option label="可编辑" :value="false"></el-option>
254
+ </el-select>
255
+ </span>
256
+ <span class="target-attr">
257
+ <span class="attr-label">禁用</span>
258
+ <el-select
259
+ v-model="t.disabled"
260
+ size="mini"
261
+ class="cell-tri"
262
+ clearable
263
+ placeholder="不变"
264
+ >
265
+ <el-option label="禁用" :value="true"></el-option>
266
+ <el-option label="启用" :value="false"></el-option>
267
+ </el-select>
268
+ </span>
269
+ <el-button
270
+ type="text"
271
+ icon="el-icon-remove-outline"
272
+ class="danger-text"
273
+ @click="removeTarget(rule, tIdx)"
274
+ ></el-button>
275
+ </div>
276
+ <el-button type="text" icon="el-icon-plus" @click="addTarget(rule)"
277
+ >添加目标字段</el-button
278
+ >
279
+ <div class="tip-text">
280
+ 目标为容器时仅「显示」生效,必填/只读/禁用将被忽略
281
+ </div>
282
+ </div>
283
+ </div>
284
+
285
+ <el-button
286
+ type="primary"
287
+ plain
288
+ icon="el-icon-plus"
289
+ size="mini"
290
+ @click="addRule"
291
+ style="width: 100%"
292
+ >
293
+ 添加规则
294
+ </el-button>
295
+ </div>
296
+
297
+ <div slot="footer">
298
+ <el-button size="mini" @click="ruleDialogVisible = false"
299
+ >取消</el-button
300
+ >
301
+ <el-button size="mini" type="primary" @click="saveRules"
302
+ >确定</el-button
303
+ >
304
+ </div>
305
+ </el-dialog>
306
+
307
+ <el-dialog
308
+ title="额外参数"
309
+ :visible.sync="scriptParamDialogVisible"
310
+ v-if="scriptParamDialogVisible"
311
+ :show-close="true"
312
+ custom-class="dialog-style list-dialog"
313
+ v-dialog-drag
314
+ :close-on-click-modal="false"
315
+ :close-on-press-escape="false"
316
+ :destroy-on-close="true"
317
+ :append-to-body="true"
318
+ :modal-append-to-body="true"
319
+ >
320
+ <div class="cont">
321
+ <code-editor
322
+ :mode="'javascript'"
323
+ :readonly="false"
324
+ v-model="editingScriptParam"
325
+ ref="scriptParamEditor"
326
+ ></code-editor>
327
+ </div>
328
+ <div slot="footer" class="dialog-footer">
329
+ <el-button
330
+ @click="scriptParamDialogVisible = false"
331
+ class="button-sty"
332
+ icon="el-icon-close"
333
+ >
334
+ {{ i18nt("designer.hint.cancel") }}
335
+ </el-button>
336
+ <el-button
337
+ type="primary"
338
+ @click="saveDynamicFieldScriptParam"
339
+ class="button-sty"
340
+ icon="el-icon-check"
341
+ >
342
+ {{ i18nt("designer.hint.confirm") }}
343
+ </el-button>
344
+ </div>
345
+ </el-dialog>
346
+ </div>
347
+ </template>
348
+
349
+ <script>
350
+ import i18n from "../../../../components/xform/utils/i18n";
351
+ import { buildWidgetTreeOptions } from "../../../../components/xform/form-render/container-item/dynamicFieldEngine";
352
+
353
+ const NO_VALUE_OPERATORS = ["empty", "notEmpty"];
354
+
355
+ export default {
356
+ name: "form-dynamicField-setting",
357
+ mixins: [i18n],
358
+ props: {
359
+ designer: Object,
360
+ formConfig: Object,
361
+ },
362
+ data() {
363
+ return {
364
+ ruleDialogVisible: false,
365
+ scriptParamDialogVisible: false,
366
+ editingScriptParam: "",
367
+ editingRules: [],
368
+ operatorOptions: [
369
+ { label: "等于", value: "eq" },
370
+ { label: "不等于", value: "ne" },
371
+ { label: "大于", value: "gt" },
372
+ { label: "小于", value: "lt" },
373
+ { label: "大于等于", value: "ge" },
374
+ { label: "小于等于", value: "le" },
375
+ { label: "属于(逗号分隔)", value: "in" },
376
+ { label: "不属于(逗号分隔)", value: "nin" },
377
+ { label: "包含", value: "includes" },
378
+ { label: "为空", value: "empty" },
379
+ { label: "不为空", value: "notEmpty" },
380
+ ],
381
+ };
382
+ },
383
+ computed: {
384
+ // 带层级的字段/容器候选(整个表单)
385
+ treeOptions() {
386
+ return buildWidgetTreeOptions(
387
+ (this.designer && this.designer.widgetList) || []
388
+ );
389
+ },
390
+ },
391
+ methods: {
392
+ op_noValue(operator) {
393
+ return NO_VALUE_OPERATORS.indexOf(operator) > -1;
394
+ },
395
+ // 选中态/过滤用的纯文本标签
396
+ optPlainLabel(n) {
397
+ if (n.isContainer) {
398
+ return "[" + this.containerTypeLabel(n.type) + "] " + n.baseLabel;
399
+ }
400
+ return n.baseLabel;
401
+ },
402
+ containerTypeLabel(type) {
403
+ const map = {
404
+ grid: "栅格",
405
+ table: "表格布局",
406
+ "h5-table": "H5表格",
407
+ tab: "标签页",
408
+ "tab-pane": "标签项",
409
+ card: "卡片",
410
+ "vf-box": "区块",
411
+ panel: "面板",
412
+ detail: "单据详情",
413
+ "detail-plain": "单据详情(简洁)",
414
+ "detail-pane": "详情面板",
415
+ "detail-h5": "H5详情",
416
+ "h5-card": "H5卡片",
417
+ "h5-card-pane": "H5卡片面板",
418
+ "sub-form": "子表单",
419
+ "grid-sub-form": "网格子表单",
420
+ };
421
+ return map[type] || type;
422
+ },
423
+ genId() {
424
+ return "fdr_" + Date.now() + "_" + Math.floor(Math.random() * 10000);
425
+ },
426
+ editDynamicFieldScriptParam() {
427
+ this.editingScriptParam = this.formConfig.dynamicFieldScriptParam || "";
428
+ this.scriptParamDialogVisible = true;
429
+ },
430
+ saveDynamicFieldScriptParam() {
431
+ const codeHints = this.$refs.scriptParamEditor.getEditorAnnotations();
432
+ let syntaxErrorFlag = false;
433
+ if (codeHints && codeHints.length > 0) {
434
+ codeHints.forEach((chItem) => {
435
+ if (chItem.type === "error") {
436
+ syntaxErrorFlag = true;
437
+ }
438
+ });
439
+ if (syntaxErrorFlag) {
440
+ this.$message.error(
441
+ this.i18nt("designer.setting.syntaxCheckWarning")
442
+ );
443
+ return;
444
+ }
445
+ }
446
+ this.formConfig.dynamicFieldScriptParam = this.editingScriptParam;
447
+ this.scriptParamDialogVisible = false;
448
+ },
449
+ openRuleDialog() {
450
+ this.editingRules = JSON.parse(
451
+ JSON.stringify(this.formConfig.dynamicFieldRules || [])
452
+ );
453
+ this.editingRules.forEach((rule) => {
454
+ if (!rule.id) rule.id = this.genId();
455
+ if (!rule.logic) rule.logic = "and";
456
+ if (!rule.conditions) rule.conditions = [];
457
+ if (!rule.targets) rule.targets = [];
458
+ });
459
+ this.ruleDialogVisible = true;
460
+ },
461
+ addRule() {
462
+ this.editingRules.push({
463
+ id: this.genId(),
464
+ logic: "and",
465
+ conditions: [{ field: "", operator: "eq", value: "" }],
466
+ targets: [
467
+ {
468
+ field: "",
469
+ visible: undefined,
470
+ required: undefined,
471
+ readonly: undefined,
472
+ disabled: undefined,
473
+ },
474
+ ],
475
+ });
476
+ },
477
+ removeRule(idx) {
478
+ this.editingRules.splice(idx, 1);
479
+ },
480
+ addCondition(rule) {
481
+ rule.conditions.push({ field: "", operator: "eq", value: "" });
482
+ },
483
+ removeCondition(rule, idx) {
484
+ rule.conditions.splice(idx, 1);
485
+ },
486
+ addTarget(rule) {
487
+ rule.targets.push({
488
+ field: "",
489
+ visible: undefined,
490
+ required: undefined,
491
+ readonly: undefined,
492
+ disabled: undefined,
493
+ });
494
+ },
495
+ removeTarget(rule, idx) {
496
+ rule.targets.splice(idx, 1);
497
+ },
498
+ saveRules() {
499
+ this.formConfig.dynamicFieldRules = JSON.parse(
500
+ JSON.stringify(this.editingRules)
501
+ );
502
+ this.ruleDialogVisible = false;
503
+ },
504
+ },
505
+ };
506
+ </script>
507
+
508
+ <style lang="scss" scoped>
509
+ .tip-text {
510
+ font-size: 12px;
511
+ color: #909399;
512
+ line-height: 1.4;
513
+ margin-top: 2px;
514
+ }
515
+
516
+ .rule-list {
517
+ max-height: 56vh;
518
+ overflow-y: auto;
519
+ }
520
+
521
+ .rule-card {
522
+ border: 1px solid #ebeef5;
523
+ border-radius: 4px;
524
+ padding: 10px 12px;
525
+ margin-bottom: 12px;
526
+ background: #fafafa;
527
+ }
528
+
529
+ .rule-card-header {
530
+ display: flex;
531
+ justify-content: space-between;
532
+ align-items: center;
533
+ margin-bottom: 6px;
534
+
535
+ .rule-title {
536
+ font-weight: bold;
537
+ font-size: 13px;
538
+ }
539
+ }
540
+
541
+ .rule-section {
542
+ margin-top: 6px;
543
+ }
544
+
545
+ .rule-section-title {
546
+ display: flex;
547
+ align-items: center;
548
+ gap: 8px;
549
+ font-size: 13px;
550
+ color: #606266;
551
+ margin-bottom: 6px;
552
+ }
553
+
554
+ .rule-row {
555
+ display: flex;
556
+ align-items: center;
557
+ gap: 6px;
558
+ margin-bottom: 6px;
559
+ flex-wrap: wrap;
560
+ }
561
+
562
+ .cell-field {
563
+ width: 180px;
564
+ }
565
+
566
+ .cell-op {
567
+ width: 120px;
568
+ }
569
+
570
+ .cell-value {
571
+ width: 130px;
572
+ }
573
+
574
+ .cell-tri {
575
+ width: 92px;
576
+ }
577
+
578
+ .target-attr {
579
+ display: flex;
580
+ align-items: center;
581
+ gap: 2px;
582
+
583
+ .attr-label {
584
+ font-size: 12px;
585
+ color: #909399;
586
+ }
587
+ }
588
+
589
+ .danger-text {
590
+ color: #f56c6c;
591
+ }
592
+
593
+ .opt-container {
594
+ color: #409eff;
595
+ }
596
+
597
+ .opt-tag {
598
+ color: #909399;
599
+ font-size: 12px;
600
+ margin-right: 4px;
601
+ }
602
+ </style>