Commit a25008b9 by Cat

zd 教师档案

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