cloud-web-corejs 1.0.54-dev.532 → 1.0.54-dev.535
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 +8 -1
- package/src/components/excelExport/exportFieldDialog.vue +69 -7
- package/src/components/table/index.js +1 -0
- package/src/components/univer/index.vue +161 -0
- package/src/components/xform/form-designer/form-widget/dialog/univerDialog.vue +184 -0
- package/src/components/xform/form-designer/form-widget/field-widget/fieldMixin.js +1630 -1
- package/src/components/xform/form-render/container-item/data-table-mixin.js +2 -1
- package/src/components/xform/form-render/index.vue +3 -0
- package/src/components/xform/form-render/indexMixin.js +3503 -1
- package/src/router/modules/customer.js +8 -0
- package/src/views/user/home/default.vue +2 -1
- package/src/views/user/notify_message/dialog.vue +7 -1
- package/src/views/user/wf/wfReport/index.vue +1 -0
- package/src/views/user/wf/wf_manage/list.vue +8 -1
- package/src/views/user/wf/wf_manage/wfContentDialog.vue +25 -22
|
@@ -1228,11 +1228,12 @@ modules = {
|
|
|
1228
1228
|
let $grid = this.getGridTable();
|
|
1229
1229
|
let originOption = $grid.originOption;
|
|
1230
1230
|
let formData = {};
|
|
1231
|
-
|
|
1231
|
+
|
|
1232
1232
|
if (customParam?.exportParam?.type !== "exportItem") {
|
|
1233
1233
|
//非导出明细
|
|
1234
1234
|
formData = tableOption.param ? tableOption.param() || {} : {};
|
|
1235
1235
|
}
|
|
1236
|
+
const queryParams = Object.assign({}, formData);
|
|
1236
1237
|
|
|
1237
1238
|
// 处理排序条件
|
|
1238
1239
|
/*if (sorts) {
|
|
@@ -105,6 +105,7 @@
|
|
|
105
105
|
:height="qrHeight"
|
|
106
106
|
></canvas>
|
|
107
107
|
</template>
|
|
108
|
+
<univerDialog v-if="showUniverDialog" :visiable.sync="showUniverDialog" :option="univerDialogOption"></univerDialog>
|
|
108
109
|
</div>
|
|
109
110
|
</template>
|
|
110
111
|
|
|
@@ -134,6 +135,8 @@ export default {
|
|
|
134
135
|
import(
|
|
135
136
|
"../../../components/xform/form-designer/form-widget/dialog/fileReferenceDialog.vue"
|
|
136
137
|
),
|
|
138
|
+
univerDialog: () =>
|
|
139
|
+
import("../../../components/xform/form-designer/form-widget/dialog/univerDialog.vue"),
|
|
137
140
|
},
|
|
138
141
|
mixins: [indexMixin],
|
|
139
142
|
};
|