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.
Files changed (202) hide show
  1. package/package.json +1 -1
  2. package/src/components/formOplog/mixins.js +1 -1
  3. package/src/components/jsonImport/exportDialog.vue +1 -1
  4. package/src/components/jsonImport/index.vue +151 -202
  5. package/src/components/jsonImport/mixins.js +1 -309
  6. package/src/components/projectTag/addButton.vue +3 -50
  7. package/src/components/projectTag/deleteButton.vue +3 -50
  8. package/src/components/projectTag/mixins/addButton.js +5 -0
  9. package/src/components/projectTag/mixins/deleteButton.js +5 -0
  10. package/src/components/projectTag/mixins/view.js +5 -0
  11. package/src/components/projectTag/view.vue +33 -72
  12. package/src/components/xform/mixins/scriptHttp.js +1 -1
  13. package/src/index.js +0 -2
  14. package/src/layout/components/Sidebar/default.vue +4 -6
  15. package/src/router/modules/system.js +1 -1
  16. package/src/store/config/index.js +3 -0
  17. package/src/store/getters.js +2 -0
  18. package/src/store/modules/permission.js +2 -2
  19. package/src/store/modules/user.js +2 -1
  20. package/src/utils/request.js +28 -29
  21. package/src/utils/vab.js +27 -27
  22. package/src/views/bd/setting/bd_attach_setting/dialog.vue +4 -87
  23. package/src/views/bd/setting/bd_attach_setting/edit.vue +3 -92
  24. package/src/views/bd/setting/bd_attach_setting/list.vue +4 -214
  25. package/src/views/bd/setting/bd_attach_setting/mixins/dialog.js +89 -0
  26. package/src/views/bd/setting/bd_attach_setting/mixins/edit.js +96 -0
  27. package/src/views/bd/setting/bd_attach_setting/mixins/list.js +219 -0
  28. package/src/views/bd/setting/form_script/dialog.vue +3 -137
  29. package/src/views/bd/setting/form_script/edit.vue +3 -127
  30. package/src/views/bd/setting/form_script/edit1.vue +3 -142
  31. package/src/views/bd/setting/form_script/form_list.vue +4 -259
  32. package/src/views/bd/setting/form_script/list.vue +55 -223
  33. package/src/views/bd/setting/form_script/list1.vue +117 -444
  34. package/src/views/bd/setting/form_script/list2.vue +3 -4
  35. package/src/views/bd/setting/form_script/mixins/dialog.js +142 -0
  36. package/src/views/bd/setting/form_script/mixins/edit.js +134 -0
  37. package/src/views/bd/setting/form_script/mixins/edit1.js +149 -0
  38. package/src/views/bd/setting/form_script/mixins/form_list.js +264 -0
  39. package/src/views/bd/setting/form_script/mixins/list.js +176 -0
  40. package/src/views/bd/setting/form_script/mixins/list1.js +336 -0
  41. package/src/views/bd/setting/form_script/mixins/list2.js +14 -0
  42. package/src/views/bd/setting/form_template/dialog.vue +104 -212
  43. package/src/views/bd/setting/form_template/edit.vue +183 -329
  44. package/src/views/bd/setting/form_template/editWfObjConfigDialog.vue +46 -131
  45. package/src/views/bd/setting/form_template/ftHistoryDialog.vue +88 -175
  46. package/src/views/bd/setting/form_template/itemEdit.vue +174 -270
  47. package/src/views/bd/setting/form_template/itemList.vue +56 -300
  48. package/src/views/bd/setting/form_template/list.vue +211 -766
  49. package/src/views/bd/setting/form_template/mixins/dialog.js +114 -0
  50. package/src/views/bd/setting/form_template/mixins/edit.js +155 -0
  51. package/src/views/bd/setting/form_template/mixins/editWfObjConfigDialog.js +94 -0
  52. package/src/views/bd/setting/form_template/mixins/ftHistoryDialog.js +95 -0
  53. package/src/views/bd/setting/form_template/mixins/itemEdit.js +106 -0
  54. package/src/views/bd/setting/form_template/mixins/itemList.js +254 -0
  55. package/src/views/bd/setting/form_template/mixins/list.js +562 -0
  56. package/src/views/bd/setting/form_template/mixins/preformDialog.js +28 -0
  57. package/src/views/bd/setting/form_template/preformDialog.vue +57 -77
  58. package/src/views/bd/setting/menu_kind/authDialog.vue +84 -308
  59. package/src/views/bd/setting/menu_kind/dialog.vue +89 -226
  60. package/src/views/bd/setting/menu_kind/list.vue +86 -262
  61. package/src/views/bd/setting/menu_kind/mixins/authDialog.js +232 -0
  62. package/src/views/bd/setting/menu_kind/mixins/dialog.js +144 -0
  63. package/src/views/bd/setting/menu_kind/mixins/list.js +187 -0
  64. package/src/views/bd/setting/table_model/dialog.vue +95 -161
  65. package/src/views/bd/setting/table_model/edit.vue +5 -767
  66. package/src/views/bd/setting/table_model/list.vue +130 -491
  67. package/src/views/bd/setting/table_model/mixins/dialog.js +74 -0
  68. package/src/views/bd/setting/table_model/mixins/edit.js +778 -0
  69. package/src/views/bd/setting/table_model/mixins/list.js +367 -0
  70. package/src/views/bd/setting/table_model/mixins/zdDialog.js +114 -0
  71. package/src/views/bd/setting/table_model/zdDialog.vue +95 -201
  72. package/src/views/support/export_template/edit.vue +40 -36
  73. package/src/views/support/export_template/list.vue +40 -52
  74. package/src/views/user/access_log/edit.vue +18 -17
  75. package/src/views/user/access_log/list.vue +27 -26
  76. package/src/views/user/access_log/statistics_list.vue +19 -17
  77. package/src/views/user/api_request/edit.vue +14 -11
  78. package/src/views/user/api_request/list.vue +13 -11
  79. package/src/views/user/area/dialog.vue +14 -27
  80. package/src/views/user/area_attribute/configDialog.vue +11 -13
  81. package/src/views/user/area_attribute/edit.vue +8 -6
  82. package/src/views/user/area_attribute/list.vue +1 -1
  83. package/src/views/user/attachment/uploadDialog.vue +1 -1
  84. package/src/views/user/bill_setting/button/previewButton.vue +2 -2
  85. package/src/views/user/bill_setting/compareView.vue +1 -1
  86. package/src/views/user/bill_setting/edit.vue +24 -17
  87. package/src/views/user/bill_setting/h5_ModifyDialog.vue +1 -1
  88. package/src/views/user/bill_setting/itemViewDialog.vue +3 -66
  89. package/src/views/user/bill_setting/list.vue +28 -26
  90. package/src/views/user/bill_setting/mixins/wf.js +8 -8
  91. package/src/views/user/bill_setting/previewDialog.vue +1 -1
  92. package/src/views/user/bill_setting/render.vue +29 -29
  93. package/src/views/user/bill_setting/userDialog.vue +7 -5
  94. package/src/views/user/code_rules/edit.vue +21 -18
  95. package/src/views/user/code_rules/list.vue +27 -19
  96. package/src/views/user/commMenu/index.vue +3 -3
  97. package/src/views/user/common_attribute/edit.vue +7 -5
  98. package/src/views/user/common_attribute/itemEdit.vue +22 -22
  99. package/src/views/user/common_attribute/list.vue +25 -24
  100. package/src/views/user/common_script/edit.vue +12 -12
  101. package/src/views/user/common_script/list.vue +30 -32
  102. package/src/views/user/company_info/dialog.vue +9 -9
  103. package/src/views/user/company_info/edit.vue +11 -8
  104. package/src/views/user/country/dialog.vue +11 -9
  105. package/src/views/user/country/edit.vue +12 -9
  106. package/src/views/user/country/list.vue +12 -12
  107. package/src/views/user/data_type_setting/dialog.vue +10 -10
  108. package/src/views/user/data_type_setting/editDialog.vue +6 -6
  109. package/src/views/user/ea/eagroup/eaobj_list.vue +25 -25
  110. package/src/views/user/ea/eagroup/edit.vue +48 -42
  111. package/src/views/user/ea/eaobj/edit.vue +6 -5
  112. package/src/views/user/ea/eaobj/list.vue +9 -8
  113. package/src/views/user/extend_datasource/dialog.vue +19 -24
  114. package/src/views/user/extend_datasource/edit.vue +20 -16
  115. package/src/views/user/extend_datasource/list.vue +23 -24
  116. package/src/views/user/fieldTranslation/editDialog.vue +28 -28
  117. package/src/views/user/fieldTranslation/list.vue +59 -57
  118. package/src/views/user/field_values_invisible/edit.vue +15 -14
  119. package/src/views/user/field_values_invisible/list.vue +23 -22
  120. package/src/views/user/file_type/edit.vue +12 -21
  121. package/src/views/user/file_type/list.vue +21 -36
  122. package/src/views/user/file_type/userEdit.vue +14 -9
  123. package/src/views/user/file_view_area/edit.vue +3 -3
  124. package/src/views/user/file_view_area/itemEdit.vue +11 -9
  125. package/src/views/user/file_view_area/list.vue +17 -16
  126. package/src/views/user/file_view_ins/list.vue +29 -28
  127. package/src/views/user/file_view_ins/propertiesDialog.vue +15 -15
  128. package/src/views/user/form/form_template/edit.vue +1 -1
  129. package/src/views/user/form/form_template/itemEdit.vue +1 -1
  130. package/src/views/user/form/form_template/itemList.vue +2 -2
  131. package/src/views/user/form/form_template/list.vue +3 -3
  132. package/src/views/user/form/form_type/edit.vue +1 -1
  133. package/src/views/user/form/form_type/list.vue +1 -1
  134. package/src/views/user/form/report_requestaccess/edit.vue +1 -1
  135. package/src/views/user/form/report_requestaccess/list.vue +1 -1
  136. package/src/views/user/form/vform/designer.vue +2 -0
  137. package/src/views/user/form/vform/out_render.vue +1 -0
  138. package/src/views/user/form/vform/render.vue +1 -0
  139. package/src/views/user/form/view/list.vue +2 -1
  140. package/src/views/user/groups/dialog.vue +159 -0
  141. package/src/views/user/groups/edit.vue +131 -0
  142. package/src/views/user/groups/list.vue +167 -0
  143. package/src/views/user/home/index.vue +3 -3
  144. package/src/views/user/lang_tag/dialog.vue +185 -0
  145. package/src/views/user/lang_tag/edit.vue +138 -0
  146. package/src/views/user/lang_tag/list.vue +170 -0
  147. package/src/views/user/language_setting/edit.vue +11 -9
  148. package/src/views/user/language_setting/list.vue +20 -18
  149. package/src/views/user/login/default.vue +129 -0
  150. package/src/views/user/login/index.vue +3 -117
  151. package/src/views/user/menu/list.vue +39 -55
  152. package/src/views/user/mobile_menu/list.vue +18 -54
  153. package/src/views/user/notify_message/dialog.vue +1 -1
  154. package/src/views/user/notify_message/infoDialog.vue +1 -1
  155. package/src/views/user/notify_message/list.vue +24 -23
  156. package/src/views/user/notify_template/edit.vue +13 -11
  157. package/src/views/user/notify_template/list.vue +19 -16
  158. package/src/views/user/oplog/edit.vue +12 -12
  159. package/src/views/user/oplog/list.vue +20 -18
  160. package/src/views/user/position/dialog.vue +6 -6
  161. package/src/views/user/position/edit.vue +11 -8
  162. package/src/views/user/position/list.vue +11 -11
  163. package/src/views/user/project_tag/dialog.vue +11 -9
  164. package/src/views/user/project_tag/edit.vue +8 -6
  165. package/src/views/user/project_tag/list.vue +15 -12
  166. package/src/views/user/push_setting/edit.vue +20 -17
  167. package/src/views/user/push_setting/list.vue +1 -1
  168. package/src/views/user/role/dialog.vue +11 -11
  169. package/src/views/user/role/edit.vue +14 -12
  170. package/src/views/user/role/list.vue +14 -12
  171. package/src/views/user/sale_org/dialog.vue +12 -12
  172. package/src/views/user/sale_org/list.vue +43 -48
  173. package/src/views/user/system_notice/edit.vue +13 -11
  174. package/src/views/user/system_notice/infoDialog.vue +2 -2
  175. package/src/views/user/system_notice/list.vue +19 -17
  176. package/src/views/user/system_parameter/edit.vue +7 -6
  177. package/src/views/user/system_parameter/list.vue +12 -10
  178. package/src/views/user/user/edit.vue +1 -1
  179. package/src/views/user/user/form_edit.vue +50 -7
  180. package/src/views/user/user/form_list.vue +34 -132
  181. package/src/views/user/user/info.vue +20 -19
  182. package/src/views/user/user/infoEdit.vue +18 -18
  183. package/src/views/user/user/infoIframeDialog.vue +1 -1
  184. package/src/views/user/user/modifyPasswordDialog.vue +9 -9
  185. package/src/views/user/wf/iframe/dialog.vue +1 -1
  186. package/src/views/user/wf/wf_auto_submit_data/edit.vue +11 -10
  187. package/src/views/user/wf/wf_auto_submit_data/edith.vue +14 -13
  188. package/src/views/user/wf/wf_auto_submit_data/list.vue +43 -41
  189. package/src/views/user/wf/wf_diy_attribute/edit.vue +11 -8
  190. package/src/views/user/wf/wf_manage/list.vue +66 -61
  191. package/src/views/user/wf/wf_manage/wfContentDialog.vue +1 -1
  192. package/src/views/user/wf/wf_obj_config/dialog.vue +11 -11
  193. package/src/views/user/wf/wf_obj_config/edit.vue +12 -9
  194. package/src/views/user/wf/wf_obj_config/edit_form.vue +11 -9
  195. package/src/views/user/wf/wf_obj_config/itemEdit.vue +31 -27
  196. package/src/views/user/wf/wf_obj_config/itemEdit_form.vue +8 -6
  197. package/src/views/user/wf/wf_obj_config/list.vue +42 -41
  198. package/src/views/user/wf/wf_obj_config/list_form.vue +14 -12
  199. package/src/views/user/wf/wf_param/edit.vue +7 -5
  200. package/src/views/user/wf/wf_work_calendar/configDialog.vue +9 -24
  201. package/src/views/user/wf/wf_work_calendar/list.vue +6 -3
  202. 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="查询区名称:" field="viewAreaName">
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="查询区编码:" field="viewAreaCode">
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="新增凭证查询目录" placement="top"
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>新增凭证查询目录</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={ this.$t1('查看') } placement="top"
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={ this.$t1('查看') } placement="top"
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>文件区</span>
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
- treeNode.label
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
- checkList.length
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>当前记录</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>当前记录</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>文件路径</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
- treeNode.label
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>文件说明</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>文件大小</th>
53
+ <th>{{ $t1('文件大小') }}</th>
54
54
  <td>{{ formatFileSize(attachmentDTO.fileSize) }}</td>
55
55
  </tr>
56
56
  <tr>
57
- <th>单号</th>
57
+ <th>{{ $t1('单号') }}</th>
58
58
  <td>{{ attachmentDTO.billSn }}</td>
59
59
  </tr>
60
60
  <tr>
61
- <th>单据说明</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('查看') : $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('查看') : $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('查看') : $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('查看') : $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 => {
@@ -25,6 +25,7 @@ export default {
25
25
  let reportCode = this.$route.query.reportCode;
26
26
  if (dw && reportCode) {
27
27
  this.$http({
28
+ aes: true,
28
29
  url: USER_PREFIX + '/dw_auth/login',
29
30
  method: `post`,
30
31
  data: {
@@ -68,6 +68,7 @@ export default {
68
68
  url = USER_PREFIX + `/formTemplate/getByFormCode`;
69
69
  data = {stringOne: this.formCode};
70
70
  this.$http({
71
+ aes: true,
71
72
  url: url,
72
73
  method: `post`,
73
74
  data: data,
@@ -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},