cloud-web-corejs 1.0.54-dev.350 → 1.0.54-dev.352

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 (25) hide show
  1. package/package.json +1 -1
  2. package/src/components/baseInputExport/mixins.js +1 -386
  3. package/src/components/errorMsg/mixins.js +1 -89
  4. package/src/components/excelImport/mixins.js +1 -749
  5. package/src/components/jsonImport/mixins.js +1 -332
  6. package/src/components/langImport/mixins.js +1 -484
  7. package/src/components/wf/mixins/wfFlowEleScriptDialog.js +1 -129
  8. package/src/components/wf/wf.js +1 -2117
  9. package/src/components/xform/form-designer/designer.js +1 -1645
  10. package/src/components/xform/form-designer/form-widget/container-widget/data-table-mixin.js +1 -281
  11. package/src/components/xform/form-designer/form-widget/dialog/importDialogMixin.js +1 -1328
  12. package/src/components/xform/form-designer/form-widget/field-widget/fieldMixin.js +1 -1591
  13. package/src/components/xform/form-designer/form-widget/field-widget/form-item-wrapper.vue +0 -7
  14. package/src/components/xform/form-designer/indexMixin.js +1 -823
  15. package/src/components/xform/form-designer/setting-panel/property-editor/container-data-table/columnRenderDialog.vue +0 -1
  16. package/src/components/xform/form-render/container-item/containerItemMixin.js +1 -348
  17. package/src/components/xform/form-render/container-item/data-table-mixin.js +1 -2707
  18. package/src/components/xform/form-render/container-item/table2-item.vue +141 -88
  19. package/src/components/xform/form-render/indexMixin.js +1 -3139
  20. package/src/components/xform/mixins/scriptHttp.js +1 -173
  21. package/src/components/xform/utils/util.js +1 -1451
  22. package/src/utils/request.js +1 -359
  23. package/src/utils/vab.js +1 -1095
  24. package/src/views/user/notify_message/dialog.vue +0 -1
  25. package/src/views/user/wf/wfReport/index.vue +1 -51
@@ -74,7 +74,6 @@ export default {
74
74
  let wfUrl = turl.split("?")[0];
75
75
  let param = this.getUrlParam(turl);
76
76
  let wfDataId = param.dataId;
77
- debugger;
78
77
  if (!wfDataId) {
79
78
  wfDataId = 0;
80
79
  } else if (!isNaN(wfDataId)) {
@@ -108,47 +108,6 @@
108
108
  <p v-if="row.opinion">审批意见:{{ row.opinion }}</p>
109
109
  </div>
110
110
  </el-step>
111
- <!-- <el-step>
112
- <div slot="title">
113
- <div class="name">产品经理审批</div>
114
- <div class="a-time">耗时: 2天</div>
115
- </div>
116
- <div slot="description">
117
- <p>
118
- <span class="use">张十三</span
119
- ><span class="time">2019-02-05 12:33:02</span>
120
- </p>
121
- <p class="f-blue">审批中</p>
122
- </div>
123
- </el-step>
124
- <el-step>
125
- <div slot="title">
126
- <div class="name">人事审批</div>
127
- <div class="a-time">耗时: 2天</div>
128
- </div>
129
- <div slot="description">
130
- <p>
131
- <span class="use">张十三</span
132
- ><span class="time">2019-02-05 12:33:02</span>
133
- </p>
134
- <p class="f-green">审批通过</p>
135
- <p>审批意见:通过</p>
136
- </div>
137
- </el-step>
138
- <el-step>
139
- <div slot="title">
140
- <div class="name">产品经理审批</div>
141
- <div class="a-time">耗时: 2天</div>
142
- </div>
143
- <div slot="description">
144
- <p>
145
- <span class="use">张十三</span
146
- ><span class="time">2019-02-05 12:33:02</span>
147
- </p>
148
- <p class="f-dred">审批不通过</p>
149
- <p>审批意见:不通过</p>
150
- </div>
151
- </el-step> -->
152
111
  </el-steps>
153
112
  </div>
154
113
  </el-card>
@@ -222,8 +181,6 @@ export default {
222
181
  initTableList() {
223
182
  let that = this;
224
183
  let formCode = this.$route.query.formCode;
225
- let syncColumns = [];
226
-
227
184
  let tableOption = {
228
185
  vue: this,
229
186
  tableRef: "table-m1",
@@ -232,19 +189,12 @@ export default {
232
189
  param: () => {
233
190
  return {
234
191
  ...this.formData,
235
- // ...this.advancedFormData,
236
192
  };
237
193
  },
238
- config: {
239
- columnConfig: {
240
- resizable: true,
241
- },
242
- },
243
-
244
194
  columns: [
245
195
  { type: "checkbox", width: 48, resizable: false, fixed: "left" },
246
196
  { field: "obj_type_name", title: "流程类型", width: 150, fixed: "left" },
247
- { field: "name", title: "标题", width: 180 },
197
+ { field: "name", title: "流程主题", width: 180 },
248
198
  {
249
199
  field: "stat",
250
200
  title: "状态",