cloud-web-corejs 1.0.27 → 1.0.29
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/formOplog/mixins.js +1 -1
- package/src/components/jsonImport/exportDialog.vue +1 -1
- package/src/components/jsonImport/index.vue +151 -202
- package/src/components/jsonImport/mixins.js +1 -309
- package/src/components/projectTag/addButton.vue +3 -50
- package/src/components/projectTag/deleteButton.vue +3 -50
- package/src/components/projectTag/mixins/addButton.js +5 -0
- package/src/components/projectTag/mixins/deleteButton.js +5 -0
- package/src/components/projectTag/mixins/view.js +5 -0
- package/src/components/projectTag/view.vue +33 -72
- package/src/components/xform/mixins/scriptHttp.js +1 -1
- package/src/index.js +0 -2
- package/src/layout/components/Sidebar/default.vue +4 -6
- package/src/router/modules/system.js +1 -1
- package/src/store/config/index.js +3 -0
- package/src/store/getters.js +2 -0
- package/src/store/modules/permission.js +2 -2
- package/src/store/modules/user.js +2 -1
- package/src/utils/request.js +28 -29
- package/src/utils/vab.js +27 -27
- package/src/views/bd/setting/bd_attach_setting/dialog.vue +4 -87
- package/src/views/bd/setting/bd_attach_setting/edit.vue +3 -92
- package/src/views/bd/setting/bd_attach_setting/list.vue +4 -214
- package/src/views/bd/setting/bd_attach_setting/mixins/dialog.js +89 -0
- package/src/views/bd/setting/bd_attach_setting/mixins/edit.js +96 -0
- package/src/views/bd/setting/bd_attach_setting/mixins/list.js +219 -0
- package/src/views/bd/setting/form_script/dialog.vue +3 -137
- package/src/views/bd/setting/form_script/edit.vue +3 -127
- package/src/views/bd/setting/form_script/edit1.vue +3 -142
- package/src/views/bd/setting/form_script/form_list.vue +4 -259
- package/src/views/bd/setting/form_script/list.vue +55 -223
- package/src/views/bd/setting/form_script/list1.vue +117 -444
- package/src/views/bd/setting/form_script/list2.vue +3 -4
- package/src/views/bd/setting/form_script/mixins/dialog.js +142 -0
- package/src/views/bd/setting/form_script/mixins/edit.js +134 -0
- package/src/views/bd/setting/form_script/mixins/edit1.js +149 -0
- package/src/views/bd/setting/form_script/mixins/form_list.js +264 -0
- package/src/views/bd/setting/form_script/mixins/list.js +176 -0
- package/src/views/bd/setting/form_script/mixins/list1.js +336 -0
- package/src/views/bd/setting/form_script/mixins/list2.js +14 -0
- package/src/views/bd/setting/form_template/dialog.vue +104 -212
- package/src/views/bd/setting/form_template/edit.vue +183 -329
- package/src/views/bd/setting/form_template/editWfObjConfigDialog.vue +46 -131
- package/src/views/bd/setting/form_template/ftHistoryDialog.vue +88 -175
- package/src/views/bd/setting/form_template/itemEdit.vue +174 -270
- package/src/views/bd/setting/form_template/itemList.vue +56 -300
- package/src/views/bd/setting/form_template/list.vue +211 -766
- package/src/views/bd/setting/form_template/mixins/dialog.js +114 -0
- package/src/views/bd/setting/form_template/mixins/edit.js +155 -0
- package/src/views/bd/setting/form_template/mixins/editWfObjConfigDialog.js +94 -0
- package/src/views/bd/setting/form_template/mixins/ftHistoryDialog.js +95 -0
- package/src/views/bd/setting/form_template/mixins/itemEdit.js +106 -0
- package/src/views/bd/setting/form_template/mixins/itemList.js +254 -0
- package/src/views/bd/setting/form_template/mixins/list.js +562 -0
- package/src/views/bd/setting/form_template/mixins/preformDialog.js +28 -0
- package/src/views/bd/setting/form_template/preformDialog.vue +57 -77
- package/src/views/bd/setting/menu_kind/authDialog.vue +84 -308
- package/src/views/bd/setting/menu_kind/dialog.vue +89 -226
- package/src/views/bd/setting/menu_kind/list.vue +86 -262
- package/src/views/bd/setting/menu_kind/mixins/authDialog.js +232 -0
- package/src/views/bd/setting/menu_kind/mixins/dialog.js +144 -0
- package/src/views/bd/setting/menu_kind/mixins/list.js +187 -0
- package/src/views/bd/setting/table_model/dialog.vue +95 -161
- package/src/views/bd/setting/table_model/edit.vue +5 -767
- package/src/views/bd/setting/table_model/list.vue +130 -491
- package/src/views/bd/setting/table_model/mixins/dialog.js +74 -0
- package/src/views/bd/setting/table_model/mixins/edit.js +778 -0
- package/src/views/bd/setting/table_model/mixins/list.js +367 -0
- package/src/views/bd/setting/table_model/mixins/zdDialog.js +114 -0
- package/src/views/bd/setting/table_model/zdDialog.vue +95 -201
- package/src/views/support/export_template/edit.vue +40 -36
- package/src/views/support/export_template/list.vue +40 -52
- package/src/views/user/access_log/edit.vue +18 -17
- package/src/views/user/access_log/list.vue +27 -26
- package/src/views/user/access_log/statistics_list.vue +19 -17
- package/src/views/user/api_request/edit.vue +14 -11
- package/src/views/user/api_request/list.vue +13 -11
- package/src/views/user/area/dialog.vue +14 -27
- package/src/views/user/area_attribute/configDialog.vue +11 -13
- package/src/views/user/area_attribute/edit.vue +8 -6
- package/src/views/user/area_attribute/list.vue +1 -1
- package/src/views/user/attachment/uploadDialog.vue +1 -1
- package/src/views/user/bill_setting/button/previewButton.vue +2 -2
- package/src/views/user/bill_setting/compareView.vue +1 -1
- package/src/views/user/bill_setting/edit.vue +24 -17
- package/src/views/user/bill_setting/h5_ModifyDialog.vue +1 -1
- package/src/views/user/bill_setting/itemViewDialog.vue +3 -66
- package/src/views/user/bill_setting/list.vue +28 -26
- package/src/views/user/bill_setting/mixins/wf.js +8 -8
- package/src/views/user/bill_setting/previewDialog.vue +1 -1
- package/src/views/user/bill_setting/render.vue +29 -29
- package/src/views/user/bill_setting/userDialog.vue +7 -5
- package/src/views/user/code_rules/edit.vue +21 -18
- package/src/views/user/code_rules/list.vue +27 -19
- package/src/views/user/commMenu/index.vue +3 -3
- package/src/views/user/common_attribute/edit.vue +7 -5
- package/src/views/user/common_attribute/itemEdit.vue +22 -22
- package/src/views/user/common_attribute/list.vue +25 -24
- package/src/views/user/common_script/edit.vue +12 -12
- package/src/views/user/common_script/list.vue +30 -32
- package/src/views/user/company_info/dialog.vue +9 -9
- package/src/views/user/company_info/edit.vue +11 -8
- package/src/views/user/country/dialog.vue +11 -9
- package/src/views/user/country/edit.vue +12 -9
- package/src/views/user/country/list.vue +12 -12
- package/src/views/user/data_type_setting/dialog.vue +10 -10
- package/src/views/user/data_type_setting/editDialog.vue +6 -6
- package/src/views/user/ea/eagroup/eaobj_list.vue +25 -25
- package/src/views/user/ea/eagroup/edit.vue +48 -42
- package/src/views/user/ea/eaobj/edit.vue +6 -5
- package/src/views/user/ea/eaobj/list.vue +9 -8
- package/src/views/user/extend_datasource/dialog.vue +19 -24
- package/src/views/user/extend_datasource/edit.vue +20 -16
- package/src/views/user/extend_datasource/list.vue +23 -24
- package/src/views/user/fieldTranslation/editDialog.vue +28 -28
- package/src/views/user/fieldTranslation/list.vue +59 -57
- package/src/views/user/field_values_invisible/edit.vue +15 -14
- package/src/views/user/field_values_invisible/list.vue +23 -22
- package/src/views/user/file_type/edit.vue +12 -21
- package/src/views/user/file_type/list.vue +21 -36
- package/src/views/user/file_type/userEdit.vue +14 -9
- package/src/views/user/file_view_area/edit.vue +3 -3
- package/src/views/user/file_view_area/itemEdit.vue +11 -9
- package/src/views/user/file_view_area/list.vue +17 -16
- package/src/views/user/file_view_ins/list.vue +29 -28
- package/src/views/user/file_view_ins/propertiesDialog.vue +15 -15
- package/src/views/user/form/form_template/edit.vue +1 -1
- package/src/views/user/form/form_template/itemEdit.vue +1 -1
- package/src/views/user/form/form_template/itemList.vue +2 -2
- package/src/views/user/form/form_template/list.vue +3 -3
- package/src/views/user/form/form_type/edit.vue +1 -1
- package/src/views/user/form/form_type/list.vue +1 -1
- package/src/views/user/form/report_requestaccess/edit.vue +1 -1
- package/src/views/user/form/report_requestaccess/list.vue +1 -1
- package/src/views/user/form/vform/designer.vue +2 -0
- package/src/views/user/form/vform/out_render.vue +1 -0
- package/src/views/user/form/vform/render.vue +1 -0
- package/src/views/user/form/view/list.vue +2 -1
- package/src/views/user/groups/dialog.vue +159 -0
- package/src/views/user/groups/edit.vue +131 -0
- package/src/views/user/groups/list.vue +167 -0
- package/src/views/user/home/index.vue +3 -3
- package/src/views/user/lang_tag/dialog.vue +185 -0
- package/src/views/user/lang_tag/edit.vue +138 -0
- package/src/views/user/lang_tag/list.vue +170 -0
- package/src/views/user/language_setting/edit.vue +11 -9
- package/src/views/user/language_setting/list.vue +20 -18
- package/src/views/user/login/default.vue +129 -0
- package/src/views/user/login/index.vue +3 -117
- package/src/views/user/menu/list.vue +39 -55
- package/src/views/user/mobile_menu/list.vue +18 -54
- package/src/views/user/notify_message/dialog.vue +1 -1
- package/src/views/user/notify_message/infoDialog.vue +1 -1
- package/src/views/user/notify_message/list.vue +24 -23
- package/src/views/user/notify_template/edit.vue +13 -11
- package/src/views/user/notify_template/list.vue +19 -16
- package/src/views/user/oplog/edit.vue +12 -12
- package/src/views/user/oplog/list.vue +20 -18
- package/src/views/user/position/dialog.vue +6 -6
- package/src/views/user/position/edit.vue +11 -8
- package/src/views/user/position/list.vue +11 -11
- package/src/views/user/project_tag/dialog.vue +11 -9
- package/src/views/user/project_tag/edit.vue +8 -6
- package/src/views/user/project_tag/list.vue +15 -12
- package/src/views/user/push_setting/edit.vue +20 -17
- package/src/views/user/push_setting/list.vue +1 -1
- package/src/views/user/role/dialog.vue +11 -11
- package/src/views/user/role/edit.vue +14 -12
- package/src/views/user/role/list.vue +14 -12
- package/src/views/user/sale_org/dialog.vue +12 -12
- package/src/views/user/sale_org/list.vue +43 -48
- package/src/views/user/system_notice/edit.vue +13 -11
- package/src/views/user/system_notice/infoDialog.vue +2 -2
- package/src/views/user/system_notice/list.vue +19 -17
- package/src/views/user/system_parameter/edit.vue +7 -6
- package/src/views/user/system_parameter/list.vue +12 -10
- package/src/views/user/user/edit.vue +1 -1
- package/src/views/user/user/form_edit.vue +50 -7
- package/src/views/user/user/form_list.vue +34 -132
- package/src/views/user/user/info.vue +20 -19
- package/src/views/user/user/infoEdit.vue +18 -18
- package/src/views/user/user/infoIframeDialog.vue +1 -1
- package/src/views/user/user/modifyPasswordDialog.vue +9 -9
- package/src/views/user/wf/iframe/dialog.vue +1 -1
- package/src/views/user/wf/wf_auto_submit_data/edit.vue +11 -10
- package/src/views/user/wf/wf_auto_submit_data/edith.vue +14 -13
- package/src/views/user/wf/wf_auto_submit_data/list.vue +43 -41
- package/src/views/user/wf/wf_diy_attribute/edit.vue +11 -8
- package/src/views/user/wf/wf_manage/list.vue +66 -61
- package/src/views/user/wf/wf_manage/wfContentDialog.vue +1 -1
- package/src/views/user/wf/wf_obj_config/dialog.vue +11 -11
- package/src/views/user/wf/wf_obj_config/edit.vue +12 -9
- package/src/views/user/wf/wf_obj_config/edit_form.vue +11 -9
- package/src/views/user/wf/wf_obj_config/itemEdit.vue +31 -27
- package/src/views/user/wf/wf_obj_config/itemEdit_form.vue +8 -6
- package/src/views/user/wf/wf_obj_config/list.vue +42 -41
- package/src/views/user/wf/wf_obj_config/list_form.vue +14 -12
- package/src/views/user/wf/wf_param/edit.vue +7 -5
- package/src/views/user/wf/wf_work_calendar/configDialog.vue +9 -24
- package/src/views/user/wf/wf_work_calendar/list.vue +6 -3
- package/src/views/user/home/distributor.vue +0 -849
|
@@ -22,25 +22,27 @@
|
|
|
22
22
|
<template #form>
|
|
23
23
|
<div style="margin-bottom: 8px;" class="clearfix">
|
|
24
24
|
<div class="fl">
|
|
25
|
-
<vxe-button status="primary" class="button-sty" icon="el-icon-plus" @click="openEditDialog"
|
|
25
|
+
<vxe-button status="primary" class="button-sty" icon="el-icon-plus" @click="openEditDialog">
|
|
26
|
+
{{ $t1('新增凭证查询区') }}
|
|
26
27
|
</vxe-button>
|
|
27
28
|
</div>
|
|
28
29
|
<div class="fr">
|
|
29
30
|
<vxe-button icon="el-icon-brush" class="button-sty" @click="resetEvent" type="text" status="primary"
|
|
30
|
-
plain>{{$t1('重置')}}
|
|
31
|
+
plain>{{ $t1('重置') }}
|
|
31
32
|
</vxe-button>
|
|
32
|
-
<vxe-button status="warning" icon="el-icon-search" class="button-sty" @click="searchEvent"
|
|
33
|
+
<vxe-button status="warning" icon="el-icon-search" class="button-sty" @click="searchEvent">
|
|
34
|
+
{{ $t1('搜索') }}
|
|
33
35
|
</vxe-button>
|
|
34
36
|
</div>
|
|
35
37
|
</div>
|
|
36
38
|
<vxe-form ref="form" class="screen-box" :data-form="formData" title-width="92px" title-align="right"
|
|
37
39
|
@submit="searchEvent" @reset="searchEvent">
|
|
38
|
-
<vxe-form-item title="
|
|
40
|
+
<vxe-form-item :title="$t1('查询区名称')+':'" field="viewAreaName">
|
|
39
41
|
<template v-slot="">
|
|
40
42
|
<el-input v-model="formData.viewAreaName" size="small" clearable/>
|
|
41
43
|
</template>
|
|
42
44
|
</vxe-form-item>
|
|
43
|
-
<vxe-form-item title="
|
|
45
|
+
<vxe-form-item :title="$t1('查询区编码')+':'" field="viewAreaCode">
|
|
44
46
|
<template v-slot="">
|
|
45
47
|
<el-input v-model="formData.viewAreaCode" size="small" clearable/>
|
|
46
48
|
</template>
|
|
@@ -152,13 +154,13 @@ export default {
|
|
|
152
154
|
columns: [
|
|
153
155
|
{type: 'checkbox', width: 48, resizable: false, fixed: 'left'},
|
|
154
156
|
{
|
|
155
|
-
title: '查询区名称',
|
|
157
|
+
title: this.$t1('查询区名称'),
|
|
156
158
|
field: 'viewAreaName',
|
|
157
159
|
width: 150,
|
|
158
160
|
fixed: 'left'
|
|
159
161
|
},
|
|
160
162
|
{
|
|
161
|
-
title: '查询区编码',
|
|
163
|
+
title: this.$t1('查询区编码'),
|
|
162
164
|
field: 'viewAreaCode',
|
|
163
165
|
width: 150
|
|
164
166
|
},
|
|
@@ -183,16 +185,15 @@ export default {
|
|
|
183
185
|
<div>
|
|
184
186
|
<a
|
|
185
187
|
class="a-link"
|
|
186
|
-
data-tit="新增"
|
|
187
188
|
onclick={() => {
|
|
188
189
|
this.openEditItemDialog('', row);
|
|
189
190
|
}}
|
|
190
191
|
>
|
|
191
|
-
<el-tooltip enterable={false} effect="dark" content=
|
|
192
|
+
<el-tooltip enterable={false} effect="dark" content={this.$t1('新增凭证查询目录')} placement="top"
|
|
192
193
|
popper-class="tooltip-skin">
|
|
193
194
|
<div>
|
|
194
195
|
<i class="el-icon-circle-plus-outline"/>
|
|
195
|
-
<span
|
|
196
|
+
<span>{this.$t1('新增凭证查询目录')}</span>
|
|
196
197
|
</div>
|
|
197
198
|
</el-tooltip>
|
|
198
199
|
</a>
|
|
@@ -203,7 +204,7 @@ export default {
|
|
|
203
204
|
this.openEditDialog(row.id);
|
|
204
205
|
}}
|
|
205
206
|
>
|
|
206
|
-
<el-tooltip enterable={false} effect="dark" content={
|
|
207
|
+
<el-tooltip enterable={false} effect="dark" content={this.$t1('查看')} placement="top"
|
|
207
208
|
popper-class="tooltip-skin">
|
|
208
209
|
<i class="el-icon-edit"/>
|
|
209
210
|
</el-tooltip>
|
|
@@ -231,7 +232,7 @@ export default {
|
|
|
231
232
|
columns: [
|
|
232
233
|
{type: 'checkbox', width: 48, resizable: false, fixed: 'left'},
|
|
233
234
|
{
|
|
234
|
-
title: '查询目录名称',
|
|
235
|
+
title: this.$t1('查询目录名称'),
|
|
235
236
|
field: 'itemName',
|
|
236
237
|
width: 250,
|
|
237
238
|
fixed: 'left',
|
|
@@ -242,7 +243,7 @@ export default {
|
|
|
242
243
|
}
|
|
243
244
|
},
|
|
244
245
|
{
|
|
245
|
-
title: '查询目录编码',
|
|
246
|
+
title: this.$t1('查询目录编码'),
|
|
246
247
|
field: 'itemCode',
|
|
247
248
|
width: 150,
|
|
248
249
|
slots: {
|
|
@@ -252,12 +253,12 @@ export default {
|
|
|
252
253
|
}
|
|
253
254
|
},
|
|
254
255
|
{
|
|
255
|
-
title: '查询区编码',
|
|
256
|
+
title: this.$t1('查询区编码'),
|
|
256
257
|
field: 'viewAreaCode',
|
|
257
258
|
width: 150
|
|
258
259
|
},
|
|
259
260
|
{
|
|
260
|
-
title: '查询服务名',
|
|
261
|
+
title: this.$t1('查询服务名'),
|
|
261
262
|
field: 'serviceId',
|
|
262
263
|
width: 150
|
|
263
264
|
},
|
|
@@ -286,7 +287,7 @@ export default {
|
|
|
286
287
|
this.openEditItemDialog(row.id);
|
|
287
288
|
}}
|
|
288
289
|
>
|
|
289
|
-
<el-tooltip enterable={false} effect="dark" content={
|
|
290
|
+
<el-tooltip enterable={false} effect="dark" content={this.$t1('查看')} placement="top"
|
|
290
291
|
popper-class="tooltip-skin">
|
|
291
292
|
<i class="el-icon-edit"/>
|
|
292
293
|
</el-tooltip>
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
<div class="tree-box tree-annex fl">
|
|
5
5
|
<div class="tit"><b>{{ title }}</b></div>
|
|
6
6
|
<div class="tree-form">
|
|
7
|
-
<el-input placeholder="请输入查询区名称" v-model="filterText" class="txt">
|
|
7
|
+
<el-input :placeholder="$t1('请输入查询区名称')" v-model="filterText" class="txt">
|
|
8
8
|
<el-button slot="append" icon="el-icon-search"></el-button>
|
|
9
9
|
</el-input>
|
|
10
10
|
</div>
|
|
@@ -38,15 +38,16 @@
|
|
|
38
38
|
</label>
|
|
39
39
|
<div class="main-right file-library fr" style="overflow: hidden;">
|
|
40
40
|
<div class="annex-screen">
|
|
41
|
-
<el-button type="primary" class="button-sty" icon="el-icon-download" @click.native="mulDownload2"
|
|
41
|
+
<el-button type="primary" class="button-sty" icon="el-icon-download" @click.native="mulDownload2">
|
|
42
|
+
{{ $t1('下载') }}
|
|
42
43
|
</el-button>
|
|
43
44
|
</div>
|
|
44
45
|
<div class="line"></div>
|
|
45
46
|
<div class="annex-crumbs">
|
|
46
|
-
<span class="tit"><i class="iconfont icon-wenjianjia"></i
|
|
47
|
+
<span class="tit"><i class="iconfont icon-wenjianjia"></i>{{ $t1('文件区') }}</span>
|
|
47
48
|
<el-breadcrumb separator-class="el-icon-arrow-right">
|
|
48
49
|
<el-breadcrumb-item v-for="(treeNode,index) in treeNodeArr" :key="index" @click.native="doNav(treeNode)">{{
|
|
49
|
-
|
|
50
|
+
treeNode.label
|
|
50
51
|
}}
|
|
51
52
|
</el-breadcrumb-item>
|
|
52
53
|
</el-breadcrumb>
|
|
@@ -56,13 +57,13 @@
|
|
|
56
57
|
<div class="fl">
|
|
57
58
|
<div class="oper">
|
|
58
59
|
<el-checkbox v-model="checkAll" @change="changeCheckAll" :disabled="checkAllDisabled"
|
|
59
|
-
:indeterminate="checkAllIndeterminate"
|
|
60
|
-
|
|
61
|
-
}} 项
|
|
60
|
+
:indeterminate="checkAllIndeterminate">{{ $t1('已选中') }} {{
|
|
61
|
+
checkList.length
|
|
62
|
+
}} {{ $t1('项') }}
|
|
62
63
|
</el-checkbox>
|
|
63
64
|
</div>
|
|
64
65
|
<div class="search-box">
|
|
65
|
-
<el-input placeholder="请输入文件名" v-model="formData.name" clearable>
|
|
66
|
+
<el-input :placeholder="$t1('请输入文件名')" v-model="formData.name" clearable>
|
|
66
67
|
<el-button slot="append" icon="el-icon-search" @click="searchEvent"></el-button>
|
|
67
68
|
</el-input>
|
|
68
69
|
</div>
|
|
@@ -71,11 +72,11 @@
|
|
|
71
72
|
|
|
72
73
|
<el-button type="primary" icon="iconfont icon-icmenu2" @click="changeShowType()"
|
|
73
74
|
class="button-sty icon-btn"
|
|
74
|
-
v-show="showType==1"
|
|
75
|
+
v-show="showType==1">{{ $t1('列表') }}
|
|
75
76
|
</el-button>
|
|
76
77
|
<el-button type="primary" style="margin-left:0;" icon="el-icon-menu" @click="changeShowType()"
|
|
77
78
|
class="button-sty icon-btn"
|
|
78
|
-
v-show="showType==2"
|
|
79
|
+
v-show="showType==2">{{ $t1('图示') }}
|
|
79
80
|
</el-button>
|
|
80
81
|
</div>
|
|
81
82
|
|
|
@@ -88,12 +89,12 @@
|
|
|
88
89
|
<li :key="attachment.id" class="item" :class="checkList.includes(attachment.id) ? 'on':''">
|
|
89
90
|
<el-checkbox :label="attachment.id"><span></span></el-checkbox>
|
|
90
91
|
<div class="oper">
|
|
91
|
-
<el-tooltip effect="dark" content="详情" placement="top"><i
|
|
92
|
+
<el-tooltip effect="dark" :content="$t1('详情')" placement="top"><i
|
|
92
93
|
class="el-tooltip iconfont icon-shuxing ico"
|
|
93
94
|
@click="openPropertiesDialog(attachment)"></i>
|
|
94
95
|
</el-tooltip>
|
|
95
96
|
<a href="javascript:void(0);" class="a-link ico" v-if="attachment.billUrl">
|
|
96
|
-
<el-tooltip effect="dark" content="查看单据" placement="top"><i
|
|
97
|
+
<el-tooltip effect="dark" :content="$t1('查看单据')" placement="top"><i
|
|
97
98
|
class="el-icon-files"
|
|
98
99
|
@click="openWfDialog(attachment)"></i>
|
|
99
100
|
</el-tooltip>
|
|
@@ -104,7 +105,7 @@
|
|
|
104
105
|
v-if="!attachment.dirs"
|
|
105
106
|
@click="$commonFileUtil.downloadFile(attachment.domain + attachment.url, attachment.name)"
|
|
106
107
|
>
|
|
107
|
-
<el-tooltip effect="dark" content="下载" placement="top"
|
|
108
|
+
<el-tooltip effect="dark" :content="$t1('下载')" placement="top"
|
|
108
109
|
popper-class="tooltip-skin">
|
|
109
110
|
<i class="el-icon-download"/>
|
|
110
111
|
</el-tooltip>
|
|
@@ -147,7 +148,7 @@
|
|
|
147
148
|
>
|
|
148
149
|
<template #right>
|
|
149
150
|
<span>
|
|
150
|
-
<span
|
|
151
|
+
<span>{{ $t1('当前记录') }}</span>
|
|
151
152
|
<span class="f-red"> {{ page.records.length }} </span>
|
|
152
153
|
<span>/</span>
|
|
153
154
|
<span class="f-red"> {{ page.total }}</span>
|
|
@@ -174,7 +175,7 @@
|
|
|
174
175
|
>
|
|
175
176
|
<template #right>
|
|
176
177
|
<span>
|
|
177
|
-
<span
|
|
178
|
+
<span>{{ $t1('当前记录') }}</span>
|
|
178
179
|
<span class="f-red"> {{ page.records.length }} </span>
|
|
179
180
|
<span>/</span>
|
|
180
181
|
<span class="f-red"> {{ page.total }}</span>
|
|
@@ -192,7 +193,7 @@
|
|
|
192
193
|
:editAttachment.sync="editAttachment" :isEdit="isEdit"
|
|
193
194
|
:treeNodeArr.sync="treeNodeArr"></propertiesDialog>
|
|
194
195
|
<el-dialog
|
|
195
|
-
title="查看单据"
|
|
196
|
+
:title="$t1('查看单据')"
|
|
196
197
|
:append-to-body="true"
|
|
197
198
|
:modal-append-to-body="true"
|
|
198
199
|
:close-on-click-modal="false"
|
|
@@ -485,7 +486,7 @@ export default {
|
|
|
485
486
|
columns: [
|
|
486
487
|
{type: 'checkbox', width: 48, resizable: false, fixed: 'left'},
|
|
487
488
|
{
|
|
488
|
-
title: '文件名称',
|
|
489
|
+
title: this.$t1('文件名称'),
|
|
489
490
|
field: 'name',
|
|
490
491
|
width: 250,
|
|
491
492
|
fixed: 'left',
|
|
@@ -508,7 +509,7 @@ export default {
|
|
|
508
509
|
props: {
|
|
509
510
|
enterable: false,
|
|
510
511
|
effect: "dark",
|
|
511
|
-
content:
|
|
512
|
+
content: this.$t1('展示图'),
|
|
512
513
|
placement: "top",
|
|
513
514
|
"popper-class": "tooltip-skin"
|
|
514
515
|
}
|
|
@@ -548,7 +549,7 @@ export default {
|
|
|
548
549
|
}
|
|
549
550
|
},
|
|
550
551
|
{
|
|
551
|
-
title: '文件大小',
|
|
552
|
+
title: this.$t1('文件大小'),
|
|
552
553
|
field: 'fileSize',
|
|
553
554
|
width: 150,
|
|
554
555
|
slots: {
|
|
@@ -559,9 +560,9 @@ export default {
|
|
|
559
560
|
}
|
|
560
561
|
}
|
|
561
562
|
},
|
|
562
|
-
{title: '文件说明', field: 'note', width: 250},
|
|
563
|
-
{title: '单号', field: 'billSn', width: 250},
|
|
564
|
-
{title: '单据说明', field: 'billInfo', width: 250},
|
|
563
|
+
{title: this.$t1('文件说明'), field: 'note', width: 250},
|
|
564
|
+
{title: this.$t1('单号'), field: 'billSn', width: 250},
|
|
565
|
+
{title: this.$t1('单据说明'), field: 'billInfo', width: 250},
|
|
565
566
|
{title: this.$t1('创建人'), field: 'createBy', width: 150},
|
|
566
567
|
{
|
|
567
568
|
field: 'createDate',
|
|
@@ -578,14 +579,14 @@ export default {
|
|
|
578
579
|
return [
|
|
579
580
|
this.getBtnVnode({
|
|
580
581
|
class: "iconfont icon-shuxing",
|
|
581
|
-
title:
|
|
582
|
+
title: this.$t1('详情'),
|
|
582
583
|
click: (event) => {
|
|
583
584
|
this.openPropertiesDialog(row);
|
|
584
585
|
}
|
|
585
586
|
}),
|
|
586
587
|
this.getBtnVnode({
|
|
587
588
|
class: "el-icon-files",
|
|
588
|
-
title:
|
|
589
|
+
title: this.$t1('查看单据'),
|
|
589
590
|
show: row.billUrl != null,
|
|
590
591
|
click: (event) => {
|
|
591
592
|
this.openWfDialog(row)
|
|
@@ -593,7 +594,7 @@ export default {
|
|
|
593
594
|
}),
|
|
594
595
|
this.getBtnVnode({
|
|
595
596
|
class: "el-icon-download",
|
|
596
|
-
title:
|
|
597
|
+
title: this.$t1('下载'),
|
|
597
598
|
click: (event) => {
|
|
598
599
|
this.$commonFileUtil.downloadFile(row.domain + row.url, row.name);
|
|
599
600
|
}
|
|
@@ -725,7 +726,7 @@ export default {
|
|
|
725
726
|
let checkRows = this.getCheckRows();
|
|
726
727
|
if (!checkRows.length) {
|
|
727
728
|
this.$message({
|
|
728
|
-
message: '请选择需要下载的文件',
|
|
729
|
+
message: this.$t1('请选择需要下载的文件'),
|
|
729
730
|
type: 'error',
|
|
730
731
|
showClose: true,
|
|
731
732
|
duration: 3000,
|
|
@@ -740,7 +741,7 @@ export default {
|
|
|
740
741
|
let checkRows = this.getCheckRows();
|
|
741
742
|
if (!checkRows.length) {
|
|
742
743
|
this.$message({
|
|
743
|
-
message: '请选择需要下载的文件',
|
|
744
|
+
message: this.$t1('请选择需要下载的文件'),
|
|
744
745
|
type: 'error',
|
|
745
746
|
showClose: true,
|
|
746
747
|
duration: 3000,
|
|
@@ -824,7 +825,7 @@ export default {
|
|
|
824
825
|
this.treeFlag = true;
|
|
825
826
|
});
|
|
826
827
|
} else {
|
|
827
|
-
this.$baseAlert(
|
|
828
|
+
this.$baseAlert(this.$t1('凭证查询区未维护'));
|
|
828
829
|
}
|
|
829
830
|
}
|
|
830
831
|
});
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<el-dialog
|
|
3
|
-
title="文件详情"
|
|
3
|
+
:title="$t1('文件详情')"
|
|
4
4
|
:append-to-body="true"
|
|
5
5
|
:modal-append-to-body="falseValue"
|
|
6
6
|
:close-on-click-modal="falseValue"
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
<div class="d-header clearfix">
|
|
20
20
|
<div class="fl">
|
|
21
21
|
<i class="el-icon-info"/>
|
|
22
|
-
文件详情
|
|
22
|
+
{{ $t1('文件详情') }}
|
|
23
23
|
</div>
|
|
24
24
|
<div class="fr"></div>
|
|
25
25
|
</div>
|
|
@@ -29,11 +29,11 @@
|
|
|
29
29
|
<table class="table-detail">
|
|
30
30
|
<tbody>
|
|
31
31
|
<tr>
|
|
32
|
-
<th
|
|
32
|
+
<th>{{ $t1('文件路径') }}</th>
|
|
33
33
|
<td colspan="3">
|
|
34
34
|
<el-breadcrumb separator-class="el-icon-arrow-right">
|
|
35
35
|
<el-breadcrumb-item v-for="(treeNode,index) in treeNodeArr" :key="index">{{
|
|
36
|
-
|
|
36
|
+
treeNode.label
|
|
37
37
|
}}
|
|
38
38
|
</el-breadcrumb-item>
|
|
39
39
|
</el-breadcrumb>
|
|
@@ -41,25 +41,25 @@
|
|
|
41
41
|
</tr>
|
|
42
42
|
<tr>
|
|
43
43
|
<th>
|
|
44
|
-
文件名称
|
|
44
|
+
{{ $t1('文件名称') }}
|
|
45
45
|
</th>
|
|
46
46
|
<td colspan="3">{{ attachmentDTO.name }}</td>
|
|
47
47
|
</tr>
|
|
48
48
|
<tr>
|
|
49
|
-
<th
|
|
50
|
-
<td colspan="3">{{attachmentDTO.note}}</td>
|
|
49
|
+
<th>{{ $t1('文件说明') }}</th>
|
|
50
|
+
<td colspan="3">{{ attachmentDTO.note }}</td>
|
|
51
51
|
</tr>
|
|
52
52
|
<tr>
|
|
53
|
-
<th
|
|
53
|
+
<th>{{ $t1('文件大小') }}</th>
|
|
54
54
|
<td>{{ formatFileSize(attachmentDTO.fileSize) }}</td>
|
|
55
55
|
</tr>
|
|
56
56
|
<tr>
|
|
57
|
-
<th
|
|
57
|
+
<th>{{ $t1('单号') }}</th>
|
|
58
58
|
<td>{{ attachmentDTO.billSn }}</td>
|
|
59
59
|
</tr>
|
|
60
60
|
<tr>
|
|
61
|
-
<th
|
|
62
|
-
<td colspan="3">{{attachmentDTO.billInfo}}</td>
|
|
61
|
+
<th>{{ $t1('单据说明') }}</th>
|
|
62
|
+
<td colspan="3">{{ attachmentDTO.billInfo }}</td>
|
|
63
63
|
</tr>
|
|
64
64
|
<tr>
|
|
65
65
|
<th>{{ $t1('创建人') }}</th>
|
|
@@ -71,7 +71,7 @@
|
|
|
71
71
|
</table>
|
|
72
72
|
</template>
|
|
73
73
|
</baseTabPane>
|
|
74
|
-
<baseTabPane label="文件属性">
|
|
74
|
+
<baseTabPane :label="$t1('文件属性')">
|
|
75
75
|
<template #default>
|
|
76
76
|
<vxe-grid
|
|
77
77
|
ref="table-m1"
|
|
@@ -119,7 +119,7 @@ export default {
|
|
|
119
119
|
computed: {
|
|
120
120
|
pathNameArr() {
|
|
121
121
|
if (this.attachmentDTO.treePathName) {
|
|
122
|
-
return ('全部文件' + this.attachmentDTO.treePathName.slice(0, -1)).split(',');
|
|
122
|
+
return (this.$t1('全部文件') + this.attachmentDTO.treePathName.slice(0, -1)).split(',');
|
|
123
123
|
}
|
|
124
124
|
}
|
|
125
125
|
},
|
|
@@ -174,12 +174,12 @@ export default {
|
|
|
174
174
|
resizable: false
|
|
175
175
|
},
|
|
176
176
|
{
|
|
177
|
-
title: '属性名称',
|
|
177
|
+
title: this.$t1('属性名称'),
|
|
178
178
|
field: 'attributeName',
|
|
179
179
|
width: 200
|
|
180
180
|
},
|
|
181
181
|
{
|
|
182
|
-
title: '属性值',
|
|
182
|
+
title: this.$t1('属性值'),
|
|
183
183
|
field: 'attributeValue',
|
|
184
184
|
width: 200
|
|
185
185
|
},
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
<div class="d-header clearfix">
|
|
5
5
|
<div class="fl">
|
|
6
6
|
<i class="el-icon-info"/>
|
|
7
|
-
{{ dataId ? $t1('
|
|
7
|
+
{{ dataId ? $t1('查看表单模板') : $t1('新增表单模板') }}
|
|
8
8
|
</div>
|
|
9
9
|
<div class="fr">
|
|
10
10
|
<el-button type="primary" plain class="button-sty" @click="$baseReload()" icon="el-icon-refresh-right">{{$t1('重置')}}
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
<div class="d-header clearfix">
|
|
5
5
|
<div class="fl">
|
|
6
6
|
<i class="el-icon-info"/>
|
|
7
|
-
{{ dataId ? $t1('
|
|
7
|
+
{{ dataId ? $t1('查看流程模版') : $t1('新增流程模版') }}
|
|
8
8
|
</div>
|
|
9
9
|
<div class="fr">
|
|
10
10
|
<el-button type="primary" plain class="button-sty" @click="$baseReload()" icon="el-icon-refresh-right">{{$t1('重置')}}
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
<template #form>
|
|
13
13
|
<div class="clearfix screen-btns">
|
|
14
14
|
<div class="fl">
|
|
15
|
-
<vxe-button status="primary" class="button-sty" icon="el-icon-plus" @click="openEditDialog"
|
|
15
|
+
<vxe-button status="primary" class="button-sty" icon="el-icon-plus" @click="openEditDialog">{{ $t1('新增') }}
|
|
16
16
|
</vxe-button>
|
|
17
17
|
<div class="txt-name el-icon-house">
|
|
18
18
|
表单模板名称:
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
<vxe-button icon="el-icon-brush" class="button-sty" @click="resetEvent" type="text" status="primary"
|
|
24
24
|
plain>{{$t1('重置')}}
|
|
25
25
|
</vxe-button>
|
|
26
|
-
<vxe-button status="warning" icon="el-icon-search" class="button-sty" @click="searchEvent"
|
|
26
|
+
<vxe-button status="warning" icon="el-icon-search" class="button-sty" @click="searchEvent">{{ $t1('搜索') }}
|
|
27
27
|
</vxe-button>
|
|
28
28
|
</div>
|
|
29
29
|
</div>
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
<div class="tree-box fl">
|
|
10
10
|
<div class="tit" @click="clearNodeClick"><b>表单类型</b></div>
|
|
11
11
|
<div class="tree-btns" style="margin-top: 10px;">
|
|
12
|
-
<el-button type="primary" plain icon="el-icon-circle-plus-outline" class="btn" @click="addFormType()"
|
|
12
|
+
<el-button type="primary" plain icon="el-icon-circle-plus-outline" class="btn" @click="addFormType()">{{ $t1('新增') }}
|
|
13
13
|
</el-button>
|
|
14
14
|
<el-button type="primary" plain icon="el-icon-edit-outline" class="btn" @click="editFormType()"
|
|
15
15
|
:disabled="!currentFormType">编辑
|
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
<template #form>
|
|
46
46
|
<div class="clearfix screen-btns">
|
|
47
47
|
<div class="fl">
|
|
48
|
-
<vxe-button status="primary" class="button-sty" icon="el-icon-plus" @click="openEditDialog"
|
|
48
|
+
<vxe-button status="primary" class="button-sty" icon="el-icon-plus" @click="openEditDialog">{{ $t1('新增') }}
|
|
49
49
|
</vxe-button>
|
|
50
50
|
<base-table-export :option="{ title: '报表模板导出', targetRef: 'table-m1'}"
|
|
51
51
|
:parent-target="_self"/>
|
|
@@ -55,7 +55,7 @@
|
|
|
55
55
|
<vxe-button icon="el-icon-brush" class="button-sty" @click="resetEvent" type="text" status="primary"
|
|
56
56
|
plain>{{$t1('重置')}}
|
|
57
57
|
</vxe-button>
|
|
58
|
-
<vxe-button status="warning" icon="el-icon-search" class="button-sty" @click="searchEvent"
|
|
58
|
+
<vxe-button status="warning" icon="el-icon-search" class="button-sty" @click="searchEvent">{{ $t1('搜索') }}
|
|
59
59
|
</vxe-button>
|
|
60
60
|
</div>
|
|
61
61
|
</div>
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
<div class="d-header clearfix">
|
|
5
5
|
<div class="fl">
|
|
6
6
|
<i class="el-icon-info"/>
|
|
7
|
-
{{ dataId ? $t1('
|
|
7
|
+
{{ dataId ? $t1('查看表单类型') : $t1('新增表单类型') }}
|
|
8
8
|
</div>
|
|
9
9
|
<div class="fr">
|
|
10
10
|
<el-button type="primary" plain class="button-sty" @click="$baseReload()" icon="el-icon-refresh-right">{{$t1('重置')}}
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
<template #form>
|
|
13
13
|
<div class="clearfix screen-btns">
|
|
14
14
|
<div class="fl">
|
|
15
|
-
<vxe-button status="primary" class="button-sty" icon="el-icon-plus" @click="openEditDialog"
|
|
15
|
+
<vxe-button status="primary" class="button-sty" icon="el-icon-plus" @click="openEditDialog">{{ $t1('新增') }}
|
|
16
16
|
</vxe-button>
|
|
17
17
|
<base-table-export :option="{ title: '表单类型导出', targetRef: 'table-m1'}" :parent-target="_self"/>
|
|
18
18
|
</div>
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
<div class="d-header clearfix">
|
|
5
5
|
<div class="fl">
|
|
6
6
|
<i class="el-icon-info"/>
|
|
7
|
-
{{ dataId ? $t1('
|
|
7
|
+
{{ dataId ? $t1('查看请求访问') : $t1('新增请求访问') }}
|
|
8
8
|
</div>
|
|
9
9
|
<div class="fr">
|
|
10
10
|
<el-button type="primary" plain class="button-sty" @click="$baseReload()" icon="el-icon-refresh-right">
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
<template #form>
|
|
13
13
|
<div class="clearfix screen-btns">
|
|
14
14
|
<div class="fl">
|
|
15
|
-
<vxe-button status="primary" class="button-sty" icon="el-icon-plus" @click="openEditDialog"
|
|
15
|
+
<vxe-button status="primary" class="button-sty" icon="el-icon-plus" @click="openEditDialog">{{ $t1('新增') }}
|
|
16
16
|
</vxe-button>
|
|
17
17
|
<base-table-export :option="{ title: '报表请求访问导出', targetRef: 'table-m1'}"
|
|
18
18
|
:parent-target="_self"/>
|
|
@@ -87,6 +87,7 @@ export default {
|
|
|
87
87
|
/* this.showDesinger = true;
|
|
88
88
|
return */
|
|
89
89
|
this.$http({
|
|
90
|
+
aes: true,
|
|
90
91
|
url: USER_PREFIX + `/formTemplate/getByFormCode`,
|
|
91
92
|
method: `post`,
|
|
92
93
|
data: {
|
|
@@ -721,6 +722,7 @@ export default {
|
|
|
721
722
|
},
|
|
722
723
|
initField() {
|
|
723
724
|
this.$http({
|
|
725
|
+
aes: true,
|
|
724
726
|
url: USER_PREFIX + "/szTaMb/listPage",
|
|
725
727
|
data: {},
|
|
726
728
|
success: res => {
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
</template>
|
|
19
19
|
<template v-else-if="layoutType=='H5'">
|
|
20
20
|
<el-dialog
|
|
21
|
-
title="明细详情"
|
|
21
|
+
:title="$t1('明细详情')"
|
|
22
22
|
:modal-append-to-body="false"
|
|
23
23
|
:close-on-click-modal="false"
|
|
24
24
|
:visible.sync="showEditDialog"
|
|
@@ -86,6 +86,7 @@ export default {
|
|
|
86
86
|
},
|
|
87
87
|
getReportTemplate() {
|
|
88
88
|
this.$http({
|
|
89
|
+
aes: true,
|
|
89
90
|
url: USER_PREFIX + `/formTemplate/getByFormCode`,
|
|
90
91
|
method: `post`,
|
|
91
92
|
data: {stringOne: this.formCode},
|