cloud-web-corejs 1.0.54-dev.6 → 1.0.54-dev.60
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 -2
- package/src/components/VabUpload/index.vue +2 -1
- package/src/components/VabUpload/mixins.js +1 -1
- package/src/components/VabUpload/view.vue +2 -1
- package/src/components/excelExport/exportFieldDialog.vue +160 -22
- package/src/components/excelExport/index.js +6 -5
- package/src/components/excelExport/index.vue +8 -5
- package/src/components/excelExport/mixins.js +4 -1
- package/src/components/excelImport/index.vue +2 -1
- package/src/components/excelImport/mixins.js +1 -1
- package/src/components/fileLibrary/fileObjAuthDialog.vue +125 -103
- package/src/components/fileLibrary/fileObjAuthEditDialog.vue +6 -1
- package/src/components/fileLibrary/fileObjNotifyEdit.vue +192 -0
- package/src/components/fileLibrary/mixins/fileObjAuthDialogMixin.js +16 -9
- package/src/components/fileLibrary/mixins/fileObjAuthEditDialogMixin.js +4 -1
- package/src/components/fileLibrary/mixins/fileObjAuthEditMixin.js +1 -1
- package/src/components/fileLibrary/mixins/indexMixins.js +31 -17
- package/src/components/onlineTalk/index.vue +327 -5
- package/src/components/onlineTalk/mixins.js +1 -1
- package/src/components/table/index.js +2 -1
- package/src/components/tempStorage/tempStorageDialog.vue +2 -2
- package/src/components/xform/form-designer/form-widget/dialog/formDialog.vue +1 -0
- package/src/components/xform/form-designer/form-widget/dialog/formDrawer.vue +1 -0
- package/src/components/xform/form-designer/form-widget/dialog/formFieldDialog.vue +2 -2
- package/src/components/xform/form-designer/form-widget/dialog/importDialog.vue +10 -2
- package/src/components/xform/form-designer/form-widget/dialog/importDialogMixin.js +3 -1
- package/src/components/xform/form-designer/form-widget/dialog/preformDialog.vue +2 -2
- package/src/components/xform/form-designer/form-widget/dialog/searchFormDialog.vue +5 -4
- package/src/components/xform/form-designer/form-widget/dialog/vabSearchDialog.vue +2 -2
- package/src/components/xform/form-designer/form-widget/field-widget/baseAttachment-widget.vue +3 -2
- package/src/components/xform/form-designer/form-widget/field-widget/echart-bar-widget.vue +1 -1
- package/src/components/xform/form-designer/form-widget/field-widget/echart-category-widget.vue +1 -1
- package/src/components/xform/form-designer/form-widget/field-widget/echart-pie-widget.vue +1 -1
- package/src/components/xform/form-designer/form-widget/field-widget/fieldMixin.js +982 -1
- package/src/components/xform/form-designer/form-widget/field-widget/mixins/echart-bar-mixin.js +12 -1
- package/src/components/xform/form-designer/form-widget/field-widget/mixins/echart-category-mixin.js +6 -0
- package/src/components/xform/form-designer/form-widget/field-widget/mixins/echart-pie-mixin.js +6 -0
- package/src/components/xform/form-designer/form-widget/field-widget/table-export-button-widget.vue +5 -1
- package/src/components/xform/form-designer/form-widget/field-widget/vabUpload-widget.vue +77 -0
- package/src/components/xform/form-designer/indexMixin.js +771 -1
- package/src/components/xform/form-designer/setting-panel/form-setting.vue +6 -3
- package/src/components/xform/form-designer/setting-panel/property-editor/container-data-table/table-column-dialog.vue +8 -0
- package/src/components/xform/form-designer/setting-panel/property-editor/event-handler/onAfterConfirmFile-editor.vue +30 -0
- package/src/components/xform/form-designer/setting-panel/property-editor/event-handler/onClick-editor.vue +2 -2
- package/src/components/xform/form-designer/setting-panel/property-editor/field-echart/echart-bar-editor.vue +160 -69
- package/src/components/xform/form-designer/setting-panel/property-editor/field-echart/echart-category-editor.vue +184 -82
- package/src/components/xform/form-designer/setting-panel/property-editor/field-echart/echart-pie-editor.vue +84 -39
- package/src/components/xform/form-designer/setting-panel/property-editor/field-table-export-button/table-export-button-editor.vue +3 -0
- package/src/components/xform/form-designer/setting-panel/property-editor/placeholder-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/propertyRegister.js +1 -0
- package/src/components/xform/form-designer/widget-panel/widgetsConfig.js +8 -0
- package/src/components/xform/form-render/container-item/data-table-mixin.js +1668 -1
- package/src/components/xform/form-render/indexMixin.js +1 -23
- package/src/mixins/selectDialog/index.js +1 -1
- package/src/router/modules/customer.js +15 -0
- package/src/store/config/index.js +1 -1
- package/src/store/modules/permission.js +1 -1
- package/src/utils/renderUtils.js +76 -0
- package/src/utils/request.js +28 -28
- package/src/utils/vab.js +1 -963
- package/src/views/bd/setting/bd_attach_setting/edit.vue +1 -1
- package/src/views/bd/setting/bd_attach_setting/mixins/edit.js +1 -1
- package/src/views/bd/setting/form_template/batchWfObjConfigDialog.vue +105 -0
- package/src/views/bd/setting/form_template/edit.vue +2 -2
- package/src/views/bd/setting/form_template/list.vue +4 -2
- package/src/views/bd/setting/form_template/mixins/batchWfObjConfigDialog.js +280 -0
- package/src/views/bd/setting/form_template/mixins/edit.js +1 -1
- package/src/views/bd/setting/form_template/mixins/wf_list.js +434 -0
- package/src/views/bd/setting/form_template/wfObjConfigDialog.vue +254 -0
- package/src/views/bd/setting/form_template/wf_list.vue +127 -0
- package/src/views/bd/setting/menu_kind/authDialog.vue +1 -1
- package/src/views/bd/setting/menu_kind/mixins/authDialog.js +1 -1
- package/src/views/bd/setting/table_model/list.vue +4 -2
- package/src/views/user/area/dialog.vue +21 -8
- package/src/views/user/company_info/dialog.vue +17 -8
- package/src/views/user/file_type/edit.vue +30 -1
- package/src/views/user/file_type/list.vue +28 -0
- package/src/views/user/groups/edit.vue +2 -0
- package/src/views/user/groups/list.vue +1 -0
- package/src/views/user/login/default.vue +4 -2
- package/src/views/user/outLink/form_view.vue +39 -12
- package/src/views/user/outLink/view.vue +39 -13
- package/src/views/user/user/edit.vue +7 -7
- package/src/views/user/user/form_edit.vue +117 -49
- package/src/views/user/user/form_list.vue +1 -0
- package/src/views/user/wf/wf_obj_config/list.vue +30 -2
- package/src/views/user/wf/wf_obj_config/wfBizDataSettingDialog.vue +292 -0
- package/src/components/excelExport/export-panel.js +0 -458
@@ -1,7 +1,7 @@
|
|
1
1
|
<template>
|
2
2
|
<div>
|
3
3
|
<el-dialog
|
4
|
-
title="
|
4
|
+
title="设置权限"
|
5
5
|
:append-to-body="true"
|
6
6
|
:modal-append-to-body="true"
|
7
7
|
:close-on-click-modal="false"
|
@@ -14,115 +14,137 @@
|
|
14
14
|
v-el-dialog-center
|
15
15
|
>
|
16
16
|
<div class="cont">
|
17
|
-
<div
|
18
|
-
<
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
<
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
17
|
+
<div id="containt">
|
18
|
+
<el-tabs v-model="activeName" class="tab-box">
|
19
|
+
<el-tab-pane :label="$t1('用户权限设置')" name="first">
|
20
|
+
<div class="grid-height" style="height: 500px">
|
21
|
+
<vxe-grid
|
22
|
+
class="is-pointer"
|
23
|
+
ref="table-m1"
|
24
|
+
:data="tableData"
|
25
|
+
v-bind="vxeOption"
|
26
|
+
@resizable-change="$vxeTableUtil.onColumnWitchChange"
|
27
|
+
@custom="$vxeTableUtil.customHandle"
|
28
|
+
>
|
29
|
+
<template #form>
|
30
|
+
<div class="clearfix screen-btns">
|
31
|
+
<div class="fl">
|
32
|
+
<vxe-button status="primary" class="button-sty" icon="el-icon-plus"
|
33
|
+
@click="openSaleOrgAddDialog">
|
34
|
+
新增机构
|
35
|
+
</vxe-button>
|
36
|
+
<vxe-button status="primary" class="button-sty" icon="el-icon-plus"
|
37
|
+
@click="openPositionAddDialog">
|
38
|
+
新增岗位
|
39
|
+
</vxe-button>
|
40
|
+
<vxe-button status="primary" class="button-sty" icon="el-icon-plus" @click="openUserAddDialog">
|
41
|
+
新增用户
|
42
|
+
</vxe-button>
|
43
|
+
<vxe-button status="primary" class="button-sty" icon="el-icon-plus" @click="openRoleAddDialog">
|
44
|
+
新增角色
|
45
|
+
</vxe-button>
|
46
|
+
<!-- <vxe-button type="text" status="primary" plain class="button-sty" icon="el-icon-delete"
|
47
|
+
@click="deleteRows()">{{ $t2('删除', 'components.fileLibrary.delete') }}
|
48
|
+
</vxe-button>-->
|
49
|
+
</div>
|
50
|
+
<div class="fl screen-breadcrumb" style="margin-left: 30px;">
|
51
|
+
<span style="font-size: 12px;">{{ $t2('文件路径', 'components.fileLibrary.filePath') }}:</span>
|
52
|
+
<el-breadcrumb separator-class="el-icon-arrow-right">
|
53
|
+
<el-breadcrumb-item v-for="(treeNode,index) in treeNodeArr" :key="index">{{
|
54
|
+
treeNode.label
|
55
|
+
}}
|
56
|
+
</el-breadcrumb-item>
|
57
|
+
</el-breadcrumb>
|
58
|
+
</div>
|
59
|
+
</div>
|
60
|
+
</template>
|
61
|
+
<template #saleOrg="{row,rowIndex}">
|
62
|
+
<el-input
|
63
|
+
class="search-input"
|
64
|
+
v-model="row.saleOrgName"
|
65
|
+
clearable
|
66
|
+
@clear="
|
59
67
|
row.saleOrgId = null;
|
60
68
|
"
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
69
|
+
v-if="!row._isParent"
|
70
|
+
v-el-readonly
|
71
|
+
>
|
72
|
+
<i slot="suffix" class="el-input__icon el-icon-search"
|
73
|
+
@click="openSaleOrgRowDialog(row,rowIndex)"></i>
|
74
|
+
</el-input>
|
75
|
+
<template v-else>{{ row.saleOrgName }}</template>
|
76
|
+
</template>
|
77
|
+
<template #position="{row,rowIndex}">
|
78
|
+
<el-input
|
79
|
+
class="search-input"
|
80
|
+
v-model="row.positionName"
|
81
|
+
clearable
|
82
|
+
@clear="
|
74
83
|
row.positionId = null;
|
75
84
|
"
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
85
|
+
v-if="!row._isParent"
|
86
|
+
v-el-readonly
|
87
|
+
>
|
88
|
+
<i slot="suffix" class="el-input__icon el-icon-search"
|
89
|
+
@click="openPositionRowDialog(row,rowIndex)"></i>
|
90
|
+
</el-input>
|
91
|
+
<template v-else>{{ row.positionName }}</template>
|
92
|
+
</template>
|
93
|
+
<template #role="{row,rowIndex}">
|
94
|
+
<el-input
|
95
|
+
class="search-input"
|
96
|
+
v-model="row.roleName"
|
97
|
+
clearable
|
98
|
+
@clear="
|
89
99
|
row.roleId = null;
|
90
100
|
"
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
101
|
+
v-if="!row._isParent"
|
102
|
+
v-el-readonly
|
103
|
+
>
|
104
|
+
<i slot="suffix" class="el-input__icon el-icon-search"
|
105
|
+
@click="openRoleRowDialog(row,rowIndex)"></i>
|
106
|
+
</el-input>
|
107
|
+
<template v-else>{{ row.roleName }}</template>
|
108
|
+
</template>
|
109
|
+
<template #user="{row,rowIndex}">
|
110
|
+
<el-input
|
111
|
+
class="search-input"
|
112
|
+
v-model="row.nickName"
|
113
|
+
clearable
|
114
|
+
@clear="
|
104
115
|
row.userId = null;
|
105
116
|
"
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
117
|
+
v-if="!row._isParent"
|
118
|
+
v-el-readonly
|
119
|
+
>
|
120
|
+
<i slot="suffix" class="el-input__icon el-icon-search"
|
121
|
+
@click="openUserRowDialog(row,rowIndex)"></i>
|
122
|
+
</el-input>
|
123
|
+
<template v-else>{{ row.nickName }}</template>
|
124
|
+
</template>
|
125
|
+
<template #operate="{row}">
|
126
|
+
<a
|
127
|
+
href="javascript:void(0);"
|
128
|
+
class="a-link"
|
129
|
+
@click="openEditDialog(row.id)"
|
130
|
+
>
|
131
|
+
<el-tooltip :enterable="false" effect="dark" :content="$t2('查看','common.view')" placement="top"
|
132
|
+
popper-class="tooltip-skin">
|
133
|
+
<i class="el-icon-edit"/>
|
134
|
+
</el-tooltip>
|
135
|
+
</a>
|
136
|
+
</template>
|
137
|
+
</vxe-grid>
|
138
|
+
</div>
|
139
|
+
</el-tab-pane>
|
140
|
+
<el-tab-pane :label="$t1('文件操作,发系统通知')" name="second" v-if="fileStoreArea.toNotify">
|
141
|
+
<div class="grid-height" style="height: 500px">
|
142
|
+
<fileObjNotifyEdit v-if="showFileObjNotifyEdit" visible-key="showFileObjNotifyEdit"
|
143
|
+
:current_prefix="current_prefix" :_dataId="fileObjId" :parent-target="_self"
|
144
|
+
@reload="$reloadHandle"></fileObjNotifyEdit>
|
145
|
+
</div>
|
146
|
+
</el-tab-pane>
|
147
|
+
</el-tabs>
|
126
148
|
</div>
|
127
149
|
</div>
|
128
150
|
<span slot="footer" class="dialog-footer">
|
@@ -130,7 +152,7 @@
|
|
130
152
|
<i class="el-icon-close el-icon"></i>
|
131
153
|
取 消
|
132
154
|
</el-button>
|
133
|
-
<el-button type="primary" @click="saveData" class="button-sty">
|
155
|
+
<el-button type="primary" @click="saveData" class="button-sty" v-if="activeName=='first'">
|
134
156
|
<i class="el-icon-check el-icon"></i>
|
135
157
|
确 定
|
136
158
|
</el-button>
|
@@ -13,7 +13,7 @@
|
|
13
13
|
v-el-dialog-center
|
14
14
|
@close="handleClose"
|
15
15
|
>
|
16
|
-
<div class="cont">
|
16
|
+
<div class="cont" style="height: 550px;">
|
17
17
|
<el-form ref="editForm" :model="fileObjAuth" label-width="110px" class="adSearchForm"
|
18
18
|
style="width: 362px;height: auto;">
|
19
19
|
<el-form-item label="文件路径">
|
@@ -150,6 +150,11 @@
|
|
150
150
|
<el-switch v-model="fileObjAuth.shareAuth" :active-value="1" :inactive-value="0"
|
151
151
|
:disabled="fileObjAuth._isParent"/>
|
152
152
|
</el-form-item>
|
153
|
+
<el-form-item v-if="fileStoreArea.toDownWatermark" prop="downWatermarkAuth" :label="$t1('下载打水印')"
|
154
|
+
:rules="[{ required: false, trigger: 'blur' }]">
|
155
|
+
<el-switch v-model="fileObjAuth.downWatermarkAuth" :active-value="1" :inactive-value="0"
|
156
|
+
:disabled="fileObjAuth._isParent"/>
|
157
|
+
</el-form-item>
|
153
158
|
</el-form>
|
154
159
|
</div>
|
155
160
|
<span slot="footer" class="dialog-footer">
|
@@ -0,0 +1,192 @@
|
|
1
|
+
<template>
|
2
|
+
<div class="detail-wrap" style="margin: -6px -8px;">
|
3
|
+
<el-form ref="editForm" :model="fileObjNotify">
|
4
|
+
<div class="d-header clearfix">
|
5
|
+
<div class="fl">
|
6
|
+
<i class="el-icon-info"/>
|
7
|
+
<!--{{ isEdit ? $t1('查看文件对象通知设置') : $t1('新增文件对象通知设置') }}-->
|
8
|
+
{{ $t1('文件操作 - 发系统通知设置') }}
|
9
|
+
</div>
|
10
|
+
<div class="fr">
|
11
|
+
<el-button type="primary" plain class="button-sty" @click="$baseReload()" icon="el-icon-refresh-right">
|
12
|
+
{{ $t1('重置') }}
|
13
|
+
</el-button>
|
14
|
+
<el-button type="primary" class="button-sty" icon="el-icon-check" @click="saveData">{{ $t1('保存') }}
|
15
|
+
</el-button>
|
16
|
+
</div>
|
17
|
+
</div>
|
18
|
+
<div class="d-cont" style="height: 470px;">
|
19
|
+
<div class="d-item d-i-left">
|
20
|
+
<div class="d-i-tit">
|
21
|
+
{{ $t1('文件操作,是否发系统通知') }}
|
22
|
+
</div>
|
23
|
+
<el-form-item prop="toNotify" :rules="[{ required: true, trigger: 'blur' }]">
|
24
|
+
<el-radio-group v-model="fileObjNotify.toNotify">
|
25
|
+
<div>
|
26
|
+
<el-radio :label="0">{{ $t1('不发系统通知') }}</el-radio>
|
27
|
+
</div>
|
28
|
+
<div>
|
29
|
+
<el-radio :label="1">{{ $t1('针对当前文件夹中的文件操作') }}</el-radio>
|
30
|
+
</div>
|
31
|
+
<div>
|
32
|
+
<el-radio :label="2">{{ $t1('当前文件夹与下级所有文件夹的文件进行了操作,发系统通知') }}</el-radio>
|
33
|
+
</div>
|
34
|
+
</el-radio-group>
|
35
|
+
</el-form-item>
|
36
|
+
</div>
|
37
|
+
<div class="d-item d-i-right">
|
38
|
+
<div class="d-i-tit">
|
39
|
+
{{ $t1('不同的文件操作类型,设置对应的系统通知模板') }}
|
40
|
+
</div>
|
41
|
+
<el-form-item prop="addNtCode" :rules="[{ required: false, trigger: 'blur' }]"
|
42
|
+
:label="$t1('新增文件-通知模板编码')">
|
43
|
+
<el-input type="text" autocomplete="off" v-model="fileObjNotify.addNtCode" clearable/>
|
44
|
+
</el-form-item>
|
45
|
+
<el-form-item prop="deleteNtCode" :rules="[{ required: false, trigger: 'blur' }]"
|
46
|
+
:label="$t1('删除文件-通知模板编码')">
|
47
|
+
<el-input type="text" autocomplete="off" v-model="fileObjNotify.deleteNtCode" clearable/>
|
48
|
+
</el-form-item>
|
49
|
+
<el-form-item prop="replaceNtCode" :rules="[{ required: false, trigger: 'blur' }]"
|
50
|
+
:label=" $t1('替换文件-通知模板编码')">
|
51
|
+
<el-input type="text" autocomplete="off" v-model="fileObjNotify.replaceNtCode" clearable/>
|
52
|
+
</el-form-item>
|
53
|
+
</div>
|
54
|
+
</div>
|
55
|
+
<div class="tips">{{
|
56
|
+
$t1('注:删除文件发通知,包括从当前文件夹移动、删除文件。 新增文件发通知,包括上传、复制、移动、从回收站还原文件到当前文件夹下。')
|
57
|
+
}}
|
58
|
+
</div>
|
59
|
+
</el-form>
|
60
|
+
</div>
|
61
|
+
</template>
|
62
|
+
|
63
|
+
<script>
|
64
|
+
export default {
|
65
|
+
name: 'fileObjNotifyEdit',
|
66
|
+
props: {
|
67
|
+
_dataId: [String, Number],
|
68
|
+
current_prefix: String
|
69
|
+
},
|
70
|
+
components: {},
|
71
|
+
data() {
|
72
|
+
return {
|
73
|
+
isEdit: false,
|
74
|
+
tabIndex: 'first',
|
75
|
+
dataId: '',
|
76
|
+
fileObjNotify: {
|
77
|
+
toNotify: 0,
|
78
|
+
fileObjId: this._dataId
|
79
|
+
}
|
80
|
+
};
|
81
|
+
},
|
82
|
+
created() {
|
83
|
+
if (this._dataId && !isNaN(this._dataId)) this.dataId = this._dataId;
|
84
|
+
},
|
85
|
+
mounted() {
|
86
|
+
this.getData();
|
87
|
+
},
|
88
|
+
methods: {
|
89
|
+
getData() {
|
90
|
+
if (this.dataId && !isNaN(this.dataId)) {
|
91
|
+
|
92
|
+
this.$commonHttp({
|
93
|
+
url: this.current_prefix + `/file_obj_notify/get`,
|
94
|
+
method: `post`,
|
95
|
+
data: {
|
96
|
+
id: this.dataId
|
97
|
+
},
|
98
|
+
isLoading: true,
|
99
|
+
modalStrictly: true,
|
100
|
+
success: res => {
|
101
|
+
if (res.objx) {
|
102
|
+
this.fileObjNotify = res.objx;
|
103
|
+
this.isEdit = true;
|
104
|
+
}
|
105
|
+
}
|
106
|
+
});
|
107
|
+
}
|
108
|
+
},
|
109
|
+
saveData() {
|
110
|
+
this.$refs.editForm.$baseValidate(valid => {
|
111
|
+
if (valid) {
|
112
|
+
this.$baseConfirm(this.$t1('您确定要保存吗?')).then(() => {
|
113
|
+
var url = this.current_prefix + `/file_obj_notify/save`;
|
114
|
+
this.$http({
|
115
|
+
url: url,
|
116
|
+
method: `post`,
|
117
|
+
data: this.fileObjNotify,
|
118
|
+
isLoading: true,
|
119
|
+
success: res => {
|
120
|
+
this.$message({
|
121
|
+
message: res.content,
|
122
|
+
type: 'success',
|
123
|
+
duration: 500,
|
124
|
+
onClose: t => {
|
125
|
+
this.$baseReload();
|
126
|
+
}
|
127
|
+
});
|
128
|
+
}
|
129
|
+
});
|
130
|
+
});
|
131
|
+
}
|
132
|
+
});
|
133
|
+
}
|
134
|
+
}
|
135
|
+
};
|
136
|
+
</script>
|
137
|
+
<style scoped lang="scss">
|
138
|
+
.noTr th {
|
139
|
+
height: 0px
|
140
|
+
}
|
141
|
+
|
142
|
+
.noTr td {
|
143
|
+
height: 0px
|
144
|
+
}
|
145
|
+
|
146
|
+
.d-cont {
|
147
|
+
display: flex;
|
148
|
+
margin: -11px -12px;
|
149
|
+
|
150
|
+
.d-i-left, .d-i-right {
|
151
|
+
border: none !important;
|
152
|
+
padding: 24px 18px 24px 14px !important
|
153
|
+
}
|
154
|
+
|
155
|
+
.d-i-left {
|
156
|
+
width: 420px;
|
157
|
+
}
|
158
|
+
|
159
|
+
.d-i-tit {
|
160
|
+
background: #f7f7f7;
|
161
|
+
line-height: 36px;
|
162
|
+
padding: 0 10px;
|
163
|
+
margin-bottom: 16px;
|
164
|
+
font-size: 13px
|
165
|
+
}
|
166
|
+
|
167
|
+
.d-i-right {
|
168
|
+
border-left: solid 1px #e9e9e9 !important;
|
169
|
+
flex: 1;
|
170
|
+
padding-left: 32px !important;
|
171
|
+
|
172
|
+
::v-deep .el-form-item {
|
173
|
+
margin-bottom: 16px;
|
174
|
+
|
175
|
+
.el-form-item__content {
|
176
|
+
.el-input {
|
177
|
+
width: 360px !important;
|
178
|
+
}
|
179
|
+
}
|
180
|
+
}
|
181
|
+
}
|
182
|
+
}
|
183
|
+
|
184
|
+
.tips {
|
185
|
+
margin-top: -40px;
|
186
|
+
background: #FFF;
|
187
|
+
position: relative;
|
188
|
+
line-height: 40px;
|
189
|
+
border-top: solid 1px #e9e9e9;
|
190
|
+
padding-left: 12px;
|
191
|
+
}
|
192
|
+
</style>
|
@@ -4,6 +4,7 @@ import positionDialog from "../../../views/user/position/dialog";
|
|
4
4
|
import saleOrgDialog from "../../../views/user/sale_org/dialog";
|
5
5
|
import roleDialog from "../../../views/user/role/dialog";
|
6
6
|
import fileObjAuthEditDialog from "../../../components/fileLibrary/fileObjAuthEditDialog.vue";
|
7
|
+
import fileObjNotifyEdit from "@base/components/fileLibrary/fileObjNotifyEdit.vue";
|
7
8
|
|
8
9
|
|
9
10
|
let modules = {};
|
@@ -14,9 +15,9 @@ modules = {
|
|
14
15
|
treeNodeArr: Array
|
15
16
|
},
|
16
17
|
components: {
|
17
|
-
editView, userDialog, positionDialog, saleOrgDialog, roleDialog,fileObjAuthEditDialog
|
18
|
+
editView, userDialog, positionDialog, saleOrgDialog, roleDialog, fileObjAuthEditDialog, fileObjNotifyEdit
|
18
19
|
},
|
19
|
-
inject: ['current_prefix'],
|
20
|
+
inject: ['current_prefix', 'getFileStoreArea'],
|
20
21
|
mounted() {
|
21
22
|
this.initTableList();
|
22
23
|
},
|
@@ -24,7 +25,7 @@ modules = {
|
|
24
25
|
let that = this;
|
25
26
|
return {
|
26
27
|
showDialog: true,
|
27
|
-
activeName: '
|
28
|
+
activeName: 'first',
|
28
29
|
value10: '',
|
29
30
|
dataId: '',
|
30
31
|
showEdit: false,
|
@@ -50,11 +51,16 @@ modules = {
|
|
50
51
|
showSaleOrgAddDialog: false,
|
51
52
|
showPositionAddDialog: false,
|
52
53
|
showRoleAddDialog: false,
|
53
|
-
showDetailDialog:false,
|
54
|
-
currentRow:null,
|
55
|
-
|
54
|
+
showDetailDialog: false,
|
55
|
+
currentRow: null,
|
56
|
+
showFileObjNotifyEdit: true
|
56
57
|
};
|
57
58
|
},
|
59
|
+
computed: {
|
60
|
+
fileStoreArea() {
|
61
|
+
return this.getFileStoreArea();
|
62
|
+
}
|
63
|
+
},
|
58
64
|
methods: {
|
59
65
|
searchEvent() {
|
60
66
|
this.$refs['table-m1'].commitProxy('reload');
|
@@ -284,7 +290,7 @@ modules = {
|
|
284
290
|
}
|
285
291
|
}
|
286
292
|
},
|
287
|
-
{
|
293
|
+
...(this.fileStoreArea.toDownWatermark ? [{
|
288
294
|
title: this.$t1('下载打水印 '),
|
289
295
|
field: 'downWatermarkAuth',
|
290
296
|
width: 150,
|
@@ -296,7 +302,7 @@ modules = {
|
|
296
302
|
];
|
297
303
|
}
|
298
304
|
}
|
299
|
-
},
|
305
|
+
}] : []),
|
300
306
|
{title: this.$t2('创建人', 'system.label.createBy'), field: 'createBy', width: 150},
|
301
307
|
{title: this.$t2('创建时间', 'system.label.createDate'), field: 'createDate', width: 150},
|
302
308
|
{title: this.$t2('更新人', 'system.label.modifyBy'), field: 'modifyBy', width: 150},
|
@@ -616,6 +622,7 @@ modules = {
|
|
616
622
|
deleteDirAuth: 1,
|
617
623
|
historyAuth: 1,
|
618
624
|
shareAuth: 1,
|
625
|
+
downWatermarkAuth: 0,
|
619
626
|
fileObjId: this.fileObjId
|
620
627
|
}
|
621
628
|
return row;
|
@@ -626,7 +633,7 @@ modules = {
|
|
626
633
|
this.showDetailDialog = true;
|
627
634
|
},
|
628
635
|
confirmDetailDialog(row) {
|
629
|
-
this.tableData.splice(this.operateIndex,1,row)
|
636
|
+
this.tableData.splice(this.operateIndex, 1, row)
|
630
637
|
this.showDetailDialog = false;
|
631
638
|
}
|
632
639
|
}
|
@@ -14,7 +14,7 @@ modules = {
|
|
14
14
|
components: {
|
15
15
|
userDialog, positionDialog, saleOrgDialog, roleDialog
|
16
16
|
},
|
17
|
-
inject: ['current_prefix'],
|
17
|
+
inject: ['current_prefix', 'getFileStoreArea'],
|
18
18
|
data() {
|
19
19
|
return {
|
20
20
|
isEdit: false,
|
@@ -56,6 +56,9 @@ modules = {
|
|
56
56
|
let prevTitle = this.currentRow ? this.$t2('查看', 'system.button.check') : this.$t2('新增', 'system.button.add')
|
57
57
|
let title = prevTitle + this.$t2('文件权限', 'components.fileLibrary.fileAuth')
|
58
58
|
return title;
|
59
|
+
},
|
60
|
+
fileStoreArea(){
|
61
|
+
return this.getFileStoreArea();
|
59
62
|
}
|
60
63
|
},
|
61
64
|
mounted() {
|