cloud-web-corejs 1.0.54-dev.474 → 1.0.54-dev.476
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/VabUpload/view.vue +4 -2
- package/src/components/wf/content.vue +3 -2
- package/src/components/wf/wfUtil.js +279 -1
- package/src/components/xform/form-designer/form-widget/field-widget/table-export-button-widget.vue +1 -1
- package/src/components/xform/form-designer/form-widget/field-widget/vabUpload-widget.vue +1 -0
- package/src/components/xform/form-designer/form-widget/field-widget/vabUpload2-widget.vue +1 -0
- package/src/components/xform/form-designer/setting-panel/property-editor/field-vabUpload/field-vabUpload-editor.vue +3 -0
- package/src/components/xform/form-designer/widget-panel/widgetsConfig.js +3 -0
- package/src/components/xform/mixins/scriptHttp.js +1 -172
- package/src/views/user/area/list.vue +1 -1
package/src/components/xform/form-designer/form-widget/field-widget/table-export-button-widget.vue
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
:display-style="field.options.displayStyle"
|
|
5
5
|
:parent-widget="parentWidget" :parent-list="parentList"
|
|
6
6
|
:index-of-parent-list="indexOfParentList">
|
|
7
|
-
<el-dropdown trigger="hover">
|
|
7
|
+
<el-dropdown trigger="hover" :disabled="field.options.disabled">
|
|
8
8
|
<el-button type="primary" class="button-sty" size="mini">
|
|
9
9
|
<span>{{ getI18nLabel('列表导出') }}</span><span class="line"></span> <i
|
|
10
10
|
class="el-icon-arrow-down el-icon--right"></i>
|
|
@@ -392,6 +392,7 @@ export default {
|
|
|
392
392
|
// this.$commonFileUtil.downloadFile(attachment.showUrl);
|
|
393
393
|
},
|
|
394
394
|
initUploadInfo() {
|
|
395
|
+
if(this.designState)return
|
|
395
396
|
this.getHxFileUploadConfig({
|
|
396
397
|
success: (res) => {
|
|
397
398
|
// {"apiToken":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI5YzcyNTE5OS00NDdlLTQ5OTMtOGRjYy1iMWM2NjY0YmJhNDAiLCJuYW1lIjoiOWM3MjUxOTktNDQ3ZS00OTkzLThkY2MtYjFjNjY2NGJiYTQwIiwibmJmIjoxNzU0NjE1ODE1LCJleHAiOjE3NTQ3MDIyMTUsImlzcyI6IlB3YyIsImF1ZCI6IkFTLkNSTS5TZXJ2aWNlLkFwaSJ9.CX2oy7P2PPwCPy-UdhNGaTiSfBHUiVgeK13N91NRcMc","domain":"https://crm-dev.hisense.com","uploadApi":"/api/v1.0/fileoperation/UploadFilesFromPortal","deleteApi":"/api/v1.0/fileoperation/delfile"}
|
|
@@ -2739,6 +2739,7 @@ export const advancedFields = [
|
|
|
2739
2739
|
labelWidth: null,
|
|
2740
2740
|
labelHidden: !0,
|
|
2741
2741
|
limit: null,
|
|
2742
|
+
hideRemoveButton: false,
|
|
2742
2743
|
accessType: "1",
|
|
2743
2744
|
entityTableCode: null,
|
|
2744
2745
|
entityTableDesc: null,
|
|
@@ -2935,6 +2936,7 @@ export const advancedFields = [
|
|
|
2935
2936
|
name: "",
|
|
2936
2937
|
keyNameEnabled: !1,
|
|
2937
2938
|
keyName: "",
|
|
2939
|
+
disabled: !1,
|
|
2938
2940
|
hidden: !1,
|
|
2939
2941
|
customClass: "",
|
|
2940
2942
|
exportFileName: "导出",
|
|
@@ -2962,6 +2964,7 @@ export const advancedFields = [
|
|
|
2962
2964
|
name: "",
|
|
2963
2965
|
keyNameEnabled: !1,
|
|
2964
2966
|
keyName: "",
|
|
2967
|
+
disabled: !1,
|
|
2965
2968
|
hidden: !1,
|
|
2966
2969
|
label: "明细导出",
|
|
2967
2970
|
customClass: "",
|