mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/fe-manage.git
synced 2025-12-15 13:56:45 +08:00
--fix bug
This commit is contained in:
@@ -99,7 +99,7 @@ const pagination = computed(() => ({
|
|||||||
}));
|
}));
|
||||||
const changePagination = (e) => {
|
const changePagination = (e) => {
|
||||||
params.value[props.pageKey] = e;
|
params.value[props.pageKey] = e;
|
||||||
onFetch();
|
nextTick(onFetch);
|
||||||
};
|
};
|
||||||
|
|
||||||
function reset(v = {}) {
|
function reset(v = {}) {
|
||||||
|
|||||||
@@ -435,6 +435,10 @@ const props = defineProps({
|
|||||||
type: Array,
|
type: Array,
|
||||||
default: () => [],
|
default: () => [],
|
||||||
},
|
},
|
||||||
|
params: {
|
||||||
|
type: Object,
|
||||||
|
default: () => ({}),
|
||||||
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
const { loading: stuAsyncLoading, start } = useAsyncStu(props.id, props.type, getStuList);
|
const { loading: stuAsyncLoading, start } = useAsyncStu(props.id, props.type, getStuList);
|
||||||
@@ -559,9 +563,11 @@ const tableParam = ref({
|
|||||||
studentDepartName: null, //部门名称
|
studentDepartName: null, //部门名称
|
||||||
topFlag: null, //是否是优秀学员
|
topFlag: null, //是否是优秀学员
|
||||||
pageNo: 1,
|
pageNo: 1,
|
||||||
|
status: 1,
|
||||||
pageSize: 10,
|
pageSize: 10,
|
||||||
type: props.type,
|
type: props.type,
|
||||||
pid: props.id,
|
pid: props.id,
|
||||||
|
...props.params
|
||||||
});
|
});
|
||||||
|
|
||||||
const checkgroupParam = ref({
|
const checkgroupParam = ref({
|
||||||
|
|||||||
@@ -1250,6 +1250,7 @@
|
|||||||
<TableStudent
|
<TableStudent
|
||||||
:type="3"
|
:type="3"
|
||||||
:id="offcoursePlanId"
|
:id="offcoursePlanId"
|
||||||
|
:params="{status:1}"
|
||||||
:columns="stuColumns"
|
:columns="stuColumns"
|
||||||
:visable="sm_hs"
|
:visable="sm_hs"
|
||||||
:permissions="permissions"
|
:permissions="permissions"
|
||||||
|
|||||||
Reference in New Issue
Block a user