cloud-web-corejs 1.0.54-dev.500 → 1.0.54-dev.502
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 +1 -1
- package/src/components/VabUpload/mixins.js +1 -1
- package/src/components/VabUpload/view.vue +1 -6
- package/src/components/vb-tabs/x-tabs.vue +0 -1
- package/src/components/wf/wf.js +2136 -1
- package/src/components/xform/form-designer/designer.js +1656 -1
- package/src/components/xform/form-designer/form-widget/field-widget/form-item-wrapper.vue +247 -188
- package/src/components/xform/form-designer/form-widget/field-widget/static-content-wrapper.vue +1 -0
- package/src/components/xform/form-designer/setting-panel/form-setting.vue +274 -112
- package/src/components/xform/form-render/indexMixin.js +3411 -1
- package/src/components/xform/utils/formula-util copy.js +0 -3
- package/src/components/xform/utils/formula-util.js +0 -4
- package/src/components/xform/utils/util.js +1464 -1
- package/src/utils/vab.js +1 -1
|
@@ -193,9 +193,6 @@ export function baseReplaceFieldsAndFunctionsOfFormula(VFR, formulaFieldRef, for
|
|
|
193
193
|
const funcName = mi.split('.')[1]
|
|
194
194
|
resultFormula = resultFormula.replace(mi, funcName)
|
|
195
195
|
|
|
196
|
-
/* if(funcName === "SUMIF" || funcName === "SUMIFS"){
|
|
197
|
-
debugger
|
|
198
|
-
} */
|
|
199
196
|
return
|
|
200
197
|
}
|
|
201
198
|
|
|
@@ -271,10 +271,6 @@ export function baseReplaceFieldsAndFunctionsOfFormula(VFR, formulaFieldRef, for
|
|
|
271
271
|
}
|
|
272
272
|
});
|
|
273
273
|
|
|
274
|
-
/* if(functionCalls.length){
|
|
275
|
-
debugger
|
|
276
|
-
} */
|
|
277
|
-
|
|
278
274
|
if (isSameSubForm && !isInAggregationParam) {
|
|
279
275
|
// 同一子表单且不在聚合函数参数中,使用当前行数据
|
|
280
276
|
if(row){
|