cloud-web-corejs 1.0.54-dev.314 → 1.0.54-dev.316
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/baseInputExport/mixins.js +388 -1
- package/src/components/wf/add0pinionButton.vue +102 -0
- package/src/components/wf/content.vue +18 -5
- package/src/components/wf/mixins/setCandidateButton.js +161 -0
- package/src/components/wf/mixins/setCandidateDialog.js +1 -1
- package/src/components/wf/mixins/setCandidateDialog2.js +6 -0
- package/src/components/wf/setCandidateButton.vue +40 -0
- package/src/components/wf/setCandidateDialog2.vue +3 -228
- package/src/components/wf/wf.js +2068 -1
- package/src/components/wf/wfTaskUserRangeDialog.vue +9 -1
- package/src/components/xform/form-designer/form-widget/container-widget/data-table-widget.vue +4 -1
- package/src/components/xform/form-designer/form-widget/field-widget/fieldMixin.js +1547 -1
- package/src/components/xform/form-designer/form-widget/field-widget/print-button-widget.vue +1 -1
- package/src/components/xform/form-designer/form-widget/field-widget/print-detail-button-widget.vue +108 -0
- package/src/components/xform/form-designer/setting-panel/property-editor/container-data-table/data-table-editor.vue +3 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/field-print-button/print-button-editor.vue +8 -0
- package/src/components/xform/form-designer/setting-panel/property-editor/field-print-button/print-detail-button-editor.vue +91 -0
- package/src/components/xform/form-designer/setting-panel/propertyRegister.js +2 -1
- package/src/components/xform/form-designer/widget-panel/widgetsConfig.js +43 -0
- package/src/components/xform/form-render/container-item/data-table-mixin.js +2416 -1
- package/src/components/xform/lang/zh-CN.js +1 -0
- package/src/components/xform/mixins/scriptHttp.js +172 -1
- package/src/views/user/form/vform/render.vue +1 -1
- package/src/views/user/home/default2.vue +1035 -0
- package/src/views/user/home/taili/index.vue +1024 -0
- package/src/views/user/notify_message/dialog.vue +22 -7
- package/src/views/user/outLink/form_view.vue +211 -211
@@ -47,7 +47,7 @@
|
|
47
47
|
<i class="el-icon-close el-icon"></i>
|
48
48
|
{{ $t1('取 消') }}
|
49
49
|
</el-button>
|
50
|
-
<el-button type="primary" @click="
|
50
|
+
<el-button type="primary" @click="confirmDialog" class="button-sty">
|
51
51
|
<i class="el-icon-check el-icon"></i>
|
52
52
|
{{ $t1('确 定') }}
|
53
53
|
</el-button>
|
@@ -126,6 +126,14 @@ export default {
|
|
126
126
|
this.$vxeTableUtil.initVxeTable(tableOption).then(opts => {
|
127
127
|
that.vxeOption = opts;
|
128
128
|
});
|
129
|
+
},
|
130
|
+
confirmDialog(){
|
131
|
+
let checkRows = this.checkRows;
|
132
|
+
if(!checkRows.length){
|
133
|
+
this.$baseAlert(this.$t1("请选择候选人"));
|
134
|
+
return
|
135
|
+
}
|
136
|
+
this.dialogPrimary(checkRows)
|
129
137
|
}
|
130
138
|
}
|
131
139
|
};
|
package/src/components/xform/form-designer/form-widget/container-widget/data-table-widget.vue
CHANGED
@@ -199,7 +199,10 @@ export default {
|
|
199
199
|
Draggable,
|
200
200
|
...FieldComponents
|
201
201
|
},
|
202
|
-
mixins: [dataTableMixin]
|
202
|
+
mixins: [dataTableMixin],
|
203
|
+
created() {
|
204
|
+
if(this.widget.options.isNotQueryAllPage===undefined)this.widget.options.isNotQueryAllPage = false;
|
205
|
+
}
|
203
206
|
};
|
204
207
|
</script>
|
205
208
|
|