mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/fe-manage.git
synced 2025-12-16 14:26:45 +08:00
feat:增加授权
This commit is contained in:
@@ -210,6 +210,10 @@ export default {
|
||||
type: Number,
|
||||
default: null,
|
||||
},
|
||||
classify: {
|
||||
type: String,
|
||||
default: null,
|
||||
},
|
||||
},
|
||||
setup(props, ctx) {
|
||||
const store = useStore();
|
||||
@@ -567,7 +571,7 @@ export default {
|
||||
state.tableDataTotal = 0;
|
||||
return;
|
||||
}
|
||||
console.log("obj", obj);
|
||||
// console.log("obj", obj);
|
||||
api
|
||||
.getMemberInfo(obj)
|
||||
.then((res) => {
|
||||
@@ -606,7 +610,14 @@ export default {
|
||||
keyWord: "",
|
||||
tag: 1, //归属权
|
||||
opt: 1, //查询
|
||||
type: 2, //项目
|
||||
type:
|
||||
props.classify === "project"
|
||||
? 2
|
||||
: props.classify === "learnPath"
|
||||
? 1
|
||||
: props.classify === "course"
|
||||
? 3
|
||||
: null,
|
||||
refId: props.selectProjectId, //项目id
|
||||
// refId: 64,
|
||||
pageNo: 1,
|
||||
@@ -629,7 +640,14 @@ export default {
|
||||
keyWord: "",
|
||||
tag: 2, //归属权
|
||||
opt: 3, //修改
|
||||
type: 2, //项目
|
||||
type:
|
||||
props.classify === "project"
|
||||
? 2
|
||||
: props.classify === "learnPath"
|
||||
? 1
|
||||
: props.classify === "course"
|
||||
? 3
|
||||
: null,
|
||||
refId: props.selectProjectId, //项目id
|
||||
// refId: 64,
|
||||
pageNo: 1,
|
||||
|
||||
Reference in New Issue
Block a user