tianheng-ui 0.0.44 → 0.0.45
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/lib/03250ed25fc1b305e9980cf7cf0dfb09.js +1 -0
- package/lib/c755e7fc08446566ee8dd3a8aa8fe43f.js +1715 -0
- package/lib/index.js +1 -1
- package/lib/tianheng-ui.js +26 -16
- package/package.json +65 -59
- package/packages/formMaking/Container.vue +15 -2
- package/packages/formMaking/FormConfig.vue +12 -3
- package/packages/formMaking/GenerateFormItem.vue +516 -266
- package/packages/formMaking/WidgetConfig.vue +1361 -760
- package/packages/formMaking/WidgetForm.vue +2 -2
- package/packages/formMaking/WidgetFormItem.vue +466 -284
- package/packages/formMaking/componentsConfig.js +402 -332
@@ -146,7 +146,7 @@ export default {
|
|
146
146
|
...this.data.list[newIndex],
|
147
147
|
options: {
|
148
148
|
...this.data.list[newIndex].options,
|
149
|
-
remoteFunc: "func_" + key
|
149
|
+
// remoteFunc: "func_" + key
|
150
150
|
},
|
151
151
|
key,
|
152
152
|
// 绑定键值
|
@@ -209,7 +209,7 @@ export default {
|
|
209
209
|
...row.columns[colIndex].list[newIndex],
|
210
210
|
options: {
|
211
211
|
...row.columns[colIndex].list[newIndex].options,
|
212
|
-
remoteFunc: "func_" + key
|
212
|
+
// remoteFunc: "func_" + key
|
213
213
|
},
|
214
214
|
key,
|
215
215
|
// 绑定键值
|