mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/fe-manage.git
synced 2025-12-20 08:16:46 +08:00
去掉debugger
This commit is contained in:
@@ -436,7 +436,6 @@ const disabledDate = (current) => {
|
|||||||
|
|
||||||
// 系统考试
|
// 系统考试
|
||||||
async function confirm() {
|
async function confirm() {
|
||||||
debugger
|
|
||||||
await validate().catch(({errorFields}) => {
|
await validate().catch(({errorFields}) => {
|
||||||
message.warning(errorFields[0].errors.join());
|
message.warning(errorFields[0].errors.join());
|
||||||
throw Error("数据校验不通过")
|
throw Error("数据校验不通过")
|
||||||
|
|||||||
@@ -382,7 +382,6 @@ const getStu = () => {
|
|||||||
pid: props.id,
|
pid: props.id,
|
||||||
type: props.type
|
type: props.type
|
||||||
};
|
};
|
||||||
debugger
|
|
||||||
projectListTotal.value = -1;
|
projectListTotal.value = -1;
|
||||||
console.log("获取项目学员", obj);
|
console.log("获取项目学员", obj);
|
||||||
getStuPage(obj).then((res) => {
|
getStuPage(obj).then((res) => {
|
||||||
|
|||||||
@@ -478,7 +478,6 @@ const stuPagination = computed(() => ({
|
|||||||
}));
|
}));
|
||||||
|
|
||||||
function changePagination(page) {
|
function changePagination(page) {
|
||||||
debugger
|
|
||||||
tableParam.value.pageNo = page;
|
tableParam.value.pageNo = page;
|
||||||
getStuList();
|
getStuList();
|
||||||
}
|
}
|
||||||
@@ -486,7 +485,6 @@ function changePagination(page) {
|
|||||||
function getStuList() {
|
function getStuList() {
|
||||||
tableData.value.loading = true;
|
tableData.value.loading = true;
|
||||||
console.log("tableParam.value", tableParam.value);
|
console.log("tableParam.value", tableParam.value);
|
||||||
debugger
|
|
||||||
getStuPage(tableParam.value).then((res) => {
|
getStuPage(tableParam.value).then((res) => {
|
||||||
console.log("学员管理-获取学员", res.data);
|
console.log("学员管理-获取学员", res.data);
|
||||||
tableData.value.total = res.data.data.total;
|
tableData.value.total = res.data.data.total;
|
||||||
|
|||||||
Reference in New Issue
Block a user