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
|
@@ -4,12 +4,14 @@
|
|
|
4
4
|
<div class="d-header clearfix">
|
|
5
5
|
<div class="fl">
|
|
6
6
|
<i class="el-icon-info"/>
|
|
7
|
-
查看组织信息
|
|
7
|
+
{{ $t1('查看组织信息') }}
|
|
8
8
|
</div>
|
|
9
9
|
<div class="fr">
|
|
10
|
-
<el-button type="primary" plain class="button-sty" @click="$baseReload()" icon="el-icon-refresh-right">
|
|
10
|
+
<el-button type="primary" plain class="button-sty" @click="$baseReload()" icon="el-icon-refresh-right">
|
|
11
|
+
{{ $t1('重置') }}
|
|
12
|
+
</el-button>
|
|
13
|
+
<el-button type="primary" class="button-sty" icon="el-icon-check" @click="saveData">{{ $t1('保存') }}
|
|
11
14
|
</el-button>
|
|
12
|
-
<el-button type="primary" class="button-sty" icon="el-icon-check" @click="saveData">{{$t1('保存')}}</el-button>
|
|
13
15
|
</div>
|
|
14
16
|
</div>
|
|
15
17
|
<div class="d-cont">
|
|
@@ -20,7 +22,7 @@
|
|
|
20
22
|
<tr>
|
|
21
23
|
<th>
|
|
22
24
|
<em class="f-red">*</em>
|
|
23
|
-
组织全称
|
|
25
|
+
{{ $t1('组织全称') }}
|
|
24
26
|
</th>
|
|
25
27
|
<td>
|
|
26
28
|
<el-form-item prop="companyName" :rules="[{ required: true, trigger: 'blur' }]">
|
|
@@ -29,7 +31,7 @@
|
|
|
29
31
|
</td>
|
|
30
32
|
<th>
|
|
31
33
|
<em class="f-red">*</em>
|
|
32
|
-
组织简称
|
|
34
|
+
{{ $t1('组织简称') }}
|
|
33
35
|
</th>
|
|
34
36
|
<td>
|
|
35
37
|
<el-form-item prop="simpleName" :rules="[{ required: true, trigger: 'blur' }]">
|
|
@@ -38,21 +40,22 @@
|
|
|
38
40
|
</td>
|
|
39
41
|
<th>
|
|
40
42
|
<em class="f-red">*</em>
|
|
41
|
-
组织编码
|
|
43
|
+
{{ $t1('组织编码') }}
|
|
42
44
|
</th>
|
|
43
45
|
<td>{{ companyInfo.companyCode }}</td>
|
|
44
46
|
</tr>
|
|
45
47
|
<tr>
|
|
46
48
|
<th>
|
|
47
49
|
<em class="f-red">*</em>
|
|
48
|
-
组织唯一标志
|
|
50
|
+
{{ $t1('组织唯一标志') }}
|
|
49
51
|
</th>
|
|
50
52
|
<td colspan="5">{{ companyInfo.uniqueIdentify }}</td>
|
|
51
53
|
</tr>
|
|
52
54
|
<tr>
|
|
53
55
|
<th>{{ $t1('备注') }}</th>
|
|
54
56
|
<td colspan="5">
|
|
55
|
-
<el-input type="textarea" :rows="2" :placeholder="$t1('请输入内容')" size="small"
|
|
57
|
+
<el-input type="textarea" :rows="2" :placeholder="$t1('请输入内容')" size="small"
|
|
58
|
+
v-model="companyInfo.note"
|
|
56
59
|
clearable></el-input>
|
|
57
60
|
</td>
|
|
58
61
|
</tr>
|
|
@@ -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="true"
|
|
6
6
|
:close-on-click-modal="falseValue"
|
|
@@ -27,25 +27,27 @@
|
|
|
27
27
|
<div class="clearfix screen-btns">
|
|
28
28
|
<div class="fr">
|
|
29
29
|
<vxe-button icon="el-icon-brush" class="button-sty" @click="resetEvent" type="text" status="primary"
|
|
30
|
-
plain>{{$t1('重置')}}
|
|
30
|
+
plain>{{ $t1('重置') }}
|
|
31
31
|
</vxe-button>
|
|
32
|
-
<vxe-button status="warning" icon="el-icon-search" class="button-sty" @click="searchEvent"
|
|
32
|
+
<vxe-button status="warning" icon="el-icon-search" class="button-sty" @click="searchEvent">{{
|
|
33
|
+
$t1('搜索')
|
|
34
|
+
}}
|
|
33
35
|
</vxe-button>
|
|
34
36
|
</div>
|
|
35
37
|
</div>
|
|
36
38
|
<vxe-form class="screen-box" title-width="92px" title-align="right" :data="formData" @submit="searchEvent"
|
|
37
39
|
@reset="resetEvent">
|
|
38
|
-
<vxe-form-item title="
|
|
40
|
+
<vxe-form-item :title="$t1('国家名称')+':'" field="countryName">
|
|
39
41
|
<template v-slot>
|
|
40
42
|
<el-input v-model="formData.countryName" size="small" clearable/>
|
|
41
43
|
</template>
|
|
42
44
|
</vxe-form-item>
|
|
43
|
-
<vxe-form-item title="
|
|
45
|
+
<vxe-form-item :title="$t1('国家简称')+':'" field="simpleName">
|
|
44
46
|
<template v-slot>
|
|
45
47
|
<el-input v-model="formData.simpleName" size="small" clearable/>
|
|
46
48
|
</template>
|
|
47
49
|
</vxe-form-item>
|
|
48
|
-
<vxe-form-item title="
|
|
50
|
+
<vxe-form-item :title="$t1('国家编码')+':'" field="countryCode">
|
|
49
51
|
<template v-slot>
|
|
50
52
|
<el-input v-model="formData.countryCode" size="small" clearable/>
|
|
51
53
|
</template>
|
|
@@ -126,19 +128,19 @@ export default {
|
|
|
126
128
|
columns: [
|
|
127
129
|
{type: 'checkbox', fixed: 'left', width: 48, resizable: false},
|
|
128
130
|
{
|
|
129
|
-
title: '国家名称',
|
|
131
|
+
title: this.$t1('国家名称'),
|
|
130
132
|
field: 'countryName',
|
|
131
133
|
width: 250,
|
|
132
134
|
fixed: 'left'
|
|
133
135
|
},
|
|
134
136
|
{
|
|
135
137
|
field: 'simpleName',
|
|
136
|
-
title: '国家简称',
|
|
138
|
+
title: this.$t1('国家简称'),
|
|
137
139
|
width: 150
|
|
138
140
|
},
|
|
139
141
|
{
|
|
140
142
|
field: 'countryCode',
|
|
141
|
-
title: '国家编码',
|
|
143
|
+
title: this.$t1('国家编码'),
|
|
142
144
|
width: 150
|
|
143
145
|
},
|
|
144
146
|
{
|
|
@@ -4,12 +4,14 @@
|
|
|
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
|
-
<el-button type="primary" plain class="button-sty" @click="$baseReload()" icon="el-icon-refresh-right">
|
|
10
|
+
<el-button type="primary" plain class="button-sty" @click="$baseReload()" icon="el-icon-refresh-right">
|
|
11
|
+
{{ $t1('重置') }}
|
|
12
|
+
</el-button>
|
|
13
|
+
<el-button type="primary" class="button-sty" icon="el-icon-check" @click="saveData">{{ $t1('保存') }}
|
|
11
14
|
</el-button>
|
|
12
|
-
<el-button type="primary" class="button-sty" icon="el-icon-check" @click="saveData">{{$t1('保存')}}</el-button>
|
|
13
15
|
</div>
|
|
14
16
|
</div>
|
|
15
17
|
<div class="d-cont">
|
|
@@ -20,7 +22,7 @@
|
|
|
20
22
|
<tr>
|
|
21
23
|
<th>
|
|
22
24
|
<em class="f-red">*</em>
|
|
23
|
-
国家名称
|
|
25
|
+
{{ $t1('国家名称') }}
|
|
24
26
|
</th>
|
|
25
27
|
<td colspan="3">
|
|
26
28
|
<el-form-item prop="countryName" :rules="[{ required: true, trigger: 'blur' }]">
|
|
@@ -29,7 +31,7 @@
|
|
|
29
31
|
</td>
|
|
30
32
|
<th>
|
|
31
33
|
<em class="f-red">*</em>
|
|
32
|
-
国家简称
|
|
34
|
+
{{ $t1('国家简称') }}
|
|
33
35
|
</th>
|
|
34
36
|
<td colspan="3">
|
|
35
37
|
<el-form-item prop="simpleName" :rules="[{ required: true, trigger: 'blur' }]">
|
|
@@ -40,22 +42,23 @@
|
|
|
40
42
|
<tr>
|
|
41
43
|
<th>
|
|
42
44
|
<em class="f-red">*</em>
|
|
43
|
-
国家编码
|
|
45
|
+
{{ $t1('国家编码') }}
|
|
44
46
|
</th>
|
|
45
47
|
<td colspan="3">
|
|
46
48
|
<el-form-item prop="countryCode" :rules="[{ required: true, trigger: 'blur' }]">
|
|
47
49
|
<el-input type="text" autocomplete="off" v-model="country.countryCode" clearable/>
|
|
48
50
|
</el-form-item>
|
|
49
51
|
</td>
|
|
50
|
-
<th
|
|
52
|
+
<th>{{ $t1('设置') }}</th>
|
|
51
53
|
<td>
|
|
52
|
-
<el-checkbox label="是否启用" v-model="country.enabled"></el-checkbox>
|
|
54
|
+
<el-checkbox :label="$t1('是否启用')" v-model="country.enabled"></el-checkbox>
|
|
53
55
|
</td>
|
|
54
56
|
</tr>
|
|
55
57
|
<tr>
|
|
56
58
|
<th>{{ $t1('备注') }}</th>
|
|
57
59
|
<td colspan="5">
|
|
58
|
-
<el-input type="textarea" :rows="2" :placeholder="$t1('请输入内容')" size="small"
|
|
60
|
+
<el-input type="textarea" :rows="2" :placeholder="$t1('请输入内容')" size="small"
|
|
61
|
+
v-model="country.remark"
|
|
59
62
|
clearable></el-input>
|
|
60
63
|
</td>
|
|
61
64
|
</tr>
|
|
@@ -12,10 +12,10 @@
|
|
|
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">
|
|
16
|
+
{{ $t1('新增') }}
|
|
16
17
|
</vxe-button>
|
|
17
|
-
<base-table-export :option="{ title: '国家导出', targetRef: 'table-m1'}" :parent-target="_self"/>
|
|
18
|
-
<!-- <vxe-button status="primary" class="button-sty" icon="el-icon-download" @click="importExcel">导入</vxe-button> -->
|
|
18
|
+
<base-table-export :option="{ title: $t1('国家导出'), targetRef: 'table-m1'}" :parent-target="_self"/>
|
|
19
19
|
</div>
|
|
20
20
|
<div class="fr">
|
|
21
21
|
<vxe-button icon="el-icon-brush" class="button-sty" @click="resetEvent" type="text" status="primary"
|
|
@@ -28,17 +28,17 @@
|
|
|
28
28
|
</div>
|
|
29
29
|
<vxe-form ref="form" class="screen-box" title-width="92px" title-align="right" :data="formData"
|
|
30
30
|
@submit="searchEvent" @reset="searchEvent">
|
|
31
|
-
<vxe-form-item title="
|
|
31
|
+
<vxe-form-item :title="$t1('国家名称')+':'" field="countryName">
|
|
32
32
|
<template v-slot>
|
|
33
33
|
<el-input v-model="formData.countryName" size="small" clearable/>
|
|
34
34
|
</template>
|
|
35
35
|
</vxe-form-item>
|
|
36
|
-
<vxe-form-item title="
|
|
36
|
+
<vxe-form-item :title="$t1('国家简称')+':'" field="simpleName">
|
|
37
37
|
<template v-slot>
|
|
38
38
|
<el-input v-model="formData.simpleName" size="small" clearable/>
|
|
39
39
|
</template>
|
|
40
40
|
</vxe-form-item>
|
|
41
|
-
<vxe-form-item title="
|
|
41
|
+
<vxe-form-item :title="$t1('国家编码')+':'" field="countryCode">
|
|
42
42
|
<template v-slot>
|
|
43
43
|
<el-input v-model="formData.countryCode" size="small" clearable/>
|
|
44
44
|
</template>
|
|
@@ -96,19 +96,19 @@ export default {
|
|
|
96
96
|
columns: [
|
|
97
97
|
{type: 'checkbox', width: 48, resizable: false, fixed: 'left'},
|
|
98
98
|
{
|
|
99
|
-
title: '国家名称',
|
|
99
|
+
title: this.$t1('国家名称'),
|
|
100
100
|
field: 'countryName',
|
|
101
101
|
width: 250,
|
|
102
102
|
fixed: 'left'
|
|
103
103
|
},
|
|
104
104
|
{
|
|
105
105
|
field: 'simpleName',
|
|
106
|
-
title: '国家简称',
|
|
106
|
+
title: this.$t1('国家简称'),
|
|
107
107
|
width: 150
|
|
108
108
|
},
|
|
109
109
|
{
|
|
110
110
|
field: 'countryCode',
|
|
111
|
-
title: '国家编码',
|
|
111
|
+
title: this.$t1('国家编码'),
|
|
112
112
|
width: 150
|
|
113
113
|
},
|
|
114
114
|
{
|
|
@@ -120,13 +120,13 @@ export default {
|
|
|
120
120
|
if (row.enabled) {
|
|
121
121
|
return [
|
|
122
122
|
<div class="txt-status">
|
|
123
|
-
<span
|
|
123
|
+
<span>{this.$t1('启用')}</span>
|
|
124
124
|
</div>
|
|
125
125
|
];
|
|
126
126
|
} else {
|
|
127
127
|
return [
|
|
128
128
|
<div class="txt-status disable">
|
|
129
|
-
<span
|
|
129
|
+
<span>{this.$t1('禁用')}</span>
|
|
130
130
|
</div>
|
|
131
131
|
];
|
|
132
132
|
}
|
|
@@ -164,7 +164,7 @@ export default {
|
|
|
164
164
|
this.openEditDialog(row.id);
|
|
165
165
|
}}
|
|
166
166
|
>
|
|
167
|
-
<el-tooltip enterable={false} effect="dark" content={
|
|
167
|
+
<el-tooltip enterable={false} effect="dark" content={this.$t1('查看')} placement="top"
|
|
168
168
|
popper-class="tooltip-skin">
|
|
169
169
|
<i class="el-icon-edit"/>
|
|
170
170
|
</el-tooltip>
|
|
@@ -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="true"
|
|
6
6
|
:close-on-click-modal="falseValue"
|
|
@@ -27,21 +27,21 @@
|
|
|
27
27
|
<div class="clearfix screen-btns">
|
|
28
28
|
<div class="fr">
|
|
29
29
|
<vxe-button icon="el-icon-brush" class="button-sty" @click="resetEvent" type="text" status="primary"
|
|
30
|
-
plain>{{$t1('重置')}}
|
|
30
|
+
plain>{{ $t1('重置') }}
|
|
31
31
|
</vxe-button>
|
|
32
32
|
<vxe-button status="warning" icon="el-icon-search" class="button-sty" @click="searchEvent">
|
|
33
|
-
{{$t1('搜索')}}
|
|
33
|
+
{{ $t1('搜索') }}
|
|
34
34
|
</vxe-button>
|
|
35
35
|
</div>
|
|
36
36
|
</div>
|
|
37
37
|
<vxe-form class="screen-box" title-width="92px" title-align="right" :data="formData" @submit="searchEvent"
|
|
38
38
|
@reset="resetEvent">
|
|
39
|
-
<vxe-form-item title="
|
|
39
|
+
<vxe-form-item :title="$t1('数据类型名称')+':'" field="dataTypeName">
|
|
40
40
|
<template v-slot>
|
|
41
41
|
<el-input v-model="formData.dataTypeName" size="small" clearable/>
|
|
42
42
|
</template>
|
|
43
43
|
</vxe-form-item>
|
|
44
|
-
<vxe-form-item title="
|
|
44
|
+
<vxe-form-item :title="$t1('数据类型编码')+':'" field="dataTypeCode">
|
|
45
45
|
<template v-slot>
|
|
46
46
|
<el-input v-model="formData.dataTypeCode" size="small" clearable/>
|
|
47
47
|
</template>
|
|
@@ -70,14 +70,14 @@
|
|
|
70
70
|
</div>
|
|
71
71
|
</div>
|
|
72
72
|
<span slot="footer" class="dialog-footer">
|
|
73
|
-
<span class="fl tips" v-if="!selectMulti">{{$t1('注:双击确认选择(单选)')}}</span>
|
|
73
|
+
<span class="fl tips" v-if="!selectMulti">{{ $t1('注:双击确认选择(单选)') }}</span>
|
|
74
74
|
<el-button type="primary" plain class="button-sty" @click="dialogClose">
|
|
75
75
|
<i class="el-icon-close el-icon"></i>
|
|
76
|
-
{{$t1('取 消')}}
|
|
76
|
+
{{ $t1('取 消') }}
|
|
77
77
|
</el-button>
|
|
78
78
|
<el-button type="primary" @click="dialogPrimary" class="button-sty">
|
|
79
79
|
<i class="el-icon-check el-icon"></i>
|
|
80
|
-
{{$t1('确 定')}}
|
|
80
|
+
{{ $t1('确 定') }}
|
|
81
81
|
</el-button>
|
|
82
82
|
</span>
|
|
83
83
|
</el-dialog>
|
|
@@ -124,13 +124,13 @@ export default {
|
|
|
124
124
|
columns: [
|
|
125
125
|
{type: 'checkbox', fixed: 'left', width: 48, resizable: false},
|
|
126
126
|
{
|
|
127
|
-
title: '数据类型编码',
|
|
127
|
+
title: this.$t1('数据类型编码'),
|
|
128
128
|
field: 'dataTypeCode',
|
|
129
129
|
width: 150,
|
|
130
130
|
fixed: 'left'
|
|
131
131
|
},
|
|
132
132
|
{
|
|
133
|
-
title: '数据类型名称',
|
|
133
|
+
title: this.$t1('数据类型名称'),
|
|
134
134
|
field: 'dataTypeName',
|
|
135
135
|
width: 250
|
|
136
136
|
},
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<el-dialog
|
|
3
|
-
:title="dataId
|
|
3
|
+
:title="dataId?$t1('编辑数据类型'):$t1('新增数据类型')"
|
|
4
4
|
:append-to-body="true"
|
|
5
5
|
:modal-append-to-body="true"
|
|
6
6
|
:close-on-click-modal="false"
|
|
@@ -15,10 +15,10 @@
|
|
|
15
15
|
<div class="cont">
|
|
16
16
|
<el-form ref="editForm" :model="dataType" label-width="110px" class="adSearchForm"
|
|
17
17
|
style="width: 362px;height: auto;">
|
|
18
|
-
<el-form-item label="数据类型编码">
|
|
19
|
-
<span>{{dataType.dataTypeCode}}</span>
|
|
18
|
+
<el-form-item :label="$t1('数据类型编码')">
|
|
19
|
+
<span>{{ dataType.dataTypeCode }}</span>
|
|
20
20
|
</el-form-item>
|
|
21
|
-
<el-form-item label="数据类型名称" :rules="[{ required: true, trigger: 'blur' }]">
|
|
21
|
+
<el-form-item :label="$t1('数据类型名称')" :rules="[{ required: true, trigger: 'blur' }]">
|
|
22
22
|
<el-input v-model="dataType.dataTypeName" clearable class="all-width"/>
|
|
23
23
|
</el-form-item>
|
|
24
24
|
</el-form>
|
|
@@ -26,11 +26,11 @@
|
|
|
26
26
|
<span slot="footer" class="dialog-footer">
|
|
27
27
|
<el-button type="primary" plain class="button-sty" @click="showDialog=false">
|
|
28
28
|
<i class="el-icon-close el-icon"></i>
|
|
29
|
-
{{$t1('取 消')}}
|
|
29
|
+
{{ $t1('取 消') }}
|
|
30
30
|
</el-button>
|
|
31
31
|
<el-button type="primary" @click="saveData" class="button-sty">
|
|
32
32
|
<i class="el-icon-check el-icon"></i>
|
|
33
|
-
{{$t1('确 定')}}
|
|
33
|
+
{{ $t1('确 定') }}
|
|
34
34
|
</el-button>
|
|
35
35
|
</span>
|
|
36
36
|
</el-dialog>
|
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<div id="containt">
|
|
3
3
|
<el-tabs v-model="activeName" class="tab-box">
|
|
4
|
-
<el-tab-pane label="单据对象列表" name="second">
|
|
4
|
+
<el-tab-pane :label="$t1('单据对象列表')" name="second">
|
|
5
5
|
<div class="grid-height">
|
|
6
6
|
<vxe-grid ref="table-m1" v-bind="vxeOption" @resizable-change="$vxeTableUtil.onColumnWitchChange"
|
|
7
7
|
@custom="$vxeTableUtil.customHandle">
|
|
8
8
|
<template #form>
|
|
9
9
|
<div class="clearfix screen-btns">
|
|
10
10
|
<div class="fl">
|
|
11
|
-
<base-table-export :option="{ title: '扩展属性-单据配置导出', targetRef: 'table-m1'}"
|
|
11
|
+
<base-table-export :option="{ title: $t1('扩展属性-单据配置导出'), targetRef: 'table-m1'}"
|
|
12
12
|
:parent-target="_self"/>
|
|
13
13
|
</div>
|
|
14
14
|
<div class="fr">
|
|
@@ -22,12 +22,12 @@
|
|
|
22
22
|
</div>
|
|
23
23
|
<vxe-form ref="form" class="screen-box" title-width="92px" title-align="right" :data="formData"
|
|
24
24
|
@submit="searchEvent" @reset="searchEvent">
|
|
25
|
-
<vxe-form-item title="
|
|
25
|
+
<vxe-form-item :title="$t1('单据对象名称')+':'" field="eaObjName">
|
|
26
26
|
<template v-slot>
|
|
27
27
|
<el-input v-model="formData.eaObjName" size="small" clearable/>
|
|
28
28
|
</template>
|
|
29
29
|
</vxe-form-item>
|
|
30
|
-
<vxe-form-item title="
|
|
30
|
+
<vxe-form-item :title="$t1('单据对象编码')+':'" field="eaObjCode">
|
|
31
31
|
<template v-slot>
|
|
32
32
|
<el-input v-model="formData.eaObjCode" size="small" clearable/>
|
|
33
33
|
</template>
|
|
@@ -37,14 +37,15 @@
|
|
|
37
37
|
</vxe-grid>
|
|
38
38
|
</div>
|
|
39
39
|
</el-tab-pane>
|
|
40
|
-
<el-tab-pane label="单据对象分组配置列表" name="third">
|
|
40
|
+
<el-tab-pane :label="$t1('单据对象分组配置列表')" name="third">
|
|
41
41
|
<div class="grid-height" v-if="showList">
|
|
42
42
|
<vxe-grid ref="table-m2" v-bind="vxeOption2" @resizable-change="$vxeTableUtil.onColumnWitchChange"
|
|
43
43
|
@custom="$vxeTableUtil.customHandle">
|
|
44
44
|
<template #form>
|
|
45
45
|
<div class="clearfix screen-btns">
|
|
46
46
|
<div class="fl">
|
|
47
|
-
<vxe-button status="primary" class="button-sty" icon="el-icon-plus" @click="openEditDialog2"
|
|
47
|
+
<vxe-button status="primary" class="button-sty" icon="el-icon-plus" @click="openEditDialog2">
|
|
48
|
+
{{ $t1('新增') }}
|
|
48
49
|
</vxe-button>
|
|
49
50
|
</div>
|
|
50
51
|
<div class="fr">
|
|
@@ -58,12 +59,12 @@
|
|
|
58
59
|
</div>
|
|
59
60
|
<vxe-form ref="form2" class="screen-box" title-width="92px" title-align="right" :data="formData2"
|
|
60
61
|
@submit="searchEvent2" @reset="searchEvent2">
|
|
61
|
-
<vxe-form-item title="
|
|
62
|
+
<vxe-form-item :title="$t1('单据对象名称')+':'" field="eaObjName">
|
|
62
63
|
<template v-slot>
|
|
63
64
|
<el-input v-model="eaObjName" size="small" disabled/>
|
|
64
65
|
</template>
|
|
65
66
|
</vxe-form-item>
|
|
66
|
-
<vxe-form-item title="
|
|
67
|
+
<vxe-form-item :title="$t1('单据对象编码')+':'" field="eaObjCode">
|
|
67
68
|
<template v-slot>
|
|
68
69
|
<el-input v-model="eaObjCode" size="small" disabled/>
|
|
69
70
|
</template>
|
|
@@ -73,7 +74,7 @@
|
|
|
73
74
|
</vxe-grid>
|
|
74
75
|
</div>
|
|
75
76
|
</el-tab-pane>
|
|
76
|
-
<el-tab-pane label="分组配置常规" name="first">
|
|
77
|
+
<el-tab-pane :label="$t1('分组配置常规')" name="first">
|
|
77
78
|
<editView v-if="showEdit" visible-key="showEdit" :_dataId.sync="dataId" :eaObjCode.sync="eaObjCode"
|
|
78
79
|
:parent-target="_self" @reload="$reloadHandle"></editView>
|
|
79
80
|
</el-tab-pane>
|
|
@@ -100,7 +101,6 @@ export default {
|
|
|
100
101
|
dataId: 0,
|
|
101
102
|
showEdit: false,
|
|
102
103
|
showList: false,
|
|
103
|
-
dataId: '',
|
|
104
104
|
eaObjName: '',
|
|
105
105
|
eaObjCode: '',
|
|
106
106
|
vxeOption: {},
|
|
@@ -149,19 +149,19 @@ export default {
|
|
|
149
149
|
columns: [
|
|
150
150
|
{type: 'checkbox', width: 48, resizable: false, fixed: 'left'},
|
|
151
151
|
{
|
|
152
|
-
title: '单据对象名称',
|
|
152
|
+
title: this.$t1('单据对象名称'),
|
|
153
153
|
field: 'eaObjName',
|
|
154
154
|
width: 150,
|
|
155
155
|
fixed: 'left'
|
|
156
156
|
},
|
|
157
157
|
{
|
|
158
158
|
field: 'eaObjCode',
|
|
159
|
-
title: '单据对象编码',
|
|
159
|
+
title: this.$t1('单据对象编码'),
|
|
160
160
|
width: 150
|
|
161
161
|
},
|
|
162
162
|
{
|
|
163
163
|
field: 'applicationName',
|
|
164
|
-
title: '所属应用服务名',
|
|
164
|
+
title: this.$t1('所属应用服务名'),
|
|
165
165
|
width: 150
|
|
166
166
|
},
|
|
167
167
|
{
|
|
@@ -189,7 +189,7 @@ export default {
|
|
|
189
189
|
this.openEditDialog(row);
|
|
190
190
|
}}
|
|
191
191
|
>
|
|
192
|
-
<el-tooltip enterable={false} effect="dark" content=
|
|
192
|
+
<el-tooltip enterable={false} effect="dark" content={this.$t1('查看分组配置')} placement="top"
|
|
193
193
|
popper-class="tooltip-skin">
|
|
194
194
|
<i class="el-icon-edit"/>
|
|
195
195
|
</el-tooltip>
|
|
@@ -218,7 +218,7 @@ export default {
|
|
|
218
218
|
},
|
|
219
219
|
initTableList2() {
|
|
220
220
|
let that = this;
|
|
221
|
-
let eaGroupTypeMap = {1: '单属性', 2: '列表属性', 3: '附件'};
|
|
221
|
+
let eaGroupTypeMap = {1: this.$t1('单属性'), 2: this.$t1('列表属性'), 3: this.$t1('附件')};
|
|
222
222
|
let tableOption = {
|
|
223
223
|
vue: this,
|
|
224
224
|
tableRef: 'table-m2',
|
|
@@ -240,29 +240,29 @@ export default {
|
|
|
240
240
|
columns: [
|
|
241
241
|
{type: 'checkbox', width: 48, resizable: false, fixed: 'left'},
|
|
242
242
|
{
|
|
243
|
-
title: '分组描述',
|
|
243
|
+
title: this.$t1('分组描述'),
|
|
244
244
|
field: 'eaGroupDesc',
|
|
245
245
|
width: 150,
|
|
246
246
|
fixed: 'left'
|
|
247
247
|
},
|
|
248
248
|
{
|
|
249
249
|
field: 'eaGroupCode',
|
|
250
|
-
title: '分组编码',
|
|
250
|
+
title: this.$t1('分组编码'),
|
|
251
251
|
width: 250
|
|
252
252
|
},
|
|
253
253
|
{
|
|
254
254
|
field: 'eaObjCode',
|
|
255
|
-
title: '单据对象编码',
|
|
255
|
+
title: this.$t1('单据对象编码'),
|
|
256
256
|
width: 150
|
|
257
257
|
},
|
|
258
258
|
{
|
|
259
259
|
field: 'eaTableName',
|
|
260
|
-
title: '数据表名',
|
|
260
|
+
title: this.$t1('数据表名'),
|
|
261
261
|
width: 250
|
|
262
262
|
},
|
|
263
263
|
{
|
|
264
264
|
field: 'eaGroupType',
|
|
265
|
-
title: '分组类型',
|
|
265
|
+
title: this.$t1('分组类型'),
|
|
266
266
|
width: 150,
|
|
267
267
|
slots: {
|
|
268
268
|
default: ({row}) => {
|
|
@@ -277,12 +277,12 @@ export default {
|
|
|
277
277
|
},
|
|
278
278
|
{
|
|
279
279
|
field: 'applicationName',
|
|
280
|
-
title: '所属服务器名',
|
|
280
|
+
title: this.$t1('所属服务器名'),
|
|
281
281
|
width: 150
|
|
282
282
|
},
|
|
283
283
|
{
|
|
284
284
|
field: 'eaAttachType',
|
|
285
|
-
title: '附件类型名',
|
|
285
|
+
title: this.$t1('附件类型名'),
|
|
286
286
|
width: 150
|
|
287
287
|
},
|
|
288
288
|
{
|
|
@@ -292,9 +292,9 @@ export default {
|
|
|
292
292
|
slots: {
|
|
293
293
|
default: ({row}) => {
|
|
294
294
|
if (row.enabled) {
|
|
295
|
-
return [<div class="txt-status">{
|
|
295
|
+
return [<div class="txt-status">{this.$t1('启用')}</div>];
|
|
296
296
|
} else {
|
|
297
|
-
return [<div class="txt-status s-3">{
|
|
297
|
+
return [<div class="txt-status s-3">{this.$t1('禁用')}</div>];
|
|
298
298
|
}
|
|
299
299
|
}
|
|
300
300
|
}
|
|
@@ -324,7 +324,7 @@ export default {
|
|
|
324
324
|
this.openEditDialog2(row.id);
|
|
325
325
|
}}
|
|
326
326
|
>
|
|
327
|
-
<el-tooltip enterable={false} effect="dark" content={
|
|
327
|
+
<el-tooltip enterable={false} effect="dark" content={this.$t1('查看')} placement="top"
|
|
328
328
|
popper-class="tooltip-skin">
|
|
329
329
|
<i class="el-icon-edit"/>
|
|
330
330
|
</el-tooltip>
|