cloud-web-corejs 1.0.150 → 1.0.152
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/fileLibrary/filterDialog.vue +45 -21
- package/src/components/fileLibrary/index.vue +579 -238
- package/src/components/fileLibrary/mixins/indexMixins.js +3 -0
- package/src/components/wf/mixins/setCandidateDialog2.js +1 -1
- package/src/components/wf/setCandidateDialog2.vue +76 -66
- package/src/components/wf/wfStartDialog.vue +2 -6
|
@@ -1,23 +1,49 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<div v-show="title!='' && title!=null" style="overflow: hidden
|
|
2
|
+
<div v-show="title != '' && title != null" style="overflow: hidden">
|
|
3
3
|
<div class="tree-box tree-annex fl">
|
|
4
|
-
<div class="tit"
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
4
|
+
<div class="tit">
|
|
5
|
+
<b>{{ title }}</b>
|
|
6
|
+
</div>
|
|
7
|
+
<div class="tree-form" v-if="option.showCategoryFilterArea !== false">
|
|
8
|
+
<el-input
|
|
9
|
+
:placeholder="
|
|
10
|
+
$t2('请输入文件夹名称', 'components.fileLibrary.categoryPlaceholder')
|
|
11
|
+
"
|
|
12
|
+
v-model="filterText"
|
|
13
|
+
class="txt"
|
|
14
|
+
>
|
|
8
15
|
<el-button slot="append" icon="el-icon-search"></el-button>
|
|
9
16
|
</el-input>
|
|
10
17
|
</div>
|
|
11
18
|
<div class="tree-btns" v-if="isCategoryEdit">
|
|
12
|
-
<el-button
|
|
13
|
-
|
|
19
|
+
<el-button
|
|
20
|
+
type="primary"
|
|
21
|
+
plain
|
|
22
|
+
icon="el-icon-circle-plus-outline"
|
|
23
|
+
class="btn"
|
|
24
|
+
@click="addFileCategory()"
|
|
25
|
+
v-if="fileObjAuth.addAuth"
|
|
26
|
+
>{{ $t2("新增", "components.fileLibrary.addCategory") }}
|
|
14
27
|
</el-button>
|
|
15
|
-
<el-button
|
|
16
|
-
|
|
17
|
-
|
|
28
|
+
<el-button
|
|
29
|
+
type="primary"
|
|
30
|
+
plain
|
|
31
|
+
icon="el-icon-edit-outline"
|
|
32
|
+
class="btn"
|
|
33
|
+
@click="editFileCategory()"
|
|
34
|
+
:disabled="currentFileCategory == null || !currentFileCategory.id"
|
|
35
|
+
v-if="fileObjAuth.editAuth"
|
|
36
|
+
>
|
|
37
|
+
{{ $t2("编辑", "components.fileLibrary.editCategory") }}
|
|
18
38
|
</el-button>
|
|
19
|
-
<el-button
|
|
20
|
-
|
|
39
|
+
<el-button
|
|
40
|
+
type="primary"
|
|
41
|
+
plain
|
|
42
|
+
class="btn"
|
|
43
|
+
icon="el-icon-edit"
|
|
44
|
+
@click="showFileObjAuthDialog = true"
|
|
45
|
+
v-if="isEdit && fileObjAuth.authAuth"
|
|
46
|
+
>{{ $t2("权限", "components.fileLibrary.authAuth") }}
|
|
21
47
|
</el-button>
|
|
22
48
|
</div>
|
|
23
49
|
<el-tree
|
|
@@ -32,6 +58,9 @@
|
|
|
32
58
|
@node-click="handleNodeClick"
|
|
33
59
|
class="tree-list"
|
|
34
60
|
icon-class="el-icon-arrow-down"
|
|
61
|
+
:style="
|
|
62
|
+
option.showCategoryFilterArea === false ? 'height: calc(100vh - 113px)' : ''
|
|
63
|
+
"
|
|
35
64
|
>
|
|
36
65
|
<span class="el-tree-node__label" slot-scope="{ node }" v-if="!node.data.moreBtn">
|
|
37
66
|
<i class="ico-wenjian"></i>
|
|
@@ -48,91 +77,184 @@
|
|
|
48
77
|
<i class="el-icon-more"></i>
|
|
49
78
|
</div>
|
|
50
79
|
</label>
|
|
51
|
-
<div class="main-right file-library fr" style="overflow: hidden
|
|
80
|
+
<div class="main-right file-library fr" style="overflow: hidden">
|
|
52
81
|
<div class="pop-annex-filter" v-if="popAnnexFilter">
|
|
53
|
-
<div class="item" v-for="(checkBillData,index) in checkBillDatas" :key="index"
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
82
|
+
<div class="item" v-for="(checkBillData, index) in checkBillDatas" :key="index">
|
|
83
|
+
<span>{{ getBillLabel(checkBillData) }}</span
|
|
84
|
+
><i class="el-icon-close" @click="deleteBillData(index)"></i>
|
|
85
|
+
</div>
|
|
57
86
|
</div>
|
|
58
87
|
<div class="annex-filter" v-if="isBillEnabled">
|
|
59
|
-
<el-button
|
|
60
|
-
|
|
61
|
-
|
|
88
|
+
<el-button
|
|
89
|
+
slot="append"
|
|
90
|
+
icon="el-icon-search"
|
|
91
|
+
@click="openBillDialog"
|
|
92
|
+
size="mini"
|
|
93
|
+
class="an-btn-search"
|
|
94
|
+
type="success"
|
|
95
|
+
>
|
|
96
|
+
{{
|
|
97
|
+
$t2("选择" + billConfig.name, "components.fileLibrary.selectBill", {
|
|
98
|
+
billName: billConfig.name,
|
|
99
|
+
})
|
|
100
|
+
}}
|
|
62
101
|
</el-button>
|
|
63
102
|
<div class="abox">
|
|
64
|
-
<div class="item" v-for="(checkBillData,index) in checkBillDatas" :key="index"
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
103
|
+
<div class="item" v-for="(checkBillData, index) in checkBillDatas" :key="index">
|
|
104
|
+
<span>{{ getBillLabel(checkBillData) }}</span
|
|
105
|
+
><i class="el-icon-close" @click="deleteBillData(index)"></i>
|
|
106
|
+
</div>
|
|
68
107
|
</div>
|
|
69
108
|
|
|
70
|
-
<el-button
|
|
71
|
-
|
|
109
|
+
<el-button
|
|
110
|
+
slot="append"
|
|
111
|
+
icon="iconfont icon-gengduo1"
|
|
112
|
+
size="mini"
|
|
113
|
+
class="an-btn-more"
|
|
114
|
+
type="primary"
|
|
115
|
+
@click="popAnnexFilter = false"
|
|
116
|
+
v-if="popAnnexFilter"
|
|
117
|
+
>
|
|
72
118
|
</el-button>
|
|
73
|
-
<el-button
|
|
74
|
-
|
|
119
|
+
<el-button
|
|
120
|
+
slot="append"
|
|
121
|
+
icon="iconfont icon-gengduo1"
|
|
122
|
+
size="mini"
|
|
123
|
+
class="an-btn-more"
|
|
124
|
+
@click="popAnnexFilter = true"
|
|
125
|
+
v-else
|
|
126
|
+
>
|
|
75
127
|
</el-button>
|
|
76
|
-
<el-button
|
|
77
|
-
|
|
128
|
+
<el-button
|
|
129
|
+
slot="append"
|
|
130
|
+
icon="el-icon-delete"
|
|
131
|
+
size="mini"
|
|
132
|
+
class="an-btn-del"
|
|
133
|
+
@click="clearBill"
|
|
134
|
+
>
|
|
135
|
+
{{ $t2("取消选择", "components.fileLibrary.cancelSelect") }}
|
|
78
136
|
</el-button>
|
|
79
137
|
</div>
|
|
80
138
|
|
|
81
|
-
<div class="annex-screen"
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
139
|
+
<div class="annex-screen">
|
|
140
|
+
<el-button
|
|
141
|
+
type="warning"
|
|
142
|
+
class="button-sty"
|
|
143
|
+
icon="el-icon-plus"
|
|
144
|
+
@click="addFile"
|
|
145
|
+
v-if="isEdit && fileObjAuth.uploadAuth"
|
|
146
|
+
>{{ $t2("上传", "components.fileLibrary.upload") }}
|
|
85
147
|
</el-button>
|
|
86
|
-
<el-button
|
|
87
|
-
|
|
148
|
+
<el-button
|
|
149
|
+
type="primary"
|
|
150
|
+
class="button-sty"
|
|
151
|
+
icon="el-icon-download"
|
|
152
|
+
@click.native="mulDownload2"
|
|
153
|
+
v-if="fileObjAuth.downloadAuth"
|
|
154
|
+
>{{ $t2("下载", "components.fileLibrary.download") }}
|
|
88
155
|
</el-button>
|
|
89
|
-
<el-button
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
156
|
+
<el-button
|
|
157
|
+
type="danger"
|
|
158
|
+
class="button-sty"
|
|
159
|
+
icon="el-icon-takeaway-box"
|
|
160
|
+
@click="showRecycleBinDialog = true"
|
|
161
|
+
v-if="isEdit && (fileObjAuth.deleteAuth || fileObjAuth.deleteDirAuth)"
|
|
162
|
+
>
|
|
163
|
+
{{ $t2("回收站", "components.fileLibrary.recycleBin") }}
|
|
93
164
|
</el-button>
|
|
94
|
-
<el-button
|
|
95
|
-
|
|
96
|
-
|
|
165
|
+
<el-button
|
|
166
|
+
type="primary"
|
|
167
|
+
plain
|
|
168
|
+
class="button-sty"
|
|
169
|
+
icon="el-icon-rank"
|
|
170
|
+
@click.native="openCategoryMoveDialog(1)"
|
|
171
|
+
v-if="isEdit && fileObjAuth.moveAuth"
|
|
172
|
+
>
|
|
173
|
+
{{ $t2("移动到", "components.fileLibrary.moveTo") }}
|
|
97
174
|
</el-button>
|
|
98
|
-
<el-button
|
|
99
|
-
|
|
100
|
-
|
|
175
|
+
<el-button
|
|
176
|
+
type="primary"
|
|
177
|
+
plain
|
|
178
|
+
class="button-sty"
|
|
179
|
+
icon="el-icon-copy-document"
|
|
180
|
+
@click.native="openCategoryMoveDialog(2)"
|
|
181
|
+
v-if="isEdit && fileObjAuth.copyAuth"
|
|
182
|
+
>
|
|
183
|
+
{{ $t2("复制到", "components.fileLibrary.copyTo") }}
|
|
101
184
|
</el-button>
|
|
102
|
-
<el-button
|
|
103
|
-
|
|
104
|
-
|
|
185
|
+
<el-button
|
|
186
|
+
type="primary"
|
|
187
|
+
plain
|
|
188
|
+
class="button-sty"
|
|
189
|
+
icon="el-icon-refresh"
|
|
190
|
+
@click.native="batchReplace"
|
|
191
|
+
v-if="isEdit && fileObjAuth.replaceAuth"
|
|
192
|
+
>
|
|
193
|
+
{{ $t2("替换", "components.fileLibrary.replace") }}
|
|
105
194
|
</el-button>
|
|
106
|
-
<el-button
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
195
|
+
<el-button
|
|
196
|
+
type="primary"
|
|
197
|
+
plain
|
|
198
|
+
class="button-sty"
|
|
199
|
+
icon="el-icon-delete"
|
|
200
|
+
@click.native="deleteAttach()"
|
|
201
|
+
v-if="isEdit && (fileObjAuth.deleteAuth || fileObjAuth.deleteDirAuth)"
|
|
202
|
+
>
|
|
203
|
+
{{ $t2("删除", "components.fileLibrary.delete") }}
|
|
110
204
|
</el-button>
|
|
111
|
-
<el-button
|
|
112
|
-
|
|
205
|
+
<el-button
|
|
206
|
+
icon="iconfont icon-shaixuan"
|
|
207
|
+
class="button-sty"
|
|
208
|
+
@click="showFilterDialog = true"
|
|
209
|
+
>
|
|
210
|
+
{{ $t1("搜索") }}
|
|
113
211
|
</el-button>
|
|
114
212
|
|
|
115
|
-
<template v-for="(fileButton,customToobarButtonIndex) in customToobarButtons">
|
|
213
|
+
<template v-for="(fileButton, customToobarButtonIndex) in customToobarButtons">
|
|
116
214
|
<template
|
|
117
|
-
v-if="
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
215
|
+
v-if="
|
|
216
|
+
fileButton.dirs === null ||
|
|
217
|
+
fileButton.dirs === undefined ||
|
|
218
|
+
attachment.dirs === fileButton.dirs
|
|
219
|
+
"
|
|
220
|
+
>
|
|
221
|
+
<template v-if="customFileButtonVisable(fileButton, attachment)">
|
|
222
|
+
<el-button
|
|
223
|
+
type="primary"
|
|
224
|
+
plain
|
|
225
|
+
class="button-sty"
|
|
226
|
+
:icon="fileButton.icon"
|
|
227
|
+
:key="customToobarButtonIndex"
|
|
228
|
+
@click="customToobarButtonEvent(fileButton)"
|
|
229
|
+
>{{ fileButton.label }}
|
|
121
230
|
</el-button>
|
|
122
231
|
</template>
|
|
123
232
|
</template>
|
|
124
233
|
</template>
|
|
125
|
-
|
|
126
234
|
</div>
|
|
127
|
-
<div
|
|
128
|
-
|
|
235
|
+
<div
|
|
236
|
+
class="line"
|
|
237
|
+
v-if="
|
|
238
|
+
fileObjAuth.uploadAuth ||
|
|
239
|
+
fileObjAuth.downloadAuth ||
|
|
240
|
+
fileObjAuth.deleteAuth ||
|
|
241
|
+
fileObjAuth.moveAuth ||
|
|
242
|
+
fileObjAuth.copyAuth ||
|
|
243
|
+
fileObjAuth.replaceAuth ||
|
|
244
|
+
fileObjAuth.deleteDirAuth
|
|
245
|
+
"
|
|
246
|
+
></div>
|
|
129
247
|
<div class="annex-crumbs">
|
|
130
248
|
<span class="tit"><i class="iconfont icon-wenjianjia"></i>文件区</span>
|
|
131
|
-
<span class="tit" style="padding-right: 0
|
|
249
|
+
<span class="tit" style="padding-right: 0"
|
|
250
|
+
>{{ $t2("指定路径", "components.fileLibrary.assignPath") }}:</span
|
|
251
|
+
>
|
|
132
252
|
<el-breadcrumb separator-class="el-icon-arrow-right">
|
|
133
|
-
<el-breadcrumb-item
|
|
134
|
-
|
|
135
|
-
|
|
253
|
+
<el-breadcrumb-item
|
|
254
|
+
v-for="treeNode in treeNodeArr"
|
|
255
|
+
:key="treeNode.id"
|
|
256
|
+
@click.native="doNav(treeNode)"
|
|
257
|
+
>{{ treeNode.label }}
|
|
136
258
|
</el-breadcrumb-item>
|
|
137
259
|
</el-breadcrumb>
|
|
138
260
|
</div>
|
|
@@ -140,56 +262,102 @@
|
|
|
140
262
|
<div class="annex-searchBox">
|
|
141
263
|
<div class="fl">
|
|
142
264
|
<div class="oper">
|
|
143
|
-
<el-checkbox
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
265
|
+
<el-checkbox
|
|
266
|
+
v-model="checkAll"
|
|
267
|
+
@change="changeCheckAll"
|
|
268
|
+
:disabled="checkAllDisabled"
|
|
269
|
+
:indeterminate="checkAllIndeterminate"
|
|
270
|
+
>已选中 {{ checkList.length }} 项{{
|
|
271
|
+
$t2("", "components.fileLibrary.aa")
|
|
272
|
+
}}
|
|
147
273
|
</el-checkbox>
|
|
148
274
|
</div>
|
|
149
275
|
<div class="search-box">
|
|
150
276
|
<template v-if="currentFileCategory && currentFileCategory.id">
|
|
151
|
-
<el-input
|
|
152
|
-
|
|
153
|
-
|
|
277
|
+
<el-input
|
|
278
|
+
:placeholder="
|
|
279
|
+
$t2('请输入文件名', 'components.fileLibrary.filePlaceholder')
|
|
280
|
+
"
|
|
281
|
+
v-model="formData.fileName"
|
|
282
|
+
clearable
|
|
283
|
+
>
|
|
284
|
+
<el-button
|
|
285
|
+
slot="append"
|
|
286
|
+
icon="el-icon-search"
|
|
287
|
+
@click="searchEvent"
|
|
288
|
+
></el-button>
|
|
154
289
|
</el-input>
|
|
155
|
-
<el-button
|
|
156
|
-
|
|
290
|
+
<el-button
|
|
291
|
+
icon="iconfont icon-shaixuan"
|
|
292
|
+
class="button-sty"
|
|
293
|
+
@click="showAdvancedSearch = true"
|
|
294
|
+
>
|
|
295
|
+
{{ $t2("筛选", "components.fileLibrary.screen") }}
|
|
157
296
|
</el-button>
|
|
158
297
|
</template>
|
|
159
298
|
</div>
|
|
160
|
-
|
|
161
299
|
</div>
|
|
162
300
|
<div class="fr">
|
|
163
|
-
<el-button
|
|
164
|
-
|
|
301
|
+
<el-button
|
|
302
|
+
type="primary"
|
|
303
|
+
icon="iconfont icon-icmenu2"
|
|
304
|
+
@click="changeShowType()"
|
|
305
|
+
class="button-sty icon-btn"
|
|
306
|
+
v-show="showType == 1"
|
|
307
|
+
>{{ $t2("列表", "components.fileLibrary.tableList") }}
|
|
165
308
|
</el-button>
|
|
166
|
-
<el-button
|
|
167
|
-
|
|
168
|
-
|
|
309
|
+
<el-button
|
|
310
|
+
type="primary"
|
|
311
|
+
style="margin-left: 0"
|
|
312
|
+
icon="el-icon-menu"
|
|
313
|
+
@click="changeShowType()"
|
|
314
|
+
class="button-sty icon-btn"
|
|
315
|
+
v-show="showType == 2"
|
|
316
|
+
>{{ $t2("图示", "components.fileLibrary.imageList") }}
|
|
169
317
|
</el-button>
|
|
170
318
|
</div>
|
|
171
319
|
</div>
|
|
172
|
-
<div class="mask" v-show="is_show_mask">
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
320
|
+
<div class="mask" v-show="is_show_mask"></div>
|
|
321
|
+
<div
|
|
322
|
+
class="containter1"
|
|
323
|
+
ref="containter1"
|
|
324
|
+
v-show="showType == 1"
|
|
325
|
+
style="overflow: auto"
|
|
326
|
+
>
|
|
176
327
|
<div class="annex-piclist">
|
|
177
328
|
<div class="clearfix">
|
|
178
|
-
<el-checkbox-group
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
329
|
+
<el-checkbox-group
|
|
330
|
+
v-model="checkList"
|
|
331
|
+
@change="checkChange"
|
|
332
|
+
class="f-group"
|
|
333
|
+
>
|
|
334
|
+
<template v-for="(attachment, index) in page.records">
|
|
335
|
+
<li
|
|
336
|
+
:key="index"
|
|
337
|
+
class="item"
|
|
338
|
+
:class="checkList.includes(attachment.id) ? 'on' : ''"
|
|
339
|
+
>
|
|
182
340
|
<el-checkbox :label="attachment.id"><span></span></el-checkbox>
|
|
183
341
|
<div class="oper">
|
|
184
|
-
<el-tooltip
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
342
|
+
<el-tooltip
|
|
343
|
+
effect="dark"
|
|
344
|
+
content="详情"
|
|
345
|
+
placement="top"
|
|
346
|
+
v-if="!attachment.dirs && isEdit && fileObjAuth.editAuth"
|
|
347
|
+
><i
|
|
348
|
+
class="el-tooltip iconfont icon-shuxing ico"
|
|
349
|
+
@click="openPropertiesDialog(attachment)"
|
|
350
|
+
></i>
|
|
188
351
|
</el-tooltip>
|
|
189
|
-
<el-tooltip
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
352
|
+
<el-tooltip
|
|
353
|
+
effect="dark"
|
|
354
|
+
content="详情"
|
|
355
|
+
placement="top"
|
|
356
|
+
v-if="attachment.dirs && isEdit && fileObjAuth.editAuth"
|
|
357
|
+
><i
|
|
358
|
+
class="el-tooltip iconfont icon-shuxing ico"
|
|
359
|
+
@click="editFileCategory(attachment)"
|
|
360
|
+
></i>
|
|
193
361
|
</el-tooltip>
|
|
194
362
|
<a
|
|
195
363
|
href="javascript:void(0);"
|
|
@@ -197,45 +365,81 @@
|
|
|
197
365
|
v-if="!attachment.dirs && fileObjAuth.downloadAuth"
|
|
198
366
|
@click="downloadSingerFile(attachment)"
|
|
199
367
|
>
|
|
200
|
-
<el-tooltip
|
|
201
|
-
|
|
202
|
-
|
|
368
|
+
<el-tooltip
|
|
369
|
+
effect="dark"
|
|
370
|
+
content="下载"
|
|
371
|
+
placement="top"
|
|
372
|
+
popper-class="tooltip-skin"
|
|
373
|
+
>
|
|
374
|
+
<i class="el-icon-download" />
|
|
203
375
|
</el-tooltip>
|
|
204
376
|
</a>
|
|
205
377
|
<el-dropdown trigger="click" v-if="isEdit">
|
|
206
|
-
|
|
207
|
-
</span>
|
|
378
|
+
<span class="ico"><i class="el-icon-more"></i> </span>
|
|
208
379
|
<el-dropdown-menu slot="dropdown">
|
|
209
|
-
<el-dropdown-item
|
|
210
|
-
|
|
211
|
-
|
|
380
|
+
<el-dropdown-item
|
|
381
|
+
@click.native="openShareDialog(attachment)"
|
|
382
|
+
v-if="!attachment.dirs && fileObjAuth.shareAuth"
|
|
383
|
+
><i class="el-icon-share"></i>分享
|
|
212
384
|
</el-dropdown-item>
|
|
213
|
-
<el-dropdown-item
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
385
|
+
<el-dropdown-item
|
|
386
|
+
@click.native="replaceFile(attachment, index, page.records)"
|
|
387
|
+
v-if="
|
|
388
|
+
!attachment.dirs &&
|
|
389
|
+
isEdit &&
|
|
390
|
+
attachment.status != 1 &&
|
|
391
|
+
fileObjAuth.replaceAuth
|
|
392
|
+
"
|
|
393
|
+
>
|
|
394
|
+
<i class="el-icon-refresh"></i>替换
|
|
217
395
|
</el-dropdown-item>
|
|
218
|
-
<el-dropdown-item
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
396
|
+
<el-dropdown-item
|
|
397
|
+
@click.native="openFileHistoryDialog(attachment)"
|
|
398
|
+
v-if="
|
|
399
|
+
!attachment.dirs &&
|
|
400
|
+
isEdit &&
|
|
401
|
+
attachment.status != 1 &&
|
|
402
|
+
fileObjAuth.historyAuth
|
|
403
|
+
"
|
|
404
|
+
>
|
|
405
|
+
<i class="el-icon-s-order"></i>历史
|
|
222
406
|
</el-dropdown-item>
|
|
223
|
-
<el-dropdown-item
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
407
|
+
<el-dropdown-item
|
|
408
|
+
@click.native="deleteAttach(attachment)"
|
|
409
|
+
v-if="
|
|
410
|
+
!attachment.dirs &&
|
|
411
|
+
isEdit &&
|
|
412
|
+
attachment.status != 1 &&
|
|
413
|
+
fileObjAuth.deleteAuth
|
|
414
|
+
"
|
|
415
|
+
>
|
|
416
|
+
<i class="el-icon-delete"></i>删除
|
|
227
417
|
</el-dropdown-item>
|
|
228
|
-
<el-dropdown-item
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
418
|
+
<el-dropdown-item
|
|
419
|
+
@click.native="deleteCategory(attachment)"
|
|
420
|
+
v-if="attachment.dirs && isEdit && fileObjAuth.deleteDirAuth"
|
|
421
|
+
>
|
|
422
|
+
<i class="el-icon-delete"></i>删除
|
|
232
423
|
</el-dropdown-item>
|
|
233
|
-
<template
|
|
424
|
+
<template
|
|
425
|
+
v-for="(fileButton, fileButtonIndex) in customFileButtons"
|
|
426
|
+
>
|
|
234
427
|
<template
|
|
235
|
-
v-if="
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
428
|
+
v-if="
|
|
429
|
+
fileButton.dirs === null ||
|
|
430
|
+
fileButton.dirs === undefined ||
|
|
431
|
+
attachment.dirs === fileButton.dirs
|
|
432
|
+
"
|
|
433
|
+
>
|
|
434
|
+
<template
|
|
435
|
+
v-if="customFileButtonVisable(fileButton, attachment)"
|
|
436
|
+
>
|
|
437
|
+
<el-dropdown-item
|
|
438
|
+
@click.native="
|
|
439
|
+
customFileButtonEvent(fileButton, attachment)
|
|
440
|
+
"
|
|
441
|
+
:key="fileButtonIndex"
|
|
442
|
+
>
|
|
239
443
|
<i :class="fileButton.icon"></i>{{ fileButton.label }}
|
|
240
444
|
</el-dropdown-item>
|
|
241
445
|
</template>
|
|
@@ -245,34 +449,55 @@
|
|
|
245
449
|
</el-dropdown>
|
|
246
450
|
</div>
|
|
247
451
|
<div class="custom-slot">
|
|
248
|
-
<slot name="custom" v-bind="{row:attachment}"></slot>
|
|
452
|
+
<slot name="custom" v-bind="{ row: attachment }"></slot>
|
|
249
453
|
</div>
|
|
250
454
|
<!-- <div class="status s-1" v-if="!attachment.dirs && attachment.status==1">
|
|
251
455
|
<el-tooltip effect="dark" content="已归档" placement="top" popper-class="tooltip-skin"><i
|
|
252
456
|
class="iconfont icon-file"></i>
|
|
253
457
|
</el-tooltip>
|
|
254
458
|
</div> -->
|
|
255
|
-
<div
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
459
|
+
<div
|
|
460
|
+
class="status s-1"
|
|
461
|
+
v-if="!attachment.dirs && attachment.status == 1"
|
|
462
|
+
></div>
|
|
463
|
+
<div
|
|
464
|
+
class="img"
|
|
465
|
+
@click="openPreview(attachment)"
|
|
466
|
+
v-if="!attachment.dirs"
|
|
467
|
+
>
|
|
468
|
+
<div class="show-video" v-if="hasPreview(attachment)">
|
|
469
|
+
<i class="icon-chakan"></i>
|
|
470
|
+
</div>
|
|
471
|
+
<div class="show-video" v-if="false">
|
|
472
|
+
<i class="el-icon-video-play"></i>
|
|
473
|
+
</div>
|
|
474
|
+
<p><img :src="getShowUrl(attachment)" /></p>
|
|
260
475
|
</div>
|
|
261
|
-
<div
|
|
262
|
-
|
|
476
|
+
<div
|
|
477
|
+
class="img"
|
|
478
|
+
@click="changeCategory(attachment)"
|
|
479
|
+
v-if="attachment.dirs"
|
|
480
|
+
>
|
|
481
|
+
<svg-icon icon-class="ico-wenjianjia" />
|
|
263
482
|
</div>
|
|
264
|
-
<el-tooltip
|
|
483
|
+
<el-tooltip
|
|
484
|
+
:enterable="false"
|
|
485
|
+
effect="dark"
|
|
486
|
+
:content="attachment.fileName"
|
|
487
|
+
placement="top"
|
|
488
|
+
>
|
|
265
489
|
<div class="txt-box">
|
|
266
490
|
<div class="tb-left"></div>
|
|
267
491
|
<div class="tb-mid">
|
|
268
492
|
<div class="txt">
|
|
269
|
-
<span class="name">{{ getFileName(attachment) }}</span
|
|
270
|
-
v-if="attachment.extension"
|
|
493
|
+
<span class="name">{{ getFileName(attachment) }}</span
|
|
494
|
+
><span v-if="attachment.extension"
|
|
495
|
+
>.{{ attachment.extension }}</span
|
|
496
|
+
>
|
|
271
497
|
</div>
|
|
272
498
|
</div>
|
|
273
499
|
<div class="format">... .{{ attachment.extension }}</div>
|
|
274
500
|
</div>
|
|
275
|
-
|
|
276
501
|
</el-tooltip>
|
|
277
502
|
</li>
|
|
278
503
|
</template>
|
|
@@ -309,10 +534,16 @@
|
|
|
309
534
|
</div>
|
|
310
535
|
</div>
|
|
311
536
|
<div class="annex-grid-height">
|
|
312
|
-
<vxe-grid
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
537
|
+
<vxe-grid
|
|
538
|
+
v-show="showType == 2"
|
|
539
|
+
ref="table-m1"
|
|
540
|
+
v-bind="vxeOption"
|
|
541
|
+
:data="page.records"
|
|
542
|
+
@resizable-change="$vxeTableUtil.onColumnWitchChange"
|
|
543
|
+
@custom="$vxeTableUtil.customHandle"
|
|
544
|
+
@checkbox-change="tableCheckChange"
|
|
545
|
+
@checkbox-all="tableCheckAll"
|
|
546
|
+
>
|
|
316
547
|
<!-- <template #bottom v-if="page.total>page.records.length">
|
|
317
548
|
<div class="vxe-annex-more" @click="changePage(page.current+1, pageSize)">
|
|
318
549
|
<span>更多</span>
|
|
@@ -329,16 +560,16 @@
|
|
|
329
560
|
@page-change="changePageNew"
|
|
330
561
|
>
|
|
331
562
|
<template #right>
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
563
|
+
<span>
|
|
564
|
+
<span>{{ $t2("当前记录", "components.table.pageInfo") }}</span>
|
|
565
|
+
<span class="f-red"> {{ page.records.length }} </span>
|
|
566
|
+
<span>/</span>
|
|
567
|
+
<span class="f-red"> {{ page.total }}</span>
|
|
568
|
+
</span>
|
|
338
569
|
</template>
|
|
339
570
|
</vxe-pager>
|
|
340
571
|
</template>
|
|
341
|
-
<template #operate="{row,rowIndex,items}">
|
|
572
|
+
<template #operate="{ row, rowIndex, items }">
|
|
342
573
|
<template v-if="!row.dirs">
|
|
343
574
|
<a
|
|
344
575
|
href="javascript:void(0);"
|
|
@@ -346,10 +577,14 @@
|
|
|
346
577
|
v-if="isEdit && fileObjAuth.editAuth == 1"
|
|
347
578
|
@click="openPropertiesDialog(row)"
|
|
348
579
|
>
|
|
349
|
-
<el-tooltip
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
580
|
+
<el-tooltip
|
|
581
|
+
:enterable="false"
|
|
582
|
+
effect="dark"
|
|
583
|
+
:content="$t2('详情', 'components.fileLibrary.detail')"
|
|
584
|
+
placement="top"
|
|
585
|
+
popper-class="tooltip-skin"
|
|
586
|
+
>
|
|
587
|
+
<i class="iconfont icon-shuxing" />
|
|
353
588
|
</el-tooltip>
|
|
354
589
|
</a>
|
|
355
590
|
<a
|
|
@@ -358,10 +593,14 @@
|
|
|
358
593
|
v-if="fileObjAuth.downloadAuth == 1"
|
|
359
594
|
@click="downloadSingerFile(row)"
|
|
360
595
|
>
|
|
361
|
-
<el-tooltip
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
596
|
+
<el-tooltip
|
|
597
|
+
:enterable="false"
|
|
598
|
+
effect="dark"
|
|
599
|
+
:content="$t2('下载', 'components.fileLibrary.download')"
|
|
600
|
+
placement="top"
|
|
601
|
+
popper-class="tooltip-skin"
|
|
602
|
+
>
|
|
603
|
+
<i class="el-icon-download" />
|
|
365
604
|
</el-tooltip>
|
|
366
605
|
</a>
|
|
367
606
|
<a
|
|
@@ -370,10 +609,14 @@
|
|
|
370
609
|
v-if="fileObjAuth.shareAuth == 1"
|
|
371
610
|
@click="openShareDialog(row)"
|
|
372
611
|
>
|
|
373
|
-
<el-tooltip
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
612
|
+
<el-tooltip
|
|
613
|
+
:enterable="false"
|
|
614
|
+
effect="dark"
|
|
615
|
+
:content="$t2('分享', 'components.fileLibrary.share')"
|
|
616
|
+
placement="top"
|
|
617
|
+
popper-class="tooltip-skin"
|
|
618
|
+
>
|
|
619
|
+
<i class="el-icon-share" />
|
|
377
620
|
</el-tooltip>
|
|
378
621
|
</a>
|
|
379
622
|
<a
|
|
@@ -382,10 +625,14 @@
|
|
|
382
625
|
v-if="isEdit && row.status != 1 && fileObjAuth.replaceAuth == 1"
|
|
383
626
|
@click="replaceFile(row, rowIndex, items)"
|
|
384
627
|
>
|
|
385
|
-
<el-tooltip
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
628
|
+
<el-tooltip
|
|
629
|
+
:enterable="false"
|
|
630
|
+
effect="dark"
|
|
631
|
+
:content="$t2('替换', 'components.fileLibrary.replace')"
|
|
632
|
+
placement="top"
|
|
633
|
+
popper-class="tooltip-skin"
|
|
634
|
+
>
|
|
635
|
+
<i class="el-icon-refresh" />
|
|
389
636
|
</el-tooltip>
|
|
390
637
|
</a>
|
|
391
638
|
<a
|
|
@@ -394,10 +641,14 @@
|
|
|
394
641
|
v-if="isEdit && row.status != 1 && fileObjAuth.historyAuth == 1"
|
|
395
642
|
@click="openFileHistoryDialog(row)"
|
|
396
643
|
>
|
|
397
|
-
<el-tooltip
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
644
|
+
<el-tooltip
|
|
645
|
+
:enterable="false"
|
|
646
|
+
effect="dark"
|
|
647
|
+
:content="$t2('历史', 'components.fileLibrary.history')"
|
|
648
|
+
placement="top"
|
|
649
|
+
popper-class="tooltip-skin"
|
|
650
|
+
>
|
|
651
|
+
<i class="el-icon-s-order" />
|
|
401
652
|
</el-tooltip>
|
|
402
653
|
</a>
|
|
403
654
|
<a
|
|
@@ -406,10 +657,14 @@
|
|
|
406
657
|
v-if="isEdit && row.status != 1 && fileObjAuth.deleteAuth == 1"
|
|
407
658
|
@click="deleteAttach(row)"
|
|
408
659
|
>
|
|
409
|
-
<el-tooltip
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
660
|
+
<el-tooltip
|
|
661
|
+
:enterable="false"
|
|
662
|
+
effect="dark"
|
|
663
|
+
:content="$t2('删除', 'components.fileLibrary.delete')"
|
|
664
|
+
placement="top"
|
|
665
|
+
popper-class="tooltip-skin"
|
|
666
|
+
>
|
|
667
|
+
<i class="el-icon-delete" />
|
|
413
668
|
</el-tooltip>
|
|
414
669
|
</a>
|
|
415
670
|
</template>
|
|
@@ -420,10 +675,14 @@
|
|
|
420
675
|
v-if="isEdit && isCategoryEdit && fileObjAuth.editAuth == 1"
|
|
421
676
|
@click="editFileCategory(row)"
|
|
422
677
|
>
|
|
423
|
-
<el-tooltip
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
678
|
+
<el-tooltip
|
|
679
|
+
:enterable="false"
|
|
680
|
+
effect="dark"
|
|
681
|
+
:content="$t2('详情', 'components.fileLibrary.detail')"
|
|
682
|
+
placement="top"
|
|
683
|
+
popper-class="tooltip-skin"
|
|
684
|
+
>
|
|
685
|
+
<i class="iconfont icon-shuxing" />
|
|
427
686
|
</el-tooltip>
|
|
428
687
|
</a>
|
|
429
688
|
<a
|
|
@@ -432,16 +691,25 @@
|
|
|
432
691
|
v-if="isEdit && isCategoryEdit && fileObjAuth.deleteDirAuth == 1"
|
|
433
692
|
@click="deleteAttach(row)"
|
|
434
693
|
>
|
|
435
|
-
<el-tooltip
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
694
|
+
<el-tooltip
|
|
695
|
+
:enterable="false"
|
|
696
|
+
effect="dark"
|
|
697
|
+
:content="$t2('删除', 'components.fileLibrary.delete')"
|
|
698
|
+
placement="top"
|
|
699
|
+
popper-class="tooltip-skin"
|
|
700
|
+
>
|
|
701
|
+
<i class="el-icon-delete" />
|
|
439
702
|
</el-tooltip>
|
|
440
703
|
</a>
|
|
441
704
|
</template>
|
|
442
|
-
<template v-for="(fileButton,index) in customFileButtons">
|
|
705
|
+
<template v-for="(fileButton, index) in customFileButtons">
|
|
443
706
|
<template
|
|
444
|
-
v-if="
|
|
707
|
+
v-if="
|
|
708
|
+
fileButton.dirs === null ||
|
|
709
|
+
fileButton.dirs === undefined ||
|
|
710
|
+
row.dirs === fileButton.dirs
|
|
711
|
+
"
|
|
712
|
+
>
|
|
445
713
|
<a
|
|
446
714
|
:key="index"
|
|
447
715
|
href="javascript:void(0);"
|
|
@@ -449,21 +717,28 @@
|
|
|
449
717
|
v-if="customFileButtonVisable(fileButton, row)"
|
|
450
718
|
@click="customFileButtonEvent(fileButton, row)"
|
|
451
719
|
>
|
|
452
|
-
<el-tooltip
|
|
453
|
-
|
|
454
|
-
|
|
720
|
+
<el-tooltip
|
|
721
|
+
:enterable="false"
|
|
722
|
+
effect="dark"
|
|
723
|
+
:content="fileButton.label"
|
|
724
|
+
placement="top"
|
|
725
|
+
popper-class="tooltip-skin"
|
|
726
|
+
>
|
|
727
|
+
<i :class="fileButton.icon" />
|
|
455
728
|
</el-tooltip>
|
|
456
729
|
</a>
|
|
457
730
|
</template>
|
|
458
731
|
</template>
|
|
459
|
-
|
|
460
732
|
</template>
|
|
461
733
|
</vxe-grid>
|
|
462
734
|
</div>
|
|
463
|
-
|
|
464
735
|
</div>
|
|
465
736
|
<el-dialog
|
|
466
|
-
:title="
|
|
737
|
+
:title="
|
|
738
|
+
editCategory.id
|
|
739
|
+
? $t2('编辑文件夹', 'components.fileLibrary.editCategoryTitle')
|
|
740
|
+
: $t2('新增文件夹', 'components.fileLibrary.addCategoryTitle')
|
|
741
|
+
"
|
|
467
742
|
:append-to-body="true"
|
|
468
743
|
:modal-append-to-body="true"
|
|
469
744
|
:close-on-click-modal="false"
|
|
@@ -476,55 +751,109 @@
|
|
|
476
751
|
v-el-dialog-center
|
|
477
752
|
>
|
|
478
753
|
<div class="cont">
|
|
479
|
-
<el-form
|
|
480
|
-
|
|
754
|
+
<el-form
|
|
755
|
+
ref="editCategoryForm"
|
|
756
|
+
:model="editCategory"
|
|
757
|
+
label-width="102px"
|
|
758
|
+
class="adSearchForm"
|
|
759
|
+
>
|
|
760
|
+
<el-form-item
|
|
761
|
+
:label="$t2('文件夹路径', 'components.fileLibrary.fileCategoryPath')"
|
|
762
|
+
>
|
|
481
763
|
<el-breadcrumb separator-class="el-icon-arrow-right">
|
|
482
|
-
<el-breadcrumb-item v-for="(treeNode,index) in treeNodeArr" :key="index"
|
|
483
|
-
|
|
484
|
-
}}
|
|
764
|
+
<el-breadcrumb-item v-for="(treeNode, index) in treeNodeArr" :key="index"
|
|
765
|
+
>{{ treeNode.label }}
|
|
485
766
|
</el-breadcrumb-item>
|
|
486
767
|
</el-breadcrumb>
|
|
487
768
|
</el-form-item>
|
|
488
|
-
<el-form-item
|
|
769
|
+
<el-form-item
|
|
770
|
+
:label="$t2('文件夹编码', 'components.fileLibrary.fileCategorySn')"
|
|
771
|
+
>
|
|
489
772
|
<span>{{ editCategory.fileSn }}</span>
|
|
490
773
|
</el-form-item>
|
|
491
|
-
<el-form-item
|
|
492
|
-
|
|
774
|
+
<el-form-item
|
|
775
|
+
:label="$t2('文件夹名称', 'components.fileLibrary.fileCategoryName')"
|
|
776
|
+
>
|
|
777
|
+
<el-input v-model="editCategory.fileName" clearable class="all-width" />
|
|
493
778
|
</el-form-item>
|
|
494
779
|
</el-form>
|
|
495
780
|
</div>
|
|
496
781
|
<span slot="footer" class="dialog-footer">
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
782
|
+
<el-button
|
|
783
|
+
type="primary"
|
|
784
|
+
plain
|
|
785
|
+
class="button-sty"
|
|
786
|
+
@click="showEditCategoryDialog = false"
|
|
787
|
+
>
|
|
788
|
+
<i class="el-icon-close el-icon"></i>
|
|
789
|
+
{{ $t2("取 消", "system.button.cancel2") }}
|
|
790
|
+
</el-button>
|
|
791
|
+
<el-button type="primary" @click="confirmEditCategoryDialog" class="button-sty">
|
|
792
|
+
<i class="el-icon-check el-icon"></i>
|
|
793
|
+
{{ $t2("确 定", "system.button.confirm2") }}
|
|
794
|
+
</el-button>
|
|
795
|
+
</span>
|
|
506
796
|
</el-dialog>
|
|
507
797
|
</div>
|
|
508
|
-
<propertiesDialog
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
<
|
|
517
|
-
|
|
798
|
+
<propertiesDialog
|
|
799
|
+
v-if="showPropertiesDialog"
|
|
800
|
+
:visiable.sync="showPropertiesDialog"
|
|
801
|
+
:editAttachment.sync="editAttachment"
|
|
802
|
+
:isEdit="isEdit"
|
|
803
|
+
:treeNodeArr.sync="treeNodeArr"
|
|
804
|
+
:option="option"
|
|
805
|
+
></propertiesDialog>
|
|
806
|
+
<el-image-viewer
|
|
807
|
+
v-if="showViewer"
|
|
808
|
+
:on-close="
|
|
809
|
+
() => {
|
|
810
|
+
showViewer = false;
|
|
811
|
+
}
|
|
812
|
+
"
|
|
813
|
+
:initial-index.sync="chooseIndex"
|
|
814
|
+
:url-list="imageDTOs"
|
|
815
|
+
/>
|
|
816
|
+
<categoryMoveDialog
|
|
817
|
+
:checkRows.sync="checkRows"
|
|
818
|
+
v-if="showCategoryMoveDialog"
|
|
819
|
+
:visiable.sync="showCategoryMoveDialog"
|
|
820
|
+
@confirm="confirmMoveDialog"
|
|
821
|
+
:handleType.sync="handleType"
|
|
822
|
+
></categoryMoveDialog>
|
|
823
|
+
<fileHistoryDialog
|
|
824
|
+
v-if="showFileHistoryDialog"
|
|
825
|
+
:visiable.sync="showFileHistoryDialog"
|
|
826
|
+
:currentFile.sync="operateFileHistory"
|
|
827
|
+
@confirm="confirmFileHistoryDialog"
|
|
828
|
+
:multi="false"
|
|
829
|
+
/>
|
|
518
830
|
|
|
519
|
-
<shareDialog
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
<
|
|
525
|
-
|
|
831
|
+
<shareDialog
|
|
832
|
+
v-if="showShareDialog"
|
|
833
|
+
:visiable.sync="showShareDialog"
|
|
834
|
+
:attachment.sync="shareAttachment"
|
|
835
|
+
></shareDialog>
|
|
836
|
+
<recycleBinDialog
|
|
837
|
+
v-if="showRecycleBinDialog"
|
|
838
|
+
:visiable.sync="showRecycleBinDialog"
|
|
839
|
+
:option.sync="option"
|
|
840
|
+
:treeNodeArr="treeNodeArr"
|
|
841
|
+
:currentFileCategory="currentFileCategory"
|
|
842
|
+
@confirm="confirmRecycleBinDialog"
|
|
843
|
+
></recycleBinDialog>
|
|
844
|
+
<advancedSearchDialog
|
|
845
|
+
v-if="showAdvancedSearch"
|
|
846
|
+
:visiable.sync="showAdvancedSearch"
|
|
847
|
+
:formData.sync="advancedFormData"
|
|
848
|
+
@confirm="searchEvent"
|
|
849
|
+
>
|
|
526
850
|
<template #form>
|
|
527
|
-
<vxe-form
|
|
851
|
+
<vxe-form
|
|
852
|
+
:model="advancedFormData"
|
|
853
|
+
title-width="102px"
|
|
854
|
+
:inline="true"
|
|
855
|
+
class="adSearchForm"
|
|
856
|
+
>
|
|
528
857
|
<!-- <vxe-form-item title="属性名称:">
|
|
529
858
|
<template v-slot>
|
|
530
859
|
<el-input v-model="advancedFormData.attributeName" clearable/>
|
|
@@ -545,7 +874,7 @@
|
|
|
545
874
|
</vxe-form-item>-->
|
|
546
875
|
<vxe-form-item title="所属对象描述:" class-name="block">
|
|
547
876
|
<template v-slot>
|
|
548
|
-
<el-input v-model="advancedFormData.note" clearable/>
|
|
877
|
+
<el-input v-model="advancedFormData.note" clearable />
|
|
549
878
|
</template>
|
|
550
879
|
</vxe-form-item>
|
|
551
880
|
<vxe-form-item title="创建时间:">
|
|
@@ -581,22 +910,35 @@
|
|
|
581
910
|
v-bind="billDialogParam"
|
|
582
911
|
@confirm="confirmBillDialog"
|
|
583
912
|
></component>
|
|
584
|
-
<videoDialog
|
|
585
|
-
|
|
586
|
-
|
|
913
|
+
<videoDialog
|
|
914
|
+
v-if="showVideoDialog"
|
|
915
|
+
:visiable.sync="showVideoDialog"
|
|
916
|
+
:option="videoOption"
|
|
917
|
+
></videoDialog>
|
|
918
|
+
<fileObjAuthDialog
|
|
919
|
+
v-if="showFileObjAuthDialog"
|
|
920
|
+
:visiable.sync="showFileObjAuthDialog"
|
|
921
|
+
:fileObjId="currentFileCategory ? currentFileCategory.id : 0"
|
|
922
|
+
:treeNodeArr="treeNodeArr"
|
|
923
|
+
/>
|
|
587
924
|
|
|
588
|
-
<filterDialog
|
|
589
|
-
|
|
925
|
+
<filterDialog
|
|
926
|
+
v-if="showFilterDialog"
|
|
927
|
+
:visiable.sync="showFilterDialog"
|
|
928
|
+
queryType="pcp"
|
|
929
|
+
:treeNodeArr="treeNodeArr"
|
|
930
|
+
:currentFileCategory="currentFileCategory"
|
|
931
|
+
@openFileDirs="openFileDirs"
|
|
932
|
+
></filterDialog>
|
|
590
933
|
</div>
|
|
591
934
|
</template>
|
|
592
935
|
|
|
593
936
|
<script>
|
|
594
|
-
|
|
595
|
-
import mixins from './mixins/indexMixins';
|
|
937
|
+
import mixins from "./mixins/indexMixins";
|
|
596
938
|
export default {
|
|
597
|
-
name:
|
|
598
|
-
mixins: [mixins]
|
|
599
|
-
}
|
|
939
|
+
name: "ledgerLibrary",
|
|
940
|
+
mixins: [mixins],
|
|
941
|
+
};
|
|
600
942
|
</script>
|
|
601
943
|
<style lang="scss" scoped>
|
|
602
944
|
#labBtn {
|
|
@@ -619,7 +961,6 @@ export default {
|
|
|
619
961
|
display: inline-block;
|
|
620
962
|
}
|
|
621
963
|
|
|
622
|
-
|
|
623
964
|
.vxe-grid .vxe-gird-block {
|
|
624
965
|
height: calc(100vh - 161px);
|
|
625
966
|
}
|
|
@@ -681,6 +1022,6 @@ export default {
|
|
|
681
1022
|
}
|
|
682
1023
|
|
|
683
1024
|
#labBtn {
|
|
684
|
-
height: calc(100vh - 34px)
|
|
1025
|
+
height: calc(100vh - 34px);
|
|
685
1026
|
}
|
|
686
1027
|
</style>
|