Commit a25008b9 by Cat

zd 教师档案

parent a0bfc60c
......@@ -410,7 +410,8 @@ export default {
},
// 搜索按钮
handleQuery() {
this.queryParams.pageNum = 1;
this.queryForm.pageNum = 1;
this.queryForm.pageSize = 10;
this.getList();
},
// 重置按钮
......@@ -429,16 +430,19 @@ export default {
this.dialogVisible = true;
const id = row.id;
getFileTnfo(id).then((res) => {
console.log(res);
this.form = res.data;
console.log(this.form, "this.form");
this.title = "基本信息查看";
});
},
// 提取
handleExtract() {
// syncNotice().then(() => {});
handleExtract(row) {
console.log(row, "row提取");
this.dialogVisible = true;
const id = row.detail;
syncNotice(id).then((res) => {
console.log(res, "提取");
});
},
//修改按钮
handleEdit(row) {
......
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