@egova/egova-api 1.0.122 → 1.0.130
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/dist/index.common.js +54 -5
- package/dist/index.umd.js +54 -5
- package/dist/index.umd.min.js +4 -4
- package/dist/types/src/common/utils/tree-data.d.ts +1 -0
- package/dist/types/src/views/project-detail/service.d.ts +1 -0
- package/dist/types/src/views/project-detail/tree/index.d.ts +1 -0
- package/package.json +2 -2
package/dist/index.common.js
CHANGED
|
@@ -22619,7 +22619,7 @@ module.exports = !STRICT_METHOD ? function forEach(callbackfn /* , thisArg */) {
|
|
|
22619
22619
|
/***/ "193e":
|
|
22620
22620
|
/***/ (function(module, exports) {
|
|
22621
22621
|
|
|
22622
|
-
module.exports = "<article class=\"project-tree\">\r\n <header>\r\n <i-input class=\"diy-input\" search v-model=\"keyword\" @on-search=\"onFilter\" placeholder=\"输入关键字搜索\">\r\n <i-select transfer slot=\"prepend\" v-model=\"type\" @on-change=\"onFilter\" class=\"diy-select\">\r\n <i-option v-for=\"item in typeList\" :key=\"item.value\" :value=\"item.value\">{{item.text}}</i-option>\r\n </i-select>\r\n </i-input>\r\n <div class=\"add\" @click=\"onAddGroup\">\r\n <i class=\"api-icon icon-add\"></i>\r\n <span>新建分组</span>\r\n </div>\r\n </header>\r\n <i-tree :data=\"renderData\" :render=\"renderContent\"></i-tree>\r\n <i-modal\r\n draggable\r\n sticky\r\n reset-drag-position\r\n v-model=\"showGroupModal\"\r\n class=\"diy-modal\"\r\n :mask-closable=\"false\"\r\n transfer\r\n
|
|
22622
|
+
module.exports = "<article class=\"project-tree\">\r\n <header>\r\n <i-input class=\"diy-input\" search v-model=\"keyword\" @on-search=\"onFilter\" placeholder=\"输入关键字搜索\">\r\n <i-select transfer slot=\"prepend\" v-model=\"type\" @on-change=\"onFilter\" class=\"diy-select\">\r\n <i-option v-for=\"item in typeList\" :key=\"item.value\" :value=\"item.value\">{{item.text}}</i-option>\r\n </i-select>\r\n </i-input>\r\n <div class=\"add\" @click=\"onAddGroup\">\r\n <i class=\"api-icon icon-add\"></i>\r\n <span>新建分组</span>\r\n </div>\r\n </header>\r\n <i-tree :data=\"renderData\" :render=\"renderContent\"></i-tree>\r\n <i-modal\r\n draggable\r\n sticky\r\n reset-drag-position\r\n v-model=\"showGroupModal\"\r\n class=\"diy-modal\"\r\n :mask-closable=\"false\"\r\n transfer\r\n :title=\"group.id ? '修改分组': '添加分组'\"\r\n >\r\n <i-form :label-width=\"100\" class=\"diy-form\" label-colon>\r\n <i-form-item label=\"分组名称\">\r\n <i-input class=\"diy-input\" v-model=\"group.name\"></i-input>\r\n </i-form-item>\r\n <i-form-item label=\"分组位置\">\r\n <u-group-select :data=\"groupTree\" :current=\"parent\" @on-select=\"onSelectParent\"></u-group-select>\r\n </i-form-item>\r\n </i-form>\r\n <footer slot=\"footer\">\r\n <i-button class=\"diy-btn-primary\" type=\"primary\" @click.stop=\"onSaveGroup\">确定</i-button>\r\n <i-button class=\"diy-btn-default\" @click.stop=\"onGourpCancel\">取消</i-button>\r\n </footer>\r\n </i-modal>\r\n <i-modal draggable sticky reset-drag-position v-model=\"showInterfaceModal\" class=\"diy-modal\" :mask-closable=\"false\" :title=\"interfaceModel.id ? '修改接口': '添加接口'\">\r\n <i-form :label-width=\"100\" class=\"diy-form\" label-colon>\r\n <i-form-item label=\"接口名称\">\r\n <i-input class=\"diy-input\" v-model=\"interfaceModel.name\"></i-input>\r\n </i-form-item>\r\n <i-form-item label=\"接口位置\">\r\n <u-group-select :data=\"groupTree\" :current=\"parent\" @on-select=\"onSelectParent\"></u-group-select>\r\n </i-form-item>\r\n <i-form-item label=\"接口类型\">\r\n <i-select v-model=\"interfaceModel.method\" class=\"diy-select\" transfer>\r\n <i-option v-for=\"item in typeList\" v-if=\"item.value\" :key=\"item.value\" :value=\"item.value\">{{item.text}}</i-option>\r\n </i-select>\r\n </i-form-item>\r\n </i-form>\r\n <footer slot=\"footer\">\r\n <i-button class=\"diy-btn-primary\" type=\"primary\" @click=\"onSaveInterface\">确定</i-button>\r\n <i-button class=\"diy-btn-default\" @click=\"onInterfaceCancel\">取消</i-button>\r\n </footer>\r\n </i-modal>\r\n <i-modal draggable sticky reset-drag-position v-model=\"showCopyModal\" class=\"diy-modal\" :mask-closable=\"false\" title=\"复制接口\">\r\n <i-form :label-width=\"100\" class=\"diy-form\" label-colon>\r\n <i-form-item label=\"接口名称\" required>\r\n <i-input class=\"diy-input\" v-model=\"copyName\"></i-input>\r\n </i-form-item>\r\n <i-form-item label=\"选择分组\" required>\r\n <u-group-select :isSelector=\"true\" :data=\"groupTree\" :current=\"parent\" @on-select=\"onSelectParent\"></u-group-select>\r\n </i-form-item>\r\n </i-form>\r\n <footer slot=\"footer\">\r\n <i-button class=\"diy-btn-primary\" type=\"primary\" @click=\"onCopy\">确定</i-button>\r\n <i-button class=\"diy-btn-default\" @click=\"onCopyCancel\">取消</i-button>\r\n </footer>\r\n </i-modal>\r\n</article>\r\n"
|
|
22623
22623
|
|
|
22624
22624
|
/***/ }),
|
|
22625
22625
|
|
|
@@ -49153,6 +49153,7 @@ var es_array_concat = __webpack_require__("99af");
|
|
|
49153
49153
|
|
|
49154
49154
|
|
|
49155
49155
|
|
|
49156
|
+
|
|
49156
49157
|
var TreeDataUtil =
|
|
49157
49158
|
/** @class */
|
|
49158
49159
|
function () {
|
|
@@ -49206,6 +49207,34 @@ function () {
|
|
|
49206
49207
|
if (!filterEmpty || v.children.length) arr.push(v);
|
|
49207
49208
|
});
|
|
49208
49209
|
return arr;
|
|
49210
|
+
}; // 查找当前目录节点的完整路径
|
|
49211
|
+
|
|
49212
|
+
|
|
49213
|
+
TreeDataUtil.treeNodeDirectory = function (treeList, id) {
|
|
49214
|
+
if (treeList === void 0) {
|
|
49215
|
+
treeList = [];
|
|
49216
|
+
}
|
|
49217
|
+
|
|
49218
|
+
var directory = "";
|
|
49219
|
+
|
|
49220
|
+
for (var _i = 0, treeList_1 = treeList; _i < treeList_1.length; _i++) {
|
|
49221
|
+
var node = treeList_1[_i];
|
|
49222
|
+
|
|
49223
|
+
if (node.id === id) {
|
|
49224
|
+
directory = node.name;
|
|
49225
|
+
return directory;
|
|
49226
|
+
}
|
|
49227
|
+
|
|
49228
|
+
if (node.children && node.children.length) {
|
|
49229
|
+
directory = TreeDataUtil.treeNodeDirectory(node.children, id);
|
|
49230
|
+
|
|
49231
|
+
if (directory) {
|
|
49232
|
+
return node.name + "/" + directory;
|
|
49233
|
+
}
|
|
49234
|
+
}
|
|
49235
|
+
}
|
|
49236
|
+
|
|
49237
|
+
return "";
|
|
49209
49238
|
};
|
|
49210
49239
|
|
|
49211
49240
|
return TreeDataUtil;
|
|
@@ -50547,7 +50576,6 @@ function (_super) {
|
|
|
50547
50576
|
|
|
50548
50577
|
|
|
50549
50578
|
|
|
50550
|
-
|
|
50551
50579
|
var tree_selector_extends = undefined && undefined.__extends || function () {
|
|
50552
50580
|
var _extendStatics = function extendStatics(d, b) {
|
|
50553
50581
|
_extendStatics = Object.setPrototypeOf || {
|
|
@@ -50620,8 +50648,9 @@ function (_super) {
|
|
|
50620
50648
|
|
|
50621
50649
|
var node = this.getNodeById(this.value, this.tree) || {}; // this.$set(node, "selected", true);
|
|
50622
50650
|
|
|
50623
|
-
this.current = node;
|
|
50624
|
-
|
|
50651
|
+
this.current = node; // this.inputValue = node.name || "";
|
|
50652
|
+
|
|
50653
|
+
this.inputValue = TreeDataUtil.treeNodeDirectory(this.tree, this.value) || "";
|
|
50625
50654
|
};
|
|
50626
50655
|
|
|
50627
50656
|
TreeSelectorComponent.prototype.renderContent = function (h, _a) {
|
|
@@ -51109,6 +51138,8 @@ function (_super) {
|
|
|
51109
51138
|
AddTreeNodeComponent.prototype.modalShow = function (nv) {
|
|
51110
51139
|
if (nv === false) {
|
|
51111
51140
|
this.categoryData = {};
|
|
51141
|
+
} else {
|
|
51142
|
+
this.categoryData.id = this.data.parentId;
|
|
51112
51143
|
}
|
|
51113
51144
|
};
|
|
51114
51145
|
|
|
@@ -58067,6 +58098,14 @@ function (_super) {
|
|
|
58067
58098
|
return this._delete("/unity/api/category/".concat(categoryId));
|
|
58068
58099
|
};
|
|
58069
58100
|
|
|
58101
|
+
ApiService.prototype.saveCategory = function (category) {
|
|
58102
|
+
if (category.id) {
|
|
58103
|
+
return this._put("/unity/api/category", category);
|
|
58104
|
+
} else {
|
|
58105
|
+
return this._post("/unity/api/category", category);
|
|
58106
|
+
}
|
|
58107
|
+
};
|
|
58108
|
+
|
|
58070
58109
|
ApiService.prototype.saveApi = function (api) {
|
|
58071
58110
|
if (api.id) {
|
|
58072
58111
|
return this._put("/unity/api/info", api);
|
|
@@ -58137,6 +58176,12 @@ function (_super) {
|
|
|
58137
58176
|
showErrorMsg: true
|
|
58138
58177
|
}), project_detail_service_metadata("design:type", Function), project_detail_service_metadata("design:paramtypes", [Object]), project_detail_service_metadata("design:returntype", void 0)], ApiService.prototype, "deleteCategory", null);
|
|
58139
58178
|
|
|
58179
|
+
project_detail_service_decorate([serviceHandler("save", {
|
|
58180
|
+
title: "保存分组",
|
|
58181
|
+
showTip: true,
|
|
58182
|
+
showErrorMsg: true
|
|
58183
|
+
}), project_detail_service_metadata("design:type", Function), project_detail_service_metadata("design:paramtypes", [Object]), project_detail_service_metadata("design:returntype", void 0)], ApiService.prototype, "saveCategory", null);
|
|
58184
|
+
|
|
58140
58185
|
project_detail_service_decorate([serviceHandler("save", {
|
|
58141
58186
|
title: "保存接口",
|
|
58142
58187
|
showErrorMsg: true,
|
|
@@ -62589,6 +62634,10 @@ function (_super) {
|
|
|
62589
62634
|
});
|
|
62590
62635
|
};
|
|
62591
62636
|
|
|
62637
|
+
ProjectTree.prototype.onGourpCancel = function () {
|
|
62638
|
+
this.showGroupModal = false;
|
|
62639
|
+
};
|
|
62640
|
+
|
|
62592
62641
|
ProjectTree.prototype.onInterfaceCancel = function () {
|
|
62593
62642
|
this.showInterfaceModal = false;
|
|
62594
62643
|
};
|
|
@@ -62624,7 +62673,7 @@ function (_super) {
|
|
|
62624
62673
|
id: group.parentId,
|
|
62625
62674
|
name: group.parentName
|
|
62626
62675
|
};
|
|
62627
|
-
this.group = group;
|
|
62676
|
+
this.group = group.$clone();
|
|
62628
62677
|
this.showGroupModal = true;
|
|
62629
62678
|
};
|
|
62630
62679
|
|
package/dist/index.umd.js
CHANGED
|
@@ -22628,7 +22628,7 @@ module.exports = !STRICT_METHOD ? function forEach(callbackfn /* , thisArg */) {
|
|
|
22628
22628
|
/***/ "193e":
|
|
22629
22629
|
/***/ (function(module, exports) {
|
|
22630
22630
|
|
|
22631
|
-
module.exports = "<article class=\"project-tree\">\r\n <header>\r\n <i-input class=\"diy-input\" search v-model=\"keyword\" @on-search=\"onFilter\" placeholder=\"输入关键字搜索\">\r\n <i-select transfer slot=\"prepend\" v-model=\"type\" @on-change=\"onFilter\" class=\"diy-select\">\r\n <i-option v-for=\"item in typeList\" :key=\"item.value\" :value=\"item.value\">{{item.text}}</i-option>\r\n </i-select>\r\n </i-input>\r\n <div class=\"add\" @click=\"onAddGroup\">\r\n <i class=\"api-icon icon-add\"></i>\r\n <span>新建分组</span>\r\n </div>\r\n </header>\r\n <i-tree :data=\"renderData\" :render=\"renderContent\"></i-tree>\r\n <i-modal\r\n draggable\r\n sticky\r\n reset-drag-position\r\n v-model=\"showGroupModal\"\r\n class=\"diy-modal\"\r\n :mask-closable=\"false\"\r\n transfer\r\n
|
|
22631
|
+
module.exports = "<article class=\"project-tree\">\r\n <header>\r\n <i-input class=\"diy-input\" search v-model=\"keyword\" @on-search=\"onFilter\" placeholder=\"输入关键字搜索\">\r\n <i-select transfer slot=\"prepend\" v-model=\"type\" @on-change=\"onFilter\" class=\"diy-select\">\r\n <i-option v-for=\"item in typeList\" :key=\"item.value\" :value=\"item.value\">{{item.text}}</i-option>\r\n </i-select>\r\n </i-input>\r\n <div class=\"add\" @click=\"onAddGroup\">\r\n <i class=\"api-icon icon-add\"></i>\r\n <span>新建分组</span>\r\n </div>\r\n </header>\r\n <i-tree :data=\"renderData\" :render=\"renderContent\"></i-tree>\r\n <i-modal\r\n draggable\r\n sticky\r\n reset-drag-position\r\n v-model=\"showGroupModal\"\r\n class=\"diy-modal\"\r\n :mask-closable=\"false\"\r\n transfer\r\n :title=\"group.id ? '修改分组': '添加分组'\"\r\n >\r\n <i-form :label-width=\"100\" class=\"diy-form\" label-colon>\r\n <i-form-item label=\"分组名称\">\r\n <i-input class=\"diy-input\" v-model=\"group.name\"></i-input>\r\n </i-form-item>\r\n <i-form-item label=\"分组位置\">\r\n <u-group-select :data=\"groupTree\" :current=\"parent\" @on-select=\"onSelectParent\"></u-group-select>\r\n </i-form-item>\r\n </i-form>\r\n <footer slot=\"footer\">\r\n <i-button class=\"diy-btn-primary\" type=\"primary\" @click.stop=\"onSaveGroup\">确定</i-button>\r\n <i-button class=\"diy-btn-default\" @click.stop=\"onGourpCancel\">取消</i-button>\r\n </footer>\r\n </i-modal>\r\n <i-modal draggable sticky reset-drag-position v-model=\"showInterfaceModal\" class=\"diy-modal\" :mask-closable=\"false\" :title=\"interfaceModel.id ? '修改接口': '添加接口'\">\r\n <i-form :label-width=\"100\" class=\"diy-form\" label-colon>\r\n <i-form-item label=\"接口名称\">\r\n <i-input class=\"diy-input\" v-model=\"interfaceModel.name\"></i-input>\r\n </i-form-item>\r\n <i-form-item label=\"接口位置\">\r\n <u-group-select :data=\"groupTree\" :current=\"parent\" @on-select=\"onSelectParent\"></u-group-select>\r\n </i-form-item>\r\n <i-form-item label=\"接口类型\">\r\n <i-select v-model=\"interfaceModel.method\" class=\"diy-select\" transfer>\r\n <i-option v-for=\"item in typeList\" v-if=\"item.value\" :key=\"item.value\" :value=\"item.value\">{{item.text}}</i-option>\r\n </i-select>\r\n </i-form-item>\r\n </i-form>\r\n <footer slot=\"footer\">\r\n <i-button class=\"diy-btn-primary\" type=\"primary\" @click=\"onSaveInterface\">确定</i-button>\r\n <i-button class=\"diy-btn-default\" @click=\"onInterfaceCancel\">取消</i-button>\r\n </footer>\r\n </i-modal>\r\n <i-modal draggable sticky reset-drag-position v-model=\"showCopyModal\" class=\"diy-modal\" :mask-closable=\"false\" title=\"复制接口\">\r\n <i-form :label-width=\"100\" class=\"diy-form\" label-colon>\r\n <i-form-item label=\"接口名称\" required>\r\n <i-input class=\"diy-input\" v-model=\"copyName\"></i-input>\r\n </i-form-item>\r\n <i-form-item label=\"选择分组\" required>\r\n <u-group-select :isSelector=\"true\" :data=\"groupTree\" :current=\"parent\" @on-select=\"onSelectParent\"></u-group-select>\r\n </i-form-item>\r\n </i-form>\r\n <footer slot=\"footer\">\r\n <i-button class=\"diy-btn-primary\" type=\"primary\" @click=\"onCopy\">确定</i-button>\r\n <i-button class=\"diy-btn-default\" @click=\"onCopyCancel\">取消</i-button>\r\n </footer>\r\n </i-modal>\r\n</article>\r\n"
|
|
22632
22632
|
|
|
22633
22633
|
/***/ }),
|
|
22634
22634
|
|
|
@@ -49162,6 +49162,7 @@ var es_array_concat = __webpack_require__("99af");
|
|
|
49162
49162
|
|
|
49163
49163
|
|
|
49164
49164
|
|
|
49165
|
+
|
|
49165
49166
|
var TreeDataUtil =
|
|
49166
49167
|
/** @class */
|
|
49167
49168
|
function () {
|
|
@@ -49215,6 +49216,34 @@ function () {
|
|
|
49215
49216
|
if (!filterEmpty || v.children.length) arr.push(v);
|
|
49216
49217
|
});
|
|
49217
49218
|
return arr;
|
|
49219
|
+
}; // 查找当前目录节点的完整路径
|
|
49220
|
+
|
|
49221
|
+
|
|
49222
|
+
TreeDataUtil.treeNodeDirectory = function (treeList, id) {
|
|
49223
|
+
if (treeList === void 0) {
|
|
49224
|
+
treeList = [];
|
|
49225
|
+
}
|
|
49226
|
+
|
|
49227
|
+
var directory = "";
|
|
49228
|
+
|
|
49229
|
+
for (var _i = 0, treeList_1 = treeList; _i < treeList_1.length; _i++) {
|
|
49230
|
+
var node = treeList_1[_i];
|
|
49231
|
+
|
|
49232
|
+
if (node.id === id) {
|
|
49233
|
+
directory = node.name;
|
|
49234
|
+
return directory;
|
|
49235
|
+
}
|
|
49236
|
+
|
|
49237
|
+
if (node.children && node.children.length) {
|
|
49238
|
+
directory = TreeDataUtil.treeNodeDirectory(node.children, id);
|
|
49239
|
+
|
|
49240
|
+
if (directory) {
|
|
49241
|
+
return node.name + "/" + directory;
|
|
49242
|
+
}
|
|
49243
|
+
}
|
|
49244
|
+
}
|
|
49245
|
+
|
|
49246
|
+
return "";
|
|
49218
49247
|
};
|
|
49219
49248
|
|
|
49220
49249
|
return TreeDataUtil;
|
|
@@ -50556,7 +50585,6 @@ function (_super) {
|
|
|
50556
50585
|
|
|
50557
50586
|
|
|
50558
50587
|
|
|
50559
|
-
|
|
50560
50588
|
var tree_selector_extends = undefined && undefined.__extends || function () {
|
|
50561
50589
|
var _extendStatics = function extendStatics(d, b) {
|
|
50562
50590
|
_extendStatics = Object.setPrototypeOf || {
|
|
@@ -50629,8 +50657,9 @@ function (_super) {
|
|
|
50629
50657
|
|
|
50630
50658
|
var node = this.getNodeById(this.value, this.tree) || {}; // this.$set(node, "selected", true);
|
|
50631
50659
|
|
|
50632
|
-
this.current = node;
|
|
50633
|
-
|
|
50660
|
+
this.current = node; // this.inputValue = node.name || "";
|
|
50661
|
+
|
|
50662
|
+
this.inputValue = TreeDataUtil.treeNodeDirectory(this.tree, this.value) || "";
|
|
50634
50663
|
};
|
|
50635
50664
|
|
|
50636
50665
|
TreeSelectorComponent.prototype.renderContent = function (h, _a) {
|
|
@@ -51118,6 +51147,8 @@ function (_super) {
|
|
|
51118
51147
|
AddTreeNodeComponent.prototype.modalShow = function (nv) {
|
|
51119
51148
|
if (nv === false) {
|
|
51120
51149
|
this.categoryData = {};
|
|
51150
|
+
} else {
|
|
51151
|
+
this.categoryData.id = this.data.parentId;
|
|
51121
51152
|
}
|
|
51122
51153
|
};
|
|
51123
51154
|
|
|
@@ -58076,6 +58107,14 @@ function (_super) {
|
|
|
58076
58107
|
return this._delete("/unity/api/category/".concat(categoryId));
|
|
58077
58108
|
};
|
|
58078
58109
|
|
|
58110
|
+
ApiService.prototype.saveCategory = function (category) {
|
|
58111
|
+
if (category.id) {
|
|
58112
|
+
return this._put("/unity/api/category", category);
|
|
58113
|
+
} else {
|
|
58114
|
+
return this._post("/unity/api/category", category);
|
|
58115
|
+
}
|
|
58116
|
+
};
|
|
58117
|
+
|
|
58079
58118
|
ApiService.prototype.saveApi = function (api) {
|
|
58080
58119
|
if (api.id) {
|
|
58081
58120
|
return this._put("/unity/api/info", api);
|
|
@@ -58146,6 +58185,12 @@ function (_super) {
|
|
|
58146
58185
|
showErrorMsg: true
|
|
58147
58186
|
}), project_detail_service_metadata("design:type", Function), project_detail_service_metadata("design:paramtypes", [Object]), project_detail_service_metadata("design:returntype", void 0)], ApiService.prototype, "deleteCategory", null);
|
|
58148
58187
|
|
|
58188
|
+
project_detail_service_decorate([serviceHandler("save", {
|
|
58189
|
+
title: "保存分组",
|
|
58190
|
+
showTip: true,
|
|
58191
|
+
showErrorMsg: true
|
|
58192
|
+
}), project_detail_service_metadata("design:type", Function), project_detail_service_metadata("design:paramtypes", [Object]), project_detail_service_metadata("design:returntype", void 0)], ApiService.prototype, "saveCategory", null);
|
|
58193
|
+
|
|
58149
58194
|
project_detail_service_decorate([serviceHandler("save", {
|
|
58150
58195
|
title: "保存接口",
|
|
58151
58196
|
showErrorMsg: true,
|
|
@@ -62598,6 +62643,10 @@ function (_super) {
|
|
|
62598
62643
|
});
|
|
62599
62644
|
};
|
|
62600
62645
|
|
|
62646
|
+
ProjectTree.prototype.onGourpCancel = function () {
|
|
62647
|
+
this.showGroupModal = false;
|
|
62648
|
+
};
|
|
62649
|
+
|
|
62601
62650
|
ProjectTree.prototype.onInterfaceCancel = function () {
|
|
62602
62651
|
this.showInterfaceModal = false;
|
|
62603
62652
|
};
|
|
@@ -62633,7 +62682,7 @@ function (_super) {
|
|
|
62633
62682
|
id: group.parentId,
|
|
62634
62683
|
name: group.parentName
|
|
62635
62684
|
};
|
|
62636
|
-
this.group = group;
|
|
62685
|
+
this.group = group.$clone();
|
|
62637
62686
|
this.showGroupModal = true;
|
|
62638
62687
|
};
|
|
62639
62688
|
|