cloud-web-corejs 1.0.54-dev.85 → 1.0.54-dev.86

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "cloud-web-corejs",
3
3
  "private": false,
4
- "version": "1.0.54-dev.85",
4
+ "version": "1.0.54-dev.86",
5
5
  "scripts": {
6
6
  "dev": "vue-cli-service serve",
7
7
  "lint": "eslint --ext .js,.vue src",
@@ -21,7 +21,7 @@ export default {
21
21
  },
22
22
  data() {
23
23
  return {
24
- eventParams: ['{ checked, row, rowIndex, $rowIndex, column, columnIndex, $columnIndex, $event }'],
24
+ eventParams: ['param'],
25
25
  }
26
26
  }
27
27
  }
@@ -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.modelSteps" clearable></el-input>
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
- wfConfigData.forEach(item => {
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
- modelSteps: null,
221
+ taskSteps: null,
220
222
  companyInfos: []
221
223
  }
222
224
  this.tableData.push(newItem);