cloud-web-corejs-haier 1.0.5 → 1.0.6

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 (141) hide show
  1. package/package.json +7 -4
  2. package/src/App.vue +30 -34
  3. package/src/api/user.js +8 -0
  4. package/src/components/Tinymce/index.vue +112 -71
  5. package/src/components/VabUpload/image-viewer.vue +2 -2
  6. package/src/components/VabUpload/index.js +1 -1
  7. package/src/components/VabUpload/mixins.js +1 -1
  8. package/src/components/VabUpload/privateProfileDialogMixins.js +1 -1063
  9. package/src/components/VabUpload/view.vue +6 -2
  10. package/src/components/base-textarea/index.vue +104 -0
  11. package/src/components/baseAlert/mixins.js +1 -1
  12. package/src/components/baseAttachment/mixins.js +2 -1
  13. package/src/components/baseInputExport/index.vue +19 -12
  14. package/src/components/baseInputExport/mixins.js +1 -1
  15. package/src/components/baseTabs/mixins.js +1 -1
  16. package/src/components/code-editor/index.vue +102 -63
  17. package/src/components/confirmDialog/index.vue +24 -17
  18. package/src/components/confirmDialog/mixins.js +1 -1
  19. package/src/components/errorMsg/index.vue +42 -34
  20. package/src/components/errorMsg/mixins.js +1 -1
  21. package/src/components/excelExport/index.js +1 -2
  22. package/src/components/excelExport/mixins.js +1 -1
  23. package/src/components/fileLibrary/fileObjAuthDialog.vue +179 -89
  24. package/src/components/fileLibrary/filterDialog.vue +45 -21
  25. package/src/components/fileLibrary/index.vue +579 -238
  26. package/src/components/fileLibrary/mixins/fileObjAuthDialogMixin.js +4 -1
  27. package/src/components/fileLibrary/mixins/indexMixins.js +3 -0
  28. package/src/components/scriptDescription/button.vue +12 -4
  29. package/src/components/scriptTest/mixins.js +1 -1
  30. package/src/components/table/index.js +12 -12
  31. package/src/components/tempStorage/index.vue +1 -1
  32. package/src/components/vb-tabs/x-tabs.vue +0 -1
  33. package/src/components/wf/content.vue +32 -36
  34. package/src/components/wf/mixins/setCandidateDialog2.js +1 -1
  35. package/src/components/wf/mixins/wfFlowEleScriptDialog.js +131 -3
  36. package/src/components/wf/setCandidateDialog2.vue +76 -66
  37. package/src/components/wf/wf.js +2176 -1
  38. package/src/components/wf/wfFlowEleScriptDialog.vue +5 -1
  39. package/src/components/wf/wfStartDialog.vue +6 -10
  40. package/src/components/wf/wfUtil.js +279 -1
  41. package/src/components/xform/form-designer/designer.js +1 -1
  42. package/src/components/xform/form-designer/form-widget/components/gantt/index.vue +16 -1
  43. package/src/components/xform/form-designer/form-widget/dialog/importDialogMixin.js +1 -1
  44. package/src/components/xform/form-designer/form-widget/dialog/searchFormDialog.vue +17 -4
  45. package/src/components/xform/form-designer/form-widget/field-widget/fieldMixin.js +1 -1
  46. package/src/components/xform/form-designer/form-widget/field-widget/form-item-wrapper.vue +247 -187
  47. package/src/components/xform/form-designer/form-widget/field-widget/gantt-widget.vue +2 -0
  48. package/src/components/xform/form-designer/form-widget/field-widget/html-text-widget.vue +6 -2
  49. package/src/components/xform/form-designer/form-widget/field-widget/static-content-wrapper.vue +10 -0
  50. package/src/components/xform/form-designer/form-widget/field-widget/text-widget.vue +65 -4
  51. package/src/components/xform/form-designer/setting-panel/form-setting.vue +132 -118
  52. package/src/components/xform/form-designer/setting-panel/property-editor/autoValueEnabled-editor.vue +1 -1
  53. package/src/components/xform/form-designer/setting-panel/property-editor/formatType-editor.vue +137 -0
  54. package/src/components/xform/form-designer/setting-panel/property-editor/name-editor.vue +124 -50
  55. package/src/components/xform/form-designer/setting-panel/propertyRegister.js +1 -0
  56. package/src/components/xform/form-designer/widget-panel/widgetsConfig.js +5 -1
  57. package/src/components/xform/form-render/index.vue +8 -0
  58. package/src/components/xform/form-render/indexMixin copy.js +3462 -0
  59. package/src/components/xform/form-render/indexMixin.js +3496 -1
  60. package/src/components/xform/mixins/defaultHandle.js +1 -1
  61. package/src/components/xform/utils/format.js +14 -4
  62. package/src/components/xform/utils/formula-util.js +0 -4
  63. package/src/components/xform/utils/util.js +1 -1
  64. package/src/index.js +215 -190
  65. package/src/lang/index.js +56 -51
  66. package/src/lang/locale/en/login.js +20 -0
  67. package/src/lang/locale/zh/login.js +20 -0
  68. package/src/layout/components/Sidebar/default.vue +1423 -1266
  69. package/src/layout/components/TagsView/index.vue +37 -11
  70. package/src/layout/components/createCompany/createCompanyDialog.vue +157 -0
  71. package/src/layout/components/extractedCode/viewDialog.vue +1 -0
  72. package/src/layout/defaultLayout.vue +1 -1
  73. package/src/layout/index.vue +3 -5
  74. package/src/mixins/table/index.js +151 -0
  75. package/src/permission.js +1 -18
  76. package/src/router/modules/customer.js +3 -8
  77. package/src/store/getters.js +24 -23
  78. package/src/store/modules/user.js +1 -30
  79. package/src/utils/vab.js +1 -1
  80. package/src/views/bd/setting/config_manage/list.vue +36 -19
  81. package/src/views/bd/setting/form_script/edit.vue +9 -0
  82. package/src/views/bd/setting/form_script/edit1.vue +29 -3
  83. package/src/views/bd/setting/form_script/form_list.vue +99 -37
  84. package/src/views/bd/setting/form_script/list1.vue +181 -118
  85. package/src/views/bd/setting/form_script/mixins/dialog.js +130 -1
  86. package/src/views/bd/setting/form_script/mixins/edit.js +199 -1
  87. package/src/views/bd/setting/form_script/mixins/edit1.js +193 -1
  88. package/src/views/bd/setting/form_script/mixins/list.js +236 -1
  89. package/src/views/bd/setting/form_script/mixins/list1.js +410 -1
  90. package/src/views/bd/setting/form_script/mixins/otherAuthDialog.js +194 -0
  91. package/src/views/bd/setting/form_script/otherAuthDialog.vue +83 -0
  92. package/src/views/bd/setting/form_template/edit.vue +13 -0
  93. package/src/views/bd/setting/form_template/list.vue +326 -214
  94. package/src/views/bd/setting/form_template/mixins/batchWfObjConfigDialog.js +279 -1
  95. package/src/views/bd/setting/form_template/mixins/edit.js +234 -9
  96. package/src/views/bd/setting/form_template/mixins/list.js +667 -3
  97. package/src/views/bd/setting/form_template/mixins/otherAuthDialog.js +193 -0
  98. package/src/views/bd/setting/form_template/otherAuthDialog.vue +83 -0
  99. package/src/views/bd/setting/logic_param/mixins/edit.js +1 -91
  100. package/src/views/bd/setting/logic_param/mixins/list.js +2 -362
  101. package/src/views/bd/setting/menu_kind/list.vue +172 -87
  102. package/src/views/bd/setting/menu_kind/mixins/authDialog.js +300 -7
  103. package/src/views/bd/setting/table_model/edit.vue +345 -304
  104. package/src/views/bd/setting/table_model/list.vue +190 -128
  105. package/src/views/bd/setting/table_model/mixins/edit.js +1191 -1
  106. package/src/views/bd/setting/table_model/mixins/list.js +428 -2
  107. package/src/views/bd/setting/table_model/mixins/otherAuthDialog.js +201 -0
  108. package/src/views/bd/setting/table_model/otherAuthDialog.vue +83 -0
  109. package/src/views/user/access_log/list.vue +418 -349
  110. package/src/views/user/area/dialog.vue +223 -116
  111. package/src/views/user/area/list.vue +318 -0
  112. package/src/views/user/common_attribute/list.vue +4 -1
  113. package/src/views/user/extend_datasource/dialog.vue +3 -0
  114. package/src/views/user/extend_datasource/edit.vue +2 -1
  115. package/src/views/user/extend_datasource/list.vue +3 -0
  116. package/src/views/user/form/vform/designer.vue +2 -1
  117. package/src/views/user/home/bears/index.vue +1032 -0
  118. package/src/views/user/home/default.vue +6 -5
  119. package/src/views/user/home/taili/index.vue +1034 -0
  120. package/src/views/user/ledger_library/list.vue +10 -12
  121. package/src/views/user/login/default.vue +165 -36
  122. package/src/views/user/login/index.vue +4 -6
  123. package/src/views/user/login/indexMixin.js +184 -8
  124. package/src/views/user/menu/list.vue +24 -1
  125. package/src/views/user/notify_message/dialog.vue +2 -6
  126. package/src/views/user/outLink/index.vue +57 -18
  127. package/src/views/user/role/authConfig.vue +89 -0
  128. package/src/views/user/role/dialog.vue +70 -48
  129. package/src/views/user/role/edit.vue +114 -4
  130. package/src/views/user/user/form_dialog.vue +158 -0
  131. package/src/views/user/user/list.vue +652 -582
  132. package/src/views/user/user/modifyPasswordDialog.vue +64 -53
  133. package/src/views/user/wf/wfReport/index.vue +137 -28
  134. package/src/views/user/wf/wf_obj_config/itemEdit.vue +15 -116
  135. package/src/views/user/wf/wf_obj_config/itemOperateDialog.vue +414 -0
  136. package/src/views/user/wf/wf_obj_config/list.vue +84 -78
  137. package/src/views/user/wf/wf_transfer_setting/edit.vue +52 -0
  138. package/src/views/user/wf/wf_transfer_setting/list.vue +10 -0
  139. package/src/components/xform/form-render/container-item/data-table-mixin2.js +0 -2169
  140. package/src/views/bd/setting/table_model/mixins/edit copy.js +0 -903
  141. package/src/views/user/login/index2.vue +0 -131
@@ -3,13 +3,23 @@
3
3
  <div class="flex">
4
4
  <div class="tab-box-vertical">
5
5
  <div class="list-scroll">
6
- <div class="item" v-for="(item,index) in typeTabs" :key="item.name" :class="{on:item.name==activeName}"
7
- @click="chooseTab(item)">{{ item.label }}
6
+ <div
7
+ class="item"
8
+ v-for="(item, index) in typeTabs"
9
+ :key="item.name"
10
+ :class="{ on: item.name == activeName }"
11
+ @click="chooseTab(item)"
12
+ >
13
+ {{ item.label }}
8
14
  </div>
9
15
  </div>
10
16
  </div>
11
17
  <div class="flex-tabboxWidth">
12
- <div v-for="(item,index) in typeTabs" :key="item.name" v-show="item.name==activeName">
18
+ <div
19
+ v-for="(item, index) in typeTabs"
20
+ :key="item.name"
21
+ v-show="item.name == activeName"
22
+ >
13
23
  <component :is="item.name" :containtId="false" v-if="item.inited"></component>
14
24
  </div>
15
25
  </div>
@@ -25,6 +35,8 @@ import logic_param_list from "@base/views/bd/setting/logic_param/list.vue";
25
35
  import logic_param_list1 from "@base/views/bd/setting/logic_param/list1.vue";
26
36
  import logic_param_list2 from "@base/views/bd/setting/logic_param/list2.vue";
27
37
 
38
+ import country_list from "@base/views/user/country/list.vue";
39
+ import area_list from "@base/views/user/area/list.vue";
28
40
 
29
41
  export default {
30
42
  name: "list",
@@ -36,31 +48,36 @@ export default {
36
48
  logic_param_list,
37
49
  logic_param_list1,
38
50
  logic_param_list2,
51
+ country_list,
52
+ area_list,
39
53
  },
40
54
  data() {
41
55
  return {
42
56
  activeName: "bd_attach_setting_list",
43
57
  typeTabs: [
44
- {label: this.$t1("导入模板"), name: "bd_attach_setting_list", inited: true},
45
- {label: this.$t1("同步调用接口"), name: "request_setting_list", inited: false},
46
- {label: this.$t1("异步推送数据"), name: "request_async_setting_list", inited: false},
47
- {label: this.$t1("组织环境设置"), name: "bd_company_env_list", inited: false},
48
- {label: this.$t1("逻辑参数"), name: "logic_param_list", inited: false},
49
- /*{label: this.$t1("操作日志编码"), name: "logic_param_list1", inited: false},*/
50
- {label: this.$t1("上传文件服务"), name: "logic_param_list2", inited: false},
51
- ]
52
- }
58
+ { label: this.$t1("导入模板"), name: "bd_attach_setting_list", inited: true },
59
+ { label: this.$t1("同步调用接口"), name: "request_setting_list", inited: false },
60
+ {
61
+ label: this.$t1("异步推送数据"),
62
+ name: "request_async_setting_list",
63
+ inited: false,
64
+ },
65
+ { label: this.$t1("组织环境设置"), name: "bd_company_env_list", inited: false },
66
+ { label: this.$t1("逻辑参数"), name: "logic_param_list", inited: false },
67
+ // {label: this.$t1("操作日志编码"), name: "logic_param_list1", inited: false},
68
+ { label: this.$t1("上传文件服务"), name: "logic_param_list2", inited: false },
69
+ { label: this.$t1("国家维护"), name: "country_list", inited: false },
70
+ { label: this.$t1("国家地区"), name: "area_list", inited: false },
71
+ ],
72
+ };
53
73
  },
54
74
  methods: {
55
75
  chooseTab(item) {
56
76
  this.activeName = item.name;
57
77
  item.inited = true;
58
- }
59
- }
60
- }
78
+ },
79
+ },
80
+ };
61
81
  </script>
62
82
 
63
-
64
- <style scoped>
65
-
66
- </style>
83
+ <style scoped></style>
@@ -40,6 +40,15 @@
40
40
  </td>
41
41
  </tr>
42
42
  <tr>
43
+ <th>{{ $t1('是否启用') }}</th>
44
+ <td>
45
+ <el-form-item prop="enabled" :rules="[{ required: false, trigger: 'blur' }]">
46
+ <el-radio-group v-model="formScript.enabled">
47
+ <el-radio :label="true">{{ $t1('启用') }}</el-radio>
48
+ <el-radio :label="false">{{ $t1('禁用') }}</el-radio>
49
+ </el-radio-group>
50
+ </el-form-item>
51
+ </td>
43
52
  <th>{{ $t1('开启事务') }}</th>
44
53
  <td>
45
54
  <el-radio-group v-model="formScript.transactions">
@@ -7,6 +7,16 @@
7
7
  {{ dataId ? $t1('查看表单脚本') : $t1('新增表单脚本') }}
8
8
  </div>
9
9
  <div class="fr">
10
+ <el-button
11
+ type="primary"
12
+ plain
13
+ class="button-sty"
14
+ icon="el-icon-set-up"
15
+ @click="openOtherAuthDialog"
16
+ v-if="isDev && !!dataId && menuKindAuth.editAuth === 1 && !readonly && !otherFlag && !formTemplate"
17
+ >
18
+ {{ $t1("分派") }}
19
+ </el-button>
10
20
  <el-button type="primary" plain class="button-sty" @click="$baseReload()" icon="el-icon-refresh-right">
11
21
  {{ $t1('重置') }}
12
22
  </el-button>
@@ -55,6 +65,7 @@
55
65
  "
56
66
  v-el-readonly
57
67
  clearable
68
+ :disabled="otherFlag"
58
69
  >
59
70
  <i slot="suffix" class="el-input__icon el-icon-search" @click="showMenuKindDialog = true"></i>
60
71
  </el-input>
@@ -68,11 +79,15 @@
68
79
  <td colspan="3">
69
80
  <template v-if="!dataId && !formTemplate">
70
81
  <el-radio-group v-model="formScript.formCode">
71
- <el-radio label="intf">intf</el-radio>
72
- <el-radio label="busgeneral">busgeneral</el-radio>
82
+ <el-radio label="intf">intf(接口)</el-radio>
83
+ <el-radio label="busgeneral">busgeneral(业务通用)</el-radio>
73
84
  </el-radio-group>
74
85
  </template>
75
- <span v-else>{{ formScript.formCode }}</span>
86
+ <template v-else>
87
+ <span v-if="formScript.formCode=='intf'">intf(接口)</span>
88
+ <span v-else-if="formScript.formCode=='busgeneral'">busgeneral(业务通用)</span>
89
+ <span v-else>{{ formScript.formCode }}</span>
90
+ </template>
76
91
 
77
92
  </td>
78
93
  <th>{{ $t1('Url路径') }}</th>
@@ -81,6 +96,15 @@
81
96
  </td>
82
97
  </tr>
83
98
  <tr>
99
+ <th>{{ $t1('是否启用') }}</th>
100
+ <td>
101
+ <el-form-item prop="enabled" :rules="[{ required: false, trigger: 'blur' }]">
102
+ <el-radio-group v-model="formScript.enabled">
103
+ <el-radio :label="true">{{ $t1('启用') }}</el-radio>
104
+ <el-radio :label="false">{{ $t1('禁用') }}</el-radio>
105
+ </el-radio-group>
106
+ </el-form-item>
107
+ </td>
84
108
  <th>{{ $t1('开启事务') }}</th>
85
109
  <td>
86
110
  <el-radio-group v-model="formScript.transactions">
@@ -181,6 +205,8 @@
181
205
  <preformDialog v-if="showPreformDialog" :visiable.sync="showPreformDialog"
182
206
  :formScript="formScript"
183
207
  @confirm="confirmPreformDialog"></preformDialog>
208
+ <otherAuthDialog v-if="showOtherAuthDialog" :visiable.sync="showOtherAuthDialog" :sid="sid"
209
+ @confirm="confirmOtherAuthDialog"></otherAuthDialog>
184
210
  </div>
185
211
  </template>
186
212
 
@@ -2,32 +2,72 @@
2
2
  <div id="containt">
3
3
  <x-tabs ref="xTabs" v-model="activeName" class="tab-box">
4
4
  <el-tab-pane :label="$t1('常规')" name="first">
5
- <editView v-if="showEdit" visible-key="showEdit" :_dataId.sync="dataId"
6
- :formCode="formTemplate.formCode" :formTemplate="formTemplate" :parent-target="_self"
7
- @reload="$reloadHandle"></editView>
5
+ <editView
6
+ v-if="showEdit"
7
+ visible-key="showEdit"
8
+ :_dataId.sync="dataId"
9
+ :formCode="formTemplate.formCode"
10
+ :formTemplate="formTemplate"
11
+ :parent-target="_self"
12
+ @reload="$reloadHandle"
13
+ ></editView>
8
14
  </el-tab-pane>
9
15
  <el-tab-pane :label="$t1('列表')" name="second">
10
16
  <div class="grid-height">
11
- <vxe-grid ref="table-m1" v-bind="vxeOption" @resizable-change="$vxeTableUtil.onColumnWitchChange"
12
- @custom="$vxeTableUtil.customHandle">
17
+ <vxe-grid
18
+ ref="table-m1"
19
+ v-bind="vxeOption"
20
+ @resizable-change="$vxeTableUtil.onColumnWitchChange"
21
+ @custom="$vxeTableUtil.customHandle"
22
+ >
13
23
  <template #form>
14
- <tableForm :formData.sync="formData" @searchEvent="searchEvent" @resetEvent="resetEvent">
24
+ <tableForm
25
+ :formData.sync="formData"
26
+ @searchEvent="searchEvent"
27
+ @resetEvent="resetEvent"
28
+ >
15
29
  <template #buttonLeft>
16
- <vxe-button status="primary" class="button-sty" icon="el-icon-plus" @click="openEditDialog"
17
- v-if="isDev && menuKindAuth.editAuth===1">{{ $t1('新增') }}
30
+ <vxe-button
31
+ status="primary"
32
+ class="button-sty"
33
+ icon="el-icon-plus"
34
+ @click="openEditDialog"
35
+ v-if="isDev && menuKindAuth.addAuth === 1"
36
+ >{{ $t1("新增") }}
18
37
  </vxe-button>
19
- <projectTagAddButton :option="addProjectTagOption" v-if="isDev && menuKindAuth.editAuth===1"></projectTagAddButton>
20
- <projectTagDeleteButton :option="deleteProjectTagOption" v-if="isDev && menuKindAuth.editAuth===1"></projectTagDeleteButton>
21
- <el-button icon="el-icon-setting" class="button-sty" @click="showScriptDialog=true" type="success"
22
- v-if="isDev && menuKindAuth.editAuth===1"
23
- >{{ $t1('选择需要定制的后台脚本模板') }}
38
+ <projectTagAddButton
39
+ :option="addProjectTagOption"
40
+ v-if="isDev && menuKindAuth.editAuth === 1"
41
+ ></projectTagAddButton>
42
+ <projectTagDeleteButton
43
+ :option="deleteProjectTagOption"
44
+ v-if="isDev && menuKindAuth.editAuth === 1"
45
+ ></projectTagDeleteButton>
46
+ <el-button
47
+ icon="el-icon-setting"
48
+ class="button-sty"
49
+ @click="showScriptDialog = true"
50
+ type="success"
51
+ v-if="isDev && menuKindAuth.editAuth === 1"
52
+ >{{ $t1("选择需要定制的后台脚本模板") }}
24
53
  </el-button>
25
54
  </template>
26
55
  <template #buttonRight>
27
- <vxe-button icon="el-icon-brush" class="button-sty" @click="resetEvent" type="text" status="primary"
28
- plain>{{$t1('重置')}}
56
+ <vxe-button
57
+ icon="el-icon-brush"
58
+ class="button-sty"
59
+ @click="resetEvent"
60
+ type="text"
61
+ status="primary"
62
+ plain
63
+ >{{ $t1("重置") }}
29
64
  </vxe-button>
30
- <vxe-button status="warning" icon="el-icon-search" class="button-sty" @click="searchEvent">{{ $t1('搜索') }}
65
+ <vxe-button
66
+ status="warning"
67
+ icon="el-icon-search"
68
+ class="button-sty"
69
+ @click="searchEvent"
70
+ >{{ $t1("搜索") }}
31
71
  </vxe-button>
32
72
  </template>
33
73
  <template #tag>
@@ -37,41 +77,63 @@
37
77
  class="search-input"
38
78
  max="200"
39
79
  :value="getTabNames()"
40
- @clear="
41
- checkTags = [];
42
- "
80
+ @clear="checkTags = []"
43
81
  v-el-readonly
44
82
  clearable
45
83
  >
46
- <i slot="suffix" class="el-input__icon el-icon-search" @click="openProjectTagDialog3"></i>
84
+ <i
85
+ slot="suffix"
86
+ class="el-input__icon el-icon-search"
87
+ @click="openProjectTagDialog3"
88
+ ></i>
47
89
  </el-input>
48
90
  </template>
49
91
  </vxe-form-item>
50
92
  </template>
51
93
  </tableForm>
52
94
  </template>
53
- <template #tag="{row}">
54
- <projectTagView v-model="row.formScriptTagDTOs" :readonly="true"></projectTagView>
95
+ <template #tag="{ row }">
96
+ <projectTagView
97
+ v-model="row.formScriptTagDTOs"
98
+ :readonly="true"
99
+ ></projectTagView>
55
100
  </template>
56
101
  </vxe-grid>
57
102
  </div>
58
103
  </el-tab-pane>
59
- <template #editTab="{tab,index,reloadTabContent}">
60
- <el-tab-pane :key="tab.data.id" :label.sync="tab.data.scriptName" :name="tab.data.id+''"
61
- :closable="true">
62
- <editView v-if="tab.showContent" :_dataId="tab.dataId" :formCode="formTemplate.formCode"
63
- :formTemplate="formTemplate" :parent-target="_self"
64
- @reload="reloadTabContent"></editView>
104
+ <template #editTab="{ tab, index, reloadTabContent }">
105
+ <el-tab-pane
106
+ :key="tab.data.id"
107
+ :label.sync="tab.data.scriptName"
108
+ :name="tab.data.id + ''"
109
+ :closable="true"
110
+ >
111
+ <editView
112
+ v-if="tab.showContent"
113
+ :_dataId="tab.dataId"
114
+ :formCode="formTemplate.formCode"
115
+ :formTemplate="formTemplate"
116
+ :parent-target="_self"
117
+ @reload="reloadTabContent"
118
+ ></editView>
65
119
  </el-tab-pane>
66
120
  </template>
67
121
  </x-tabs>
68
- <scriptDialog v-if="showScriptDialog" :visiable.sync="showScriptDialog" @confirm="confirmScriptDialog"
69
- :param="{ scriptType:99 }" :multi="true" :title="$t1('初始化模板脚本')"></scriptDialog>
70
- <projectTagDialog v-if="showProjectTagDialog3"
71
- :visiable.sync="showProjectTagDialog3"
72
- @confirm="confirmProjectTagDialog3"
73
- :rows="checkTags"
74
- :multi="true"></projectTagDialog>
122
+ <scriptDialog
123
+ v-if="showScriptDialog"
124
+ :visiable.sync="showScriptDialog"
125
+ @confirm="confirmScriptDialog"
126
+ :param="{ scriptType: 99 }"
127
+ :multi="true"
128
+ :title="$t1('初始化模板脚本')"
129
+ ></scriptDialog>
130
+ <projectTagDialog
131
+ v-if="showProjectTagDialog3"
132
+ :visiable.sync="showProjectTagDialog3"
133
+ @confirm="confirmProjectTagDialog3"
134
+ :rows="checkTags"
135
+ :multi="true"
136
+ ></projectTagDialog>
75
137
  </div>
76
138
  </template>
77
139
 
@@ -79,7 +141,7 @@
79
141
  import mixin from "./mixins/form_list";
80
142
 
81
143
  export default {
82
- name: 'form_script:form_list',
83
- mixins: [mixin]
144
+ name: "form_script:form_list",
145
+ mixins: [mixin],
84
146
  };
85
147
  </script>