cloud-web-corejs 1.0.54-dev.85 → 1.0.54-dev.87
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/xform/form-designer/setting-panel/property-editor/container-data-table/onCheckboxChange-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/wfFlag-editor.vue +8 -6
- package/src/components/xform/form-render/container-item/data-table-mixin.js +1881 -1
- package/src/components/xform/form-render/indexMixin.js +1691 -1
- package/src/layout/components/Sidebar/default.vue +2 -0
- package/src/layout/components/Sidebar/mixins/pdd.js +50 -0
- package/src/store/modules/user.js +302 -1
- package/src/utils/pddLog.js +86 -0
package/package.json
CHANGED
@@ -79,7 +79,7 @@
|
|
79
79
|
</el-table-column>
|
80
80
|
<el-table-column :label="i18nt('节点')" width="250">
|
81
81
|
<template slot-scope="{row}">
|
82
|
-
<el-input v-model="row.
|
82
|
+
<el-input v-model="row.taskSteps" clearable></el-input>
|
83
83
|
</template>
|
84
84
|
</el-table-column>
|
85
85
|
|
@@ -174,11 +174,13 @@ export default {
|
|
174
174
|
let reportTemplate = this.getReportTemplate();
|
175
175
|
let objTypeCode = reportTemplate.objTypeCode;
|
176
176
|
let wfConfigData = this.optionModel.wfConfigData || [];
|
177
|
-
|
177
|
+
this.dialogVisible = true;
|
178
|
+
this.tableData = this.$baseLodash.cloneDeep(wfConfigData)
|
179
|
+
/*wfConfigData.forEach(item => {
|
178
180
|
this.getWfObjConfigItem(item.modelId)
|
179
|
-
})
|
181
|
+
})*/
|
180
182
|
|
181
|
-
this.$http({
|
183
|
+
/*this.$http({
|
182
184
|
url: this.current_prefix + "/wf_obj_config_item/list",
|
183
185
|
data: {
|
184
186
|
objTypeCode: objTypeCode,
|
@@ -191,7 +193,7 @@ export default {
|
|
191
193
|
this.dialogVisible = true;
|
192
194
|
this.tableData = this.$baseLodash.cloneDeep(wfConfigData)
|
193
195
|
},
|
194
|
-
})
|
196
|
+
});*/
|
195
197
|
},
|
196
198
|
getWfObjConfigItem(modelId) {
|
197
199
|
let reportTemplate = this.getReportTemplate();
|
@@ -216,7 +218,7 @@ export default {
|
|
216
218
|
serveType: null,
|
217
219
|
serveName: null,
|
218
220
|
modelKey: null,
|
219
|
-
|
221
|
+
taskSteps: null,
|
220
222
|
companyInfos: []
|
221
223
|
}
|
222
224
|
this.tableData.push(newItem);
|