Commit f672bb61 by crushh

update: dist

parent fce6a00b
......@@ -134,11 +134,14 @@ export default {
getMemberGroupList() {
memberGroupList({
type: 0,
requestProject: 'gic-member-tag-web'
requestProject: 'gic-member-tag-web',
pageSize: 99999
})
.then(res => {
if (res.errorCode == 0) {
this.groupList = res.result.filter(el => el.classifyName != '未分类').map(item => ({
console.log(res.result)
const { result} = res.result;
this.groupList = result.filter(el => el.classifyName != '未分类').map(item => ({
...item,
edit: false
}));
......
......@@ -842,10 +842,11 @@ export default {
},
getMemberGroupList() {
memberGroupList({
requestProject: 'gic-member-tag-web'
requestProject: 'gic-member-tag-web',
pageSize: 99999,
}).then(res => {
if (res.errorCode == 0) {
this.options[2].children = res.result.filter(el => el.classifyName != '未分类');
this.options[2].children = res.result.result.filter(el => el.classifyName != '未分类');
}
});
},
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment