cloud-web-corejs 1.0.115 → 1.0.117

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 (45) hide show
  1. package/package.json +3 -1
  2. package/src/components/VabUpload/view.vue +135 -135
  3. package/src/components/errorMsg/mixins.js +7 -5
  4. package/src/components/excelExport/button.vue +57 -4
  5. package/src/components/excelExport/index.js +7 -6
  6. package/src/components/excelExport/index.vue +56 -2
  7. package/src/components/excelExport/mixins.js +1 -1
  8. package/src/components/formOplog/mixins.js +1 -1
  9. package/src/components/statusTag/mixins.js +1 -1
  10. package/src/components/table/index.js +1 -1
  11. package/src/components/table/util/index.js +1 -1
  12. package/src/components/tempStorage/index.vue +9 -6
  13. package/src/components/tempStorage/tempStorageDialog.vue +1 -1
  14. package/src/components/wf/content.vue +17 -1
  15. package/src/components/wf/mixins/setCandidateDialog.js +2 -1
  16. package/src/components/wf/setCandidateDialog.vue +9 -0
  17. package/src/components/wf/setCandidateDialog2.vue +320 -0
  18. package/src/components/wf/wf.js +1 -1
  19. package/src/components/wf/wfStartDialog.vue +70 -42
  20. package/src/components/wf/wfTaskUserRangeDialog.vue +131 -0
  21. package/src/components/wf/wfUtil.js +1 -1
  22. package/src/components/xform/form-designer/designer.js +1 -1
  23. package/src/components/xform/form-designer/form-widget/field-widget/checkbox-widget.vue +2 -2
  24. package/src/components/xform/form-designer/form-widget/field-widget/fieldMixin.js +1 -1
  25. package/src/components/xform/form-designer/form-widget/field-widget/radio-widget.vue +2 -2
  26. package/src/components/xform/form-designer/form-widget/field-widget/select-widget.vue +4 -4
  27. package/src/components/xform/form-designer/form-widget/field-widget/static-content-wrapper.vue +2 -1
  28. package/src/components/xform/form-designer/form-widget/field-widget/tempStorage-widget.vue +127 -0
  29. package/src/components/xform/form-designer/indexMixin.js +1 -1
  30. package/src/components/xform/form-designer/setting-panel/form-setting.vue +93 -5
  31. package/src/components/xform/form-designer/setting-panel/property-editor/field-button/search-dialog-event-editor.vue +18 -2
  32. package/src/components/xform/form-designer/setting-panel/property-editor/tempStorage-editor.vue +23 -0
  33. package/src/components/xform/form-designer/setting-panel/propertyRegister.js +1 -0
  34. package/src/components/xform/form-designer/widget-panel/widgetsConfig.js +31 -0
  35. package/src/components/xform/form-render/container-item/data-table-mixin.js +1 -1
  36. package/src/components/xform/form-render/indexMixin.js +3 -1
  37. package/src/components/xform/lang/zh-CN.js +1 -0
  38. package/src/components/xform/mixins/defaultHandle.js +1 -1
  39. package/src/components/xform/utils/util.js +1451 -1
  40. package/src/utils/index.js +2 -5
  41. package/src/views/user/form/view/list.vue +18 -3
  42. package/src/views/user/user/edit.vue +1059 -1041
  43. package/src/views/user/user/list.vue +19 -0
  44. package/src/views/user/wf/wf_obj_config/itemEdit.vue +3 -3
  45. package/src/views/user/wf/wf_obj_config/list.vue +5 -5
@@ -205,6 +205,24 @@ export default {
205
205
  });
206
206
  },
207
207
  initTableList() {
208
+ let otherColumns = [];
209
+ let userType = this.userType
210
+ if(userType==1){
211
+
212
+ }else if(userType==2){
213
+ otherColumns.push(...[
214
+ {
215
+ field: 'signatoryName',
216
+ title: this.$t1('签约人'),
217
+ width: 150
218
+ },
219
+ {
220
+ field: 'signatoryMobile',
221
+ title: this.$t1('签约人电话'),
222
+ width: 150
223
+ },
224
+ ])
225
+ }
208
226
  let tableOption = {
209
227
  vue: this,
210
228
  tableRef: 'table-m1',
@@ -345,6 +363,7 @@ export default {
345
363
  title: this.$t1('所属组织'),
346
364
  width: 250
347
365
  },
366
+ ...otherColumns,
348
367
  {
349
368
  field: 'createBy',
350
369
  title: this.$t1('创建人'),
@@ -122,13 +122,13 @@
122
122
  </tr>
123
123
  <tr>
124
124
  <th>
125
- {{ $t1('流程启动不允许更改候选人') }}
125
+ {{ $t1('是否允许流程启动更改候选人') }}
126
126
  </th>
127
127
  <td>
128
128
  <el-form-item prop="startNoSetCandidate" :rules="[{ required: false, trigger: 'blur' }]">
129
129
  <el-radio-group v-model="wfObjConfigItem.startNoSetCandidate">
130
- <el-radio :label="true">{{ $t1('是') }}</el-radio>
131
- <el-radio :label="false">{{ $t1('否') }}</el-radio>
130
+ <el-radio :label="false">{{ $t1('是') }}</el-radio>
131
+ <el-radio :label="true">{{ $t1('否') }}</el-radio>
132
132
  </el-radio-group>
133
133
  </el-form-item>
134
134
  </td>
@@ -105,7 +105,7 @@
105
105
  <iframe :src="wfUrl" :style="'width:100%;height:' + ($root.$el.clientHeight - 30 - 12) + 'px'"></iframe>
106
106
  </el-dialog>
107
107
 
108
- <userDialog v-if="showUserDialog" :visiable.sync="showUserDialog" @confirm="confirmUser" :rows="wfAssignData" labelKey="loginAccount"
108
+ <userDialog v-if="showUserDialog" :visiable.sync="showUserDialog" @confirm="confirmUser"
109
109
  :multi.sync="wfAssignMulti"/>
110
110
  <positionDialog v-if="showPositionDialog" :visiable.sync="showPositionDialog" :rows="wfAssignPositionData" @confirm="confirmPosition"/>
111
111
  <scriptDescriptionDialog path="static/readme/Wf.txt" v-if="showScriptDescriptionDialog"
@@ -474,15 +474,15 @@ export default {
474
474
  }
475
475
  },
476
476
  {
477
- title: this.$t1('流程启动不允许更改候选人'),
477
+ title: this.$t1('是否允许流程启动更改候选人'),
478
478
  field: 'startNoSetCandidate',
479
- width: 150,
479
+ width: 230,
480
480
  slots: {
481
481
  default: ({row}) => {
482
482
  if (row.startNoSetCandidate) {
483
- return [<div class="txt-status">{this.$t1('')}</div>];
483
+ return [<div class="txt-status">{this.$t1('')}</div>];
484
484
  } else {
485
- return [<div class="txt-status s-3">{this.$t1('')}</div>];
485
+ return [<div class="txt-status s-3">{this.$t1('')}</div>];
486
486
  }
487
487
  }
488
488
  }