Commit cdf28846 by zhaopanyu

Merge branch 'master' of 49.232.152.146:qangqi/dd_school

parents 7a670572 6823870c
......@@ -35,6 +35,9 @@ server:
# port: 11324
#port: 8082
servlet:
#配置超时时间
session:
timeout: 120s
# 应用的访问路径
context-path: /
tomcat:
......
......@@ -126,7 +126,7 @@
@selection-change="handleSelectionChange"
>
<el-table-column align="center" type="selection"> </el-table-column>
<el-table-column align="center" label="级部" prop="gid">
<el-table-column align="center" label="级部" prop="gruoName">
</el-table-column>
<el-table-column align="center" prop="userName" label="姓名">
</el-table-column>
......@@ -193,7 +193,6 @@ export default {
single: true,
// 非多个禁用
multiple: true,
selectedRows: [],
};
},
mounted() {
......@@ -204,12 +203,14 @@ export default {
handleSecher() {
const tid = this.$route.query.noticeId;
getTeaList(tid).then((res) => {
console.log(res, 333333333333);
this.dialogTableData = res.data;
});
},
//弹窗确定按钮
confirmDialog() {
// const ids = this.selectedRows.map((row) => parseInt(row.id));
const ids = this.selectedRows.map((row) => parseInt(row.id));
// dialogVisible = false
addTeachaer(ids).then((res) => {
......
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