cloud-web-corejs 1.0.54-dev.460 → 1.0.54-dev.461

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.
@@ -1,87 +1,172 @@
1
- <template>
2
- <div id="containt">
3
- <el-tabs v-model="activeName" class="tab-box">
4
- <el-tab-pane :label="$t1('列表')" name="second">
5
- <div class="grid-height">
6
- <vxe-grid ref="table-m1" v-bind="vxeOption" @resizable-change="$vxeTableUtil.onColumnWitchChange"
7
- @custom="$vxeTableUtil.customHandle">
8
- <template #form>
9
- <tableForm :formData.sync="formData" @searchEvent="searchEvent" @resetEvent="resetEvent">
10
- <template #buttonLeft>
11
- <vxe-button status="success" class="button-sty" icon="el-icon-download" @click="jsonImport">
12
- {{ $t1('导入发布') }}
13
- </vxe-button>
14
- <vxe-button status="success" class="button-sty" icon="el-icon-upload2" @click="jsonExport"
15
- v-if="isBdFlag">{{ $t1('导出发布') }}
16
- </vxe-button>
17
- </template>
18
- <template #buttonRight>
19
- <vxe-button icon="el-icon-brush" class="button-sty" @click="resetEvent" type="text" status="primary"
20
- plain>{{ $t1('重置') }}
21
- </vxe-button>
22
- <vxe-button status="warning" icon="el-icon-search" class="button-sty" @click="searchEvent">
23
- {{ $t1('搜索') }}
24
- </vxe-button>
25
- </template>
26
- </tableForm>
27
- </template>
28
- <template #editOrders="{row}">
29
- <base-input-number v-model="row.orders"></base-input-number>
30
- </template>
31
- <template #taPrefix="{row}">
32
- <el-input v-model="row.taPrefix" clearable v-if="row.parent"></el-input>
33
- <span v-else>{{row.taPrefix}}</span>
34
- </template>
35
- <template #operate="obj">
36
- <div class="cell-operate">
37
- <template v-if="$refs['table-m1'].isActiveByRow(obj.row)">
38
- <template v-if="isBdFlag">
39
- <a @click="saveRowEvent(obj)" class="a-link">
40
- <el-tooltip :enterable="false" effect="dark" :content="$t1('保存')" placement="top"
41
- popper-class="tooltip-skin"><i class="el-icon-circle-check"></i></el-tooltip>
42
- </a>
43
- <a @click="cancleRowEvent(obj)" class="a-link" v-if="hasSaveRow(obj.row)">
44
- <el-tooltip :enterable="false" effect="dark" :content="$t1('取消行编辑')" placement="top"
45
- popper-class="tooltip-skin"><i class="el-icon-circle-close"></i></el-tooltip>
46
- </a>
47
- <a @click="removeRowEvent(obj)" class="a-link" v-if="!hasSaveRow(obj.row)">
48
- <el-tooltip :enterable="false" effect="dark" :content="$t1('删除')" placement="top"
49
- popper-class="tooltip-skin"><i class="el-icon-delete"></i></el-tooltip>
50
- </a>
51
- </template>
52
- </template>
53
- <template v-else>
54
- <template v-if="isBdFlag">
55
- <a class="a-link" @click="insertChildEvent(obj)" v-if="obj.row.editAuth">
56
- <el-tooltip :enterable="false" effect="dark" :content="$t1('新增')" placement="top"
57
- popper-class="tooltip-skin"><i class="el-icon-circle-plus-outline"></i></el-tooltip>
58
- </a>
59
- <a @click="editRowEvent(obj)" class="a-link" v-if="!obj.row.createDate || obj.row.editAuth">
60
- <el-tooltip :enterable="false" effect="dark" :content="$t1('行编辑')" placement="top"
61
- popper-class="tooltip-skin"><i class="el-icon-edit-outline"></i></el-tooltip>
62
- </a>
63
- </template>
64
- <a @click="openAuthDialog(obj)" class="a-link" v-if="obj.row.authAuth">
65
- <el-tooltip :enterable="false" effect="dark" :content="$t1('权限')" placement="top"
66
- popper-class="tooltip-skin"><i class="el-icon-setting"></i></el-tooltip>
67
- </a>
68
- </template>
69
- </div>
70
- </template>
71
- </vxe-grid>
72
- </div>
73
- </el-tab-pane>
74
- </el-tabs>
75
- <authDialog v-if="showAuthDialog" :visiable.sync="showAuthDialog" :currentMenuKind="currentMenuKind"
76
- @confirm="confirmAuthDialog"
77
- multi="false"/>
78
- </div>
79
- </template>
80
- <script>
81
- import mixin from "./mixins/list";
82
-
83
- export default {
84
- name: 'menu_kind:list',
85
- mixins: [mixin]
86
- }
87
- </script>
1
+ <template>
2
+ <div id="containt">
3
+ <el-tabs v-model="activeName" class="tab-box">
4
+ <el-tab-pane :label="$t1('列表')" name="second">
5
+ <div class="grid-height">
6
+ <vxe-grid
7
+ ref="table-m1"
8
+ v-bind="vxeOption"
9
+ @resizable-change="$vxeTableUtil.onColumnWitchChange"
10
+ @custom="$vxeTableUtil.customHandle"
11
+ >
12
+ <template #form>
13
+ <tableForm
14
+ :formData.sync="formData"
15
+ @searchEvent="searchEvent"
16
+ @resetEvent="resetEvent"
17
+ >
18
+ <template #buttonLeft>
19
+ <vxe-button
20
+ status="success"
21
+ class="button-sty"
22
+ icon="el-icon-download"
23
+ @click="jsonImport"
24
+ >
25
+ {{ $t1("导入发布") }}
26
+ </vxe-button>
27
+ <vxe-button
28
+ status="success"
29
+ class="button-sty"
30
+ icon="el-icon-upload2"
31
+ @click="jsonExport"
32
+ v-if="isBdFlag"
33
+ >{{ $t1("导出发布") }}
34
+ </vxe-button>
35
+ </template>
36
+ <template #buttonRight>
37
+ <vxe-button
38
+ icon="el-icon-brush"
39
+ class="button-sty"
40
+ @click="resetEvent"
41
+ type="text"
42
+ status="primary"
43
+ plain
44
+ >{{ $t1("重置") }}
45
+ </vxe-button>
46
+ <vxe-button
47
+ status="warning"
48
+ icon="el-icon-search"
49
+ class="button-sty"
50
+ @click="searchEvent"
51
+ >
52
+ {{ $t1("搜索") }}
53
+ </vxe-button>
54
+ </template>
55
+ </tableForm>
56
+ </template>
57
+ <template #editOrders="{ row }">
58
+ <base-input-number v-model="row.orders"></base-input-number>
59
+ </template>
60
+ <template #taPrefix="{ row }">
61
+ <el-input v-model="row.taPrefix" clearable v-if="row.parent"></el-input>
62
+ <span v-else>{{ row.taPrefix }}</span>
63
+ </template>
64
+ <template #operate="obj">
65
+ <div class="cell-operate">
66
+ <template v-if="$refs['table-m1'].isActiveByRow(obj.row)">
67
+ <template v-if="isBdFlag">
68
+ <a @click="saveRowEvent(obj)" class="a-link">
69
+ <el-tooltip
70
+ :enterable="false"
71
+ effect="dark"
72
+ :content="$t1('保存')"
73
+ placement="top"
74
+ popper-class="tooltip-skin"
75
+ ><i class="el-icon-circle-check"></i
76
+ ></el-tooltip>
77
+ </a>
78
+ <a
79
+ @click="cancleRowEvent(obj)"
80
+ class="a-link"
81
+ v-if="hasSaveRow(obj.row)"
82
+ >
83
+ <el-tooltip
84
+ :enterable="false"
85
+ effect="dark"
86
+ :content="$t1('取消行编辑')"
87
+ placement="top"
88
+ popper-class="tooltip-skin"
89
+ ><i class="el-icon-circle-close"></i
90
+ ></el-tooltip>
91
+ </a>
92
+ <a
93
+ @click="removeRowEvent(obj)"
94
+ class="a-link"
95
+ v-if="!hasSaveRow(obj.row)"
96
+ >
97
+ <el-tooltip
98
+ :enterable="false"
99
+ effect="dark"
100
+ :content="$t1('删除')"
101
+ placement="top"
102
+ popper-class="tooltip-skin"
103
+ ><i class="el-icon-delete"></i
104
+ ></el-tooltip>
105
+ </a>
106
+ </template>
107
+ </template>
108
+ <template v-else>
109
+ <template v-if="isBdFlag">
110
+ <a
111
+ class="a-link"
112
+ @click="insertChildEvent(obj)"
113
+ v-if="obj.row.editAuth"
114
+ >
115
+ <el-tooltip
116
+ :enterable="false"
117
+ effect="dark"
118
+ :content="$t1('新增')"
119
+ placement="top"
120
+ popper-class="tooltip-skin"
121
+ ><i class="el-icon-circle-plus-outline"></i
122
+ ></el-tooltip>
123
+ </a>
124
+ <a
125
+ @click="editRowEvent(obj)"
126
+ class="a-link"
127
+ v-if="!obj.row.createDate || obj.row.editAuth"
128
+ >
129
+ <el-tooltip
130
+ :enterable="false"
131
+ effect="dark"
132
+ :content="$t1('行编辑')"
133
+ placement="top"
134
+ popper-class="tooltip-skin"
135
+ ><i class="el-icon-edit-outline"></i
136
+ ></el-tooltip>
137
+ </a>
138
+ </template>
139
+ <a @click="openAuthDialog(obj)" class="a-link" v-if="obj.row.authAuth">
140
+ <el-tooltip
141
+ :enterable="false"
142
+ effect="dark"
143
+ :content="$t1('权限')"
144
+ placement="top"
145
+ popper-class="tooltip-skin"
146
+ ><i class="el-icon-setting"></i
147
+ ></el-tooltip>
148
+ </a>
149
+ </template>
150
+ </div>
151
+ </template>
152
+ </vxe-grid>
153
+ </div>
154
+ </el-tab-pane>
155
+ </el-tabs>
156
+ <authDialog
157
+ v-if="showAuthDialog"
158
+ :visiable.sync="showAuthDialog"
159
+ :currentMenuKind="currentMenuKind"
160
+ @confirm="confirmAuthDialog"
161
+ multi="false"
162
+ />
163
+ </div>
164
+ </template>
165
+ <script>
166
+ import mixin from "./mixins/list";
167
+
168
+ export default {
169
+ name: "menu_kind:list",
170
+ mixins: [mixin],
171
+ };
172
+ </script>
@@ -1,128 +1,190 @@
1
- <template>
2
- <div id="containt">
3
- <x-tabs ref="xTabs" v-model="activeName" class="tab-box">
4
- <el-tab-pane :label="$t1('常规')" name="first">
5
- <editView v-if="showEdit" visible-key="showEdit" :_dataId.sync="dataId" :currentFormType="currentFormType"
6
- :parent-target="_self" @reload="$reloadHandle" :otherFlag="otherFlag"></editView>
7
- </el-tab-pane>
8
- <el-tab-pane :label="$t1('列表')" name="second">
9
- <div class="tree-box fl">
10
- <div class="tit"><b>{{ $t1('表单分类') }}</b></div>
11
- <div class="tree-btns" style="margin-top: 10px;">
12
- </div>
13
- <el-tree
14
- v-if="showTree"
15
- :props="defaultProps"
16
- :load="loadNode"
17
- node-key="id"
18
- ref="tree"
19
- highlight-current
20
- lazy
21
- :expand-on-click-node="false"
22
- @node-click="handleNodeClick"
23
- class="tree-list"
24
- icon-class="el-icon-arrow-down"
25
- ></el-tree>
26
- </div>
27
- <label id="labBtn">
28
- <div class="icon">
29
- <i class="el-icon-more"></i>
30
- <i class="el-icon-more"></i>
31
- </div>
32
- </label>
33
- <div class="main-right fr" style="padding-left:6px;">
34
- <div class="grid-height">
35
- <vxe-grid ref="table-m1" v-bind="vxeOption" @resizable-change="$vxeTableUtil.onColumnWitchChange"
36
- @custom="$vxeTableUtil.customHandle">
37
- <template #form>
38
- <tableForm :formData.sync="formData" @searchEvent="searchEvent" @resetEvent="resetEvent">
39
- <template #buttonLeft>
40
- <vxe-button status="primary" class="button-sty" icon="el-icon-plus" @click="openEditDialog"
41
- v-if="isDev && currentFormType.editAuth===1">{{ $t1('新增') }}
42
- </vxe-button>
43
- <vxe-button status="success" class="button-sty" icon="el-icon-download" @click="jsonImport">{{ $t1('导入发布') }}
44
- </vxe-button>
45
- <vxe-button status="success" class="button-sty" icon="el-icon-upload2" @click="jsonExport"
46
- v-if="isDev && currentFormType.exportAuth===1">{{ $t1('导出发布') }}
47
- </vxe-button>
48
- <projectTagAddButton :option="addProjectTagOption"
49
- v-if="isDev && (currentFormType.editAuth===1 || otherFlag)"></projectTagAddButton>
50
- <projectTagDeleteButton :option="deleteProjectTagOption"
51
- v-if="isDev && (currentFormType.editAuth===1 || otherFlag)"></projectTagDeleteButton>
52
- </template>
53
- <template #buttonRight>
54
- <vxe-button icon="el-icon-brush" class="button-sty" @click="resetEvent" type="text" status="primary"
55
- plain>{{ $t1('重置') }}
56
- </vxe-button>
57
- <vxe-button status="warning" icon="el-icon-search" class="button-sty" @click="searchEvent">
58
- {{ $t1('搜索') }}
59
- </vxe-button>
60
- </template>
61
- <template #menuKindName>
62
- <vxe-form-item :title="$t1('表单分类') + ':'" field="tag">
63
- <template v-slot>
64
- <el-input v-model="currentMenuKindName" disabled></el-input>
65
- </template>
66
- </vxe-form-item>
67
- </template>
68
- <template #tag>
69
- <vxe-form-item :title="$t1('项目标签') + ':'" field="tag">
70
- <template v-slot>
71
- <el-input
72
- class="search-input"
73
- max="200"
74
- :value="getTabNames()"
75
- @clear="
76
- checkTags = [];
77
- "
78
- v-el-readonly
79
- clearable
80
- >
81
- <i slot="suffix" class="el-input__icon el-icon-search" @click="openProjectTagDialog3"></i>
82
- </el-input>
83
- </template>
84
- </vxe-form-item>
85
- </template>
86
- </tableForm>
87
- </template>
88
- <template #tag="{row}">
89
- <projectTagView v-model="row.szTaMbTagDTOs" :readonly="true"></projectTagView>
90
- </template>
91
- </vxe-grid>
92
- </div>
93
- </div>
94
- </el-tab-pane>
95
- <template #editTab="{tab,index,reloadTabContent}">
96
- <el-tab-pane :key="tab.data.id" :label="tab.data.taCh" :name="tab.data.id+''"
97
- :closable="true">
98
- <editView v-if="tab.showContent" :_dataId="tab.dataId" :currentFormType="currentFormType"
99
- :parent-target="_self"
100
- @reload="reloadTabContent" :otherFlag="otherFlag"></editView>
101
- </el-tab-pane>
102
- </template>
103
- </x-tabs>
104
-
105
- <MenuKindDialog v-if="showMenuKindDialog"
106
- :visiable.sync="showMenuKindDialog"
107
- @confirm="confirmInsertMenuKind"
108
- :param="{ taType: 0,moveButton:true }"
109
- :checkRowIds="szTaMbIds"
110
- :multi="false"
111
- />
112
- <projectTagDialog v-if="showProjectTagDialog3"
113
- :visiable.sync="showProjectTagDialog3"
114
- @confirm="confirmProjectTagDialog3"
115
- :rows="checkTags"
116
- :multi="true"></projectTagDialog>
117
-
118
- </div>
119
- </template>
120
-
121
- <script>
122
- import mixin from "./mixins/list";
123
-
124
- export default {
125
- name: 'table_model:list',
126
- mixins: [mixin]
127
- }
128
- </script>
1
+ <template>
2
+ <div id="containt">
3
+ <x-tabs ref="xTabs" v-model="activeName" class="tab-box">
4
+ <el-tab-pane :label="$t1('常规')" name="first">
5
+ <editView
6
+ v-if="showEdit"
7
+ visible-key="showEdit"
8
+ :_dataId.sync="dataId"
9
+ :currentFormType="currentFormType"
10
+ :parent-target="_self"
11
+ @reload="$reloadHandle"
12
+ :otherFlag="otherFlag"
13
+ ></editView>
14
+ </el-tab-pane>
15
+ <el-tab-pane :label="$t1('列表')" name="second">
16
+ <div class="tree-box fl">
17
+ <div class="tit">
18
+ <b>{{ $t1("表单分类") }}</b>
19
+ </div>
20
+ <div class="tree-btns" style="margin-top: 10px"></div>
21
+ <el-tree
22
+ v-if="showTree"
23
+ :props="defaultProps"
24
+ :load="loadNode"
25
+ node-key="id"
26
+ ref="tree"
27
+ highlight-current
28
+ lazy
29
+ :expand-on-click-node="false"
30
+ @node-click="handleNodeClick"
31
+ class="tree-list"
32
+ icon-class="el-icon-arrow-down"
33
+ ></el-tree>
34
+ </div>
35
+ <label id="labBtn">
36
+ <div class="icon">
37
+ <i class="el-icon-more"></i>
38
+ <i class="el-icon-more"></i>
39
+ </div>
40
+ </label>
41
+ <div class="main-right fr" style="padding-left: 6px">
42
+ <div class="grid-height">
43
+ <vxe-grid
44
+ ref="table-m1"
45
+ v-bind="vxeOption"
46
+ @resizable-change="$vxeTableUtil.onColumnWitchChange"
47
+ @custom="$vxeTableUtil.customHandle"
48
+ >
49
+ <template #form>
50
+ <tableForm
51
+ :formData.sync="formData"
52
+ @searchEvent="searchEvent"
53
+ @resetEvent="resetEvent"
54
+ >
55
+ <template #buttonLeft>
56
+ <vxe-button
57
+ status="primary"
58
+ class="button-sty"
59
+ icon="el-icon-plus"
60
+ @click="openEditDialog"
61
+ v-if="isDev && currentFormType.addAuth === 1"
62
+ >{{ $t1("新增") }}
63
+ </vxe-button>
64
+ <vxe-button
65
+ status="success"
66
+ class="button-sty"
67
+ icon="el-icon-download"
68
+ @click="jsonImport"
69
+ >{{ $t1("导入发布") }}
70
+ </vxe-button>
71
+ <vxe-button
72
+ status="success"
73
+ class="button-sty"
74
+ icon="el-icon-upload2"
75
+ @click="jsonExport"
76
+ v-if="isDev && currentFormType.exportAuth === 1"
77
+ >{{ $t1("导出发布") }}
78
+ </vxe-button>
79
+ <projectTagAddButton
80
+ :option="addProjectTagOption"
81
+ v-if="isDev && (currentFormType.editAuth === 1 || otherFlag)"
82
+ ></projectTagAddButton>
83
+ <projectTagDeleteButton
84
+ :option="deleteProjectTagOption"
85
+ v-if="isDev && (currentFormType.editAuth === 1 || otherFlag)"
86
+ ></projectTagDeleteButton>
87
+ </template>
88
+ <template #buttonRight>
89
+ <vxe-button
90
+ icon="el-icon-brush"
91
+ class="button-sty"
92
+ @click="resetEvent"
93
+ type="text"
94
+ status="primary"
95
+ plain
96
+ >{{ $t1("重置") }}
97
+ </vxe-button>
98
+ <vxe-button
99
+ status="warning"
100
+ icon="el-icon-search"
101
+ class="button-sty"
102
+ @click="searchEvent"
103
+ >
104
+ {{ $t1("搜索") }}
105
+ </vxe-button>
106
+ </template>
107
+ <template #menuKindName>
108
+ <vxe-form-item :title="$t1('表单分类') + ':'" field="tag">
109
+ <template v-slot>
110
+ <el-input v-model="currentMenuKindName" disabled></el-input>
111
+ </template>
112
+ </vxe-form-item>
113
+ </template>
114
+ <template #tag>
115
+ <vxe-form-item :title="$t1('项目标签') + ':'" field="tag">
116
+ <template v-slot>
117
+ <el-input
118
+ class="search-input"
119
+ max="200"
120
+ :value="getTabNames()"
121
+ @clear="checkTags = []"
122
+ v-el-readonly
123
+ clearable
124
+ >
125
+ <i
126
+ slot="suffix"
127
+ class="el-input__icon el-icon-search"
128
+ @click="openProjectTagDialog3"
129
+ ></i>
130
+ </el-input>
131
+ </template>
132
+ </vxe-form-item>
133
+ </template>
134
+ </tableForm>
135
+ </template>
136
+ <template #tag="{ row }">
137
+ <projectTagView
138
+ v-model="row.szTaMbTagDTOs"
139
+ :readonly="true"
140
+ ></projectTagView>
141
+ </template>
142
+ </vxe-grid>
143
+ </div>
144
+ </div>
145
+ </el-tab-pane>
146
+ <template #editTab="{ tab, index, reloadTabContent }">
147
+ <el-tab-pane
148
+ :key="tab.data.id"
149
+ :label="tab.data.taCh"
150
+ :name="tab.data.id + ''"
151
+ :closable="true"
152
+ >
153
+ <editView
154
+ v-if="tab.showContent"
155
+ :_dataId="tab.dataId"
156
+ :currentFormType="currentFormType"
157
+ :parent-target="_self"
158
+ @reload="reloadTabContent"
159
+ :otherFlag="otherFlag"
160
+ ></editView>
161
+ </el-tab-pane>
162
+ </template>
163
+ </x-tabs>
164
+
165
+ <MenuKindDialog
166
+ v-if="showMenuKindDialog"
167
+ :visiable.sync="showMenuKindDialog"
168
+ @confirm="confirmInsertMenuKind"
169
+ :param="{ taType: 0, moveButton: true }"
170
+ :checkRowIds="szTaMbIds"
171
+ :multi="false"
172
+ />
173
+ <projectTagDialog
174
+ v-if="showProjectTagDialog3"
175
+ :visiable.sync="showProjectTagDialog3"
176
+ @confirm="confirmProjectTagDialog3"
177
+ :rows="checkTags"
178
+ :multi="true"
179
+ ></projectTagDialog>
180
+ </div>
181
+ </template>
182
+
183
+ <script>
184
+ import mixin from "./mixins/list";
185
+
186
+ export default {
187
+ name: "table_model:list",
188
+ mixins: [mixin],
189
+ };
190
+ </script>